differentiate between published and updated

This commit is contained in:
KEANO3 2015-07-26 23:04:53 +02:00
parent 5576b8d83e
commit caca5df203
2 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,8 @@ func (this *Feed) readAtom(doc *xmlx.Document) (err error) {
i = new(Item)
i.Title = item.S(ns, "title")
i.Id = item.S(ns, "id")
i.PubDate = item.S(ns, "updated")
i.PubDate = item.S(ns, "published")
i.Updated = item.S(ns, "updated")
i.Description = item.S(ns, "summary")
links := item.SelectNodes(ns, "link")

View File

@ -24,6 +24,7 @@ type Item struct {
Generator *Generator
Contributors []string
Content *Content
Updated string
Extensions map[string]map[string][]Extension
}