Merge pull request #7 from matrixik/master

Update exp/html import paths, closes #7
This commit is contained in:
Martin Angers
2013-04-26 16:32:17 -07:00
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
)
// First() reduces the set of matched elements to the first in the set.
+1 -1
View File
@@ -26,7 +26,7 @@ Package goquery implements features similar to jQuery, including the chainable
syntax, to manipulate and query an HTML document (the modification functions of jQuery are not included).
It depends on Go's experimental html package, which must be installed so that it
can be imported as "exp/html". See this tutorial on how to install it
can be imported as "code.google.com/p/go.net/html". See this tutorial on how to install it
accordingly: http://code.google.com/p/go-wiki/wiki/InstallingExp
It uses Cascadia as CSS selector (similar to Sizzle for jQuery). This dependency
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
)
// Add() adds the selector string's matching nodes to those in the current
+1 -1
View File
@@ -2,7 +2,7 @@ package goquery
import (
"code.google.com/p/cascadia"
"exp/html"
"code.google.com/p/go.net/html"
)
// Filter() reduces the set of matched elements to those that match the selector string.
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
"testing"
)
+1 -1
View File
@@ -2,7 +2,7 @@ package goquery
import (
"bytes"
"exp/html"
"code.google.com/p/go.net/html"
)
// Attr() gets the specified attribute's value for the first element in the
+1 -1
View File
@@ -2,7 +2,7 @@ package goquery
import (
"code.google.com/p/cascadia"
"exp/html"
"code.google.com/p/go.net/html"
"regexp"
"strings"
)
+1 -1
View File
@@ -2,7 +2,7 @@ package goquery
import (
"code.google.com/p/cascadia"
"exp/html"
"code.google.com/p/go.net/html"
)
type siblingType int
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
"net/http"
"net/url"
)
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
"fmt"
"os"
"testing"
+1 -1
View File
@@ -1,7 +1,7 @@
package goquery
import (
"exp/html"
"code.google.com/p/go.net/html"
)
func getChildren(n *html.Node) (result []*html.Node) {