From cccaf19d93ff8270d9bcf285c767c720b77d6a8d Mon Sep 17 00:00:00 2001 From: Anschel Schaffer-Cohen Date: Tue, 19 Mar 2013 14:12:11 -0400 Subject: [PATCH] Use upstream xmlx now that it has merged. --- atom.go | 2 +- feed.go | 4 ++-- rss.go | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/atom.go b/atom.go index fd59217..27aaa15 100644 --- a/atom.go +++ b/atom.go @@ -1,6 +1,6 @@ package feeder -import xmlx "github.com/anschelsc/go-pkg-xmlx" +import xmlx "github.com/jteeuwen/go-pkg-xmlx" func (this *Feed) readAtom(doc *xmlx.Document) (err error) { ns := "http://www.w3.org/2005/Atom" diff --git a/feed.go b/feed.go index 7592a36..363f460 100644 --- a/feed.go +++ b/feed.go @@ -1,6 +1,6 @@ /* Author: jim teeuwen - Dependencies: go-pkg-xmlx (http://github.com/anschelsc/go-pkg-xmlx) + Dependencies: go-pkg-xmlx (http://github.com/jteeuwen/go-pkg-xmlx) This package allows us to fetch Rss and Atom feeds from the internet. They are parsed into an object tree which is a hyvrid of both the RSS and Atom @@ -28,7 +28,7 @@ package feeder import ( "errors" "fmt" - xmlx "github.com/anschelsc/go-pkg-xmlx" + xmlx "github.com/jteeuwen/go-pkg-xmlx" "net/http" "strconv" "strings" diff --git a/rss.go b/rss.go index cb71765..c32ac61 100644 --- a/rss.go +++ b/rss.go @@ -1,6 +1,6 @@ package feeder -import xmlx "github.com/anschelsc/go-pkg-xmlx" +import xmlx "github.com/jteeuwen/go-pkg-xmlx" func (this *Feed) readRss2(doc *xmlx.Document) (err error) { days := make(map[string]int)