diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b1577bc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: go + +go: + - 1.2 + - tip diff --git a/LICENSE b/LICENSE index e460c34..6455cec 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2013, Martin Angers & Contributors +Copyright (c) 2012-2014, Martin Angers & Contributors All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index 0f971b1..8a43829 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ # goquery - a little like that j-thing, only in Go +[![build status](https://secure.travis-ci.org/PuerkitoBio/goquery.png)](http://travis-ci.org/PuerkitoBio/goquery) + GoQuery brings a syntax and a set of features similar to [jQuery][] to the [Go language][go]. It is based on the experimental html package and the CSS Selector library [cascadia][]. Since the experimental html parser returns tokens (nodes), and not a full-featured DOM object, jQuery's manipulation and modification functions have been left off (no point in modifying data in the parsed tree of the HTML, it has no effect). Supported functions are query-oriented features (`hasClass()`, `attr()` and the likes), as well as traversing functions that make sense given what we have to work with. This makes GoQuery a great library for scraping web pages. diff --git a/doc.go b/doc.go index edc21c3..5d1fca6 100644 --- a/doc.go +++ b/doc.go @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2013, Martin Angers & Contributors +// Copyright (c) 2012-2014, Martin Angers & Contributors // All rights reserved. // // Redistribution and use in source and binary forms, with or without modification,