Made uuid of event autogenerated. Fully resolves issue #119. Also had to reset julian...
[philo.git] / contrib / julian / feedgenerator.py
index 23efdca..819a273 100644 (file)
@@ -41,13 +41,6 @@ ITEM_ICAL_MAP = {
 
 
 class ICalendarFeed(SyndicationFeed):
-       #def __init__(self, title, link, description, language=None, author_email=None,
-       #               author_name=None, author_link=None, subtitle=None, categories=None,
-       #               feed_url=None, feed_copyright=None, feed_guid=None, ttl=None, **kwargs):
-       #       super(ICalendarFeed, self).__init__(title, link, description, language,
-       #               author_email, author_name, author_link, subtitle, categories,
-       #               feed_url, feed_copyright, feed_guid, ttl, **kwargs)
-       #       
        mime_type = 'text/calendar'
        
        def add_item(self, *args, **kwargs):
@@ -81,4 +74,4 @@ class ICalendarFeed(SyndicationFeed):
                if isinstance(outfile, HttpResponse):
                        filename = self.feed.get('filename', 'filename.ics')
                        outfile['Filename'] = filename
-                       response['Content-Disposition'] = 'attachment; filename=%s' % filename
\ No newline at end of file
+                       outfile['Content-Disposition'] = 'attachment; filename=%s' % filename
\ No newline at end of file