add travis badge, update copyright year

This commit is contained in:
Martin Angers
2014-02-28 21:36:06 -05:00
parent 8c07896774
commit 5329018c6a
4 changed files with 9 additions and 2 deletions
+5
View File
@@ -0,0 +1,5 @@
language: go
go:
- 1.2
- tip
+1 -1
View File
@@ -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:
+2
View File
@@ -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.
+1 -1
View File
@@ -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,