From 474b169363c9839dd82715767dd7409697e3b1d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dobros=C5=82aw=20=C5=BBybort?= Date: Tue, 12 Feb 2013 20:32:16 +0100 Subject: [PATCH] Update exp/html import paths --- array.go | 2 +- doc.go | 2 +- expand.go | 2 +- filter.go | 2 +- iteration_test.go | 2 +- property.go | 2 +- query.go | 2 +- traversal.go | 2 +- type.go | 2 +- type_test.go | 2 +- utilities.go | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/array.go b/array.go index c6e3183..3eb3c3a 100644 --- a/array.go +++ b/array.go @@ -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. diff --git a/doc.go b/doc.go index 482953a..2e7f9ae 100644 --- a/doc.go +++ b/doc.go @@ -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 diff --git a/expand.go b/expand.go index b1531fe..de57df7 100644 --- a/expand.go +++ b/expand.go @@ -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 diff --git a/filter.go b/filter.go index 29f5960..d89c89c 100644 --- a/filter.go +++ b/filter.go @@ -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. diff --git a/iteration_test.go b/iteration_test.go index deac253..a662ad2 100644 --- a/iteration_test.go +++ b/iteration_test.go @@ -1,7 +1,7 @@ package goquery import ( - "exp/html" + "code.google.com/p/go.net/html" "testing" ) diff --git a/property.go b/property.go index 87a4e18..2554680 100644 --- a/property.go +++ b/property.go @@ -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 diff --git a/query.go b/query.go index cc13ab1..c1427a5 100644 --- a/query.go +++ b/query.go @@ -2,7 +2,7 @@ package goquery import ( "code.google.com/p/cascadia" - "exp/html" + "code.google.com/p/go.net/html" "regexp" "strings" ) diff --git a/traversal.go b/traversal.go index 6a124ae..38c691b 100644 --- a/traversal.go +++ b/traversal.go @@ -2,7 +2,7 @@ package goquery import ( "code.google.com/p/cascadia" - "exp/html" + "code.google.com/p/go.net/html" ) type siblingType int diff --git a/type.go b/type.go index c83bc3e..29b2941 100644 --- a/type.go +++ b/type.go @@ -1,7 +1,7 @@ package goquery import ( - "exp/html" + "code.google.com/p/go.net/html" "net/http" "net/url" ) diff --git a/type_test.go b/type_test.go index 3bf00b6..2a20999 100644 --- a/type_test.go +++ b/type_test.go @@ -1,7 +1,7 @@ package goquery import ( - "exp/html" + "code.google.com/p/go.net/html" "fmt" "os" "testing" diff --git a/utilities.go b/utilities.go index c10250c..c6c8546 100644 --- a/utilities.go +++ b/utilities.go @@ -1,7 +1,7 @@ package goquery import ( - "exp/html" + "code.google.com/p/go.net/html" ) func getChildren(n *html.Node) (result []*html.Node) {