Changeset 855
- Timestamp:
- 06/19/07 02:11:23 (2 years ago)
- Files:
-
- hammock/trunk/infoset.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
hammock/trunk/infoset.py
r852 r855 45 45 link = etree.SubElement(entry, "link") 46 46 link.set("rel", "alternate") 47 link.set("href", "%s/features/%s " % (base_url, feature.id))47 link.set("href", "%s/features/%s.html" % (base_url, feature.id)) 48 48 published = etree.SubElement(entry, "published") 49 49 published.text = feature.properties.published … … 76 76 name.text = feature.properties.title 77 77 description = etree.SubElement(placemark, "description") 78 description.text = "%s\nURL: %s/features/%s \nLast Updated: %s" \78 description.text = "%s\nURL: %s/features/%s.html\nLast Updated: %s" \ 79 79 % (feature.properties.summary, base_url, feature.id, feature.properties.updated) 80 80
