I have printed out the differences between webhelpers.feedgenerator and Django's feedgenerator. They were synchronized January 5th. WebHelpers has:
* properties 'generator', 'source', and 'published'. * a bugfix in rfc3339_date(). Django has: * "A number of callbacks for adding custom attributes and elements to feeds". * Bugfixes for xmlns, time zone, and missing language specification. * Add custom attributes to <rss> tag. I'm still not sure whether it's worth pulling in the Django version and re-applying our patches, or to stick to our version and reimplement the Django fixes. It would be easier to stick with ours rather than trying to recreate its behavior. The missing feature I found is that 'tag_uri' does not seem to work right, and isPermaLink=False does not seem to be supported. I also need GeoRSS, or at least latitude/longitude at the item level. I printed out the specs for the two syntaxes, GeoRSS-Simple and GeoRSS-GML. So I need to decide on argument names and data structures for Point/Line/Polygon/Box). Is there a set of standard classes somewhere for this? (Something small and without dependencies.) Or I could just use built-in Python types, though that may be less clear. -- Mike Orr <[email protected]> -- You received this message because you are subscribed to the Google Groups "pylons-discuss" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/pylons-discuss?hl=en.
