From 5329018c6a2c311a1785b0716e20676a64920e46 Mon Sep 17 00:00:00 2001 From: Martin Angers Date: Fri, 28 Feb 2014 21:36:06 -0500 Subject: [PATCH] add travis badge, update copyright year --- .travis.yml | 5 +++++ LICENSE | 2 +- README.md | 2 ++ doc.go | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .travis.yml 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,