My favorites | Sign in
Project Logo
                
Details: Show all Hide all

Older

  • Jul 15, 2009
    issue 12 (Traceback if no episodes) commented on by skylar.saveland   -   try: show = Show.objects.get(slug=slug) except: return HttpResponseRedirect(reverse('podcast_shows')) even
    try: show = Show.objects.get(slug=slug) except: return HttpResponseRedirect(reverse('podcast_shows')) even
  • Jul 15, 2009
    issue 12 (Traceback if no episodes) reported by skylar.saveland   -   What steps will reproduce the problem? 1. Create a show 2. Go to the episodes_list for that show (without creating an episode) What is the expected output? What do you see instead? You expect to see a show detail with no episodes, instead you get the traceback: Reverse for 'podcast_feed' with arguments '('',)' and keyword arguments '{}' not found. that's because object_list.all.0.slug in {% url podcast_feed object_list.all.0.slug %} does not exist. I don't think that you want the slug of the first episode anyways, you want the show? def episode_list(request, slug): """ Episode list Template: ``podcast/episode_list.html`` Context: object_list List of episodes. """ show = Show.objects.get(slug=slug) context = {'show':show, } return object_list( request, queryset=Episode.objects.published().filter(show__slug__exact=slug), template_name='podcast/episode_list.html', extra_context = context) You can pass the show to the template and use: {% url podcast_feed show.slug %} perhaps...
    What steps will reproduce the problem? 1. Create a show 2. Go to the episodes_list for that show (without creating an episode) What is the expected output? What do you see instead? You expect to see a show detail with no episodes, instead you get the traceback: Reverse for 'podcast_feed' with arguments '('',)' and keyword arguments '{}' not found. that's because object_list.all.0.slug in {% url podcast_feed object_list.all.0.slug %} does not exist. I don't think that you want the slug of the first episode anyways, you want the show? def episode_list(request, slug): """ Episode list Template: ``podcast/episode_list.html`` Context: object_list List of episodes. """ show = Show.objects.get(slug=slug) context = {'show':show, } return object_list( request, queryset=Episode.objects.published().filter(show__slug__exact=slug), template_name='podcast/episode_list.html', extra_context = context) You can pass the show to the template and use: {% url podcast_feed show.slug %} perhaps...
  • Jul 15, 2009
    issue 11 (Feed does not like enclosures with a file) commented on by skylar.saveland   -   this might have something to do with file.url yielding a url like "/site_media/podcast/etc/etc/file.mp3" whereas commonly an enclosure would be "http://domain/etc/etc/file.mp3 Additionally, there might be some problem with trying to use runserver at 127.0.0.1:8000 or this app is supposed to work with runserver?
    this might have something to do with file.url yielding a url like "/site_media/podcast/etc/etc/file.mp3" whereas commonly an enclosure would be "http://domain/etc/etc/file.mp3 Additionally, there might be some problem with trying to use runserver at 127.0.0.1:8000 or this app is supposed to work with runserver?
  • Jul 15, 2009
    issue 11 (Feed does not like enclosures with a file) reported by skylar.saveland   -   What steps will reproduce the problem? 1. Install 2. Create a show, and episode (click for show_feed.html: podcasts/show_slug/feed/ ) - everything looks okay ... 3. Create an enclosure with a file upload What is the expected output? What do you see instead? I expect to see a link under the episode to retrieve/play the file. Instead, the episode is gone and: url is null [Break on this error] url.QueryInterface(Ci.nsIURL); FeedWriter.js (line 515) uncaught exception: [Exception... "'[JavaScript Error: "url is null" {file: "file:///usr/lib/firefox-3.0.10/components/FeedWriter.js" line: 515}]' when calling method: [nsIFeedWriter::writeContent]" nsresult: "0x80570021 (NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS)" location: "JS frame :: chrome://browser/content/feeds/subscribe.js :: SH_writeContent :: line 51" data: yes] in firebug What version of the product are you using? On what operating system? svn django-podcast, tried on different versions of Django. Please provide any additional information below. I've made some significant changes for pinax here: http://github.com/skyl/django-podcast/tree/master I went back to test the code here to see if it was a problem and I get the same thing for the svn repo here as well as my version which is significantly changed. Any ideas?
    What steps will reproduce the problem? 1. Install 2. Create a show, and episode (click for show_feed.html: podcasts/show_slug/feed/ ) - everything looks okay ... 3. Create an enclosure with a file upload What is the expected output? What do you see instead? I expect to see a link under the episode to retrieve/play the file. Instead, the episode is gone and: url is null [Break on this error] url.QueryInterface(Ci.nsIURL); FeedWriter.js (line 515) uncaught exception: [Exception... "'[JavaScript Error: "url is null" {file: "file:///usr/lib/firefox-3.0.10/components/FeedWriter.js" line: 515}]' when calling method: [nsIFeedWriter::writeContent]" nsresult: "0x80570021 (NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS)" location: "JS frame :: chrome://browser/content/feeds/subscribe.js :: SH_writeContent :: line 51" data: yes] in firebug What version of the product are you using? On what operating system? svn django-podcast, tried on different versions of Django. Please provide any additional information below. I've made some significant changes for pinax here: http://github.com/skyl/django-podcast/tree/master I went back to test the code here to see if it was a problem and I get the same thing for the svn repo here as well as my version which is significantly changed. Any ideas?
  • Mar 20, 2009
    issue 10 (Episode Model - Frequency Field max_length is set wrong) Status changed by richardcornish   -   Fixed! Yikes. Sorry about this one.
    Status: Fixed
    Fixed! Yikes. Sorry about this one.
    Status: Fixed
  • Mar 20, 2009
    r73 (Changed max_length on frequency field of Episode model to co...) committed by richardcornish   -   Changed max_length on frequency field of Episode model to correct length and tried to simplify the admin a little.
    Changed max_length on frequency field of Episode model to correct length and tried to simplify the admin a little.
  • Mar 06, 2009
    issue 10 (Episode Model - Frequency Field max_length is set wrong) reported by gsiegman   -   What steps will reproduce the problem? 1. Using Postgres as DB backend (Postgres uses max_length for varying character size) 2. Saving an Episode in Django Admin What is the expected output? What do you see instead? What version of the product are you using? On what operating system? podcast trunk, Django 1.02, & postresql 8.3 Please provide any additional information below. The max_length of the frequency field in the Episode model is set to 4, when the choices that are available have a potential length of at least 7 to be stored in the db.
    What steps will reproduce the problem? 1. Using Postgres as DB backend (Postgres uses max_length for varying character size) 2. Saving an Episode in Django Admin What is the expected output? What do you see instead? What version of the product are you using? On what operating system? podcast trunk, Django 1.02, & postresql 8.3 Please provide any additional information below. The max_length of the frequency field in the Episode model is set to 4, when the choices that are available have a potential length of at least 7 to be stored in the db.
  • Mar 03, 2009
    issue 9 (add a setup.py) commented on by dave.robert.martin   -   Seems like the setup.py I uploaded the first time didn't make it. I'll try again.
    Seems like the setup.py I uploaded the first time didn't make it. I'll try again.
  • Feb 27, 2009
    issue 9 (add a setup.py) reported by dave.robert.martin   -   Could you please add a setup.py to this app in order to make this app easier to install? I've attached a setup file that should be ready to go for podcast. Please feel free to alter it to better suit your project, specifically the project information at the bottom of the file. Thank you, Best, David Martin
    Could you please add a setup.py to this app in order to make this app easier to install? I've attached a setup file that should be ready to go for podcast. Please feel free to alter it to better suit your project, specifically the project information at the bottom of the file. Thank you, Best, David Martin
  • Feb 16, 2009
    r72 (Added auto updated date field to models, added sitemap prior...) committed by richardcornish   -   Added auto updated date field to models, added sitemap priority and frequency to models, changed admin.py accordingly, updated the video sitemap with version 1.1 and default sitemap nodes (not sure how to tackle some of the data), and updated read me.
    Added auto updated date field to models, added sitemap priority and frequency to models, changed admin.py accordingly, updated the video sitemap with version 1.1 and default sitemap nodes (not sure how to tackle some of the data), and updated read me.
  • Dec 11, 2008
    r71 (Cleaned up Read Me with clearer instructions.) committed by richardcornish   -   Cleaned up Read Me with clearer instructions.
    Cleaned up Read Me with clearer instructions.
  • Nov 24, 2008
    issue 7 (All show enclosures in each episode in the feeds) Status changed by richardcornish   -   I received inspiration from a patch applied to another enclosure list problem and was able to get a solution to this after all. Yay!
    Status: Fixed
    I received inspiration from a patch applied to another enclosure list problem and was able to get a solution to this after all. Yay!
    Status: Fixed
  • Nov 24, 2008
    issue 8 (wrong enclosures in feed) changed by richardcornish   -   Mike, thanks so much for the patch. I thought I had tested the show feed, but apparently I hadn't vigorously enough. Yes, you're right about using a better related_name on the episode of the enclosure model. I think my code was obviously showing that I didn't quite understand related_name after reading the documentation. :) I've applied the patch and tested it, and it looks good, except that the last saved enclosure to an episode seems to show up as the first item in the list. Instead of reversing the list and grabbing the first item, I just said the *last* enclosure saved is the item that will show up in the plain/iTunes feed. :)
    Status: Fixed
    Owner: richardcornish
    Mike, thanks so much for the patch. I thought I had tested the show feed, but apparently I hadn't vigorously enough. Yes, you're right about using a better related_name on the episode of the enclosure model. I think my code was obviously showing that I didn't quite understand related_name after reading the documentation. :) I've applied the patch and tested it, and it looks good, except that the last saved enclosure to an episode seems to show up as the first item in the list. Instead of reversing the list and grabbing the first item, I just said the *last* enclosure saved is the item that will show up in the plain/iTunes feed. :)
    Status: Fixed
    Owner: richardcornish
  • Nov 24, 2008
    r70 (Changed warning in admin.py from first enclosure saved shows...) committed by richardcornish   -   Changed warning in admin.py from first enclosure saved shows up in the feed template to last enclosure saved. I couldn't figure out how to reverse the list and grab just the first item, so I just figured changing the admin.py description is just as good. :D
    Changed warning in admin.py from first enclosure saved shows up in the feed template to last enclosure saved. I couldn't figure out how to reverse the list and grab just the first item, so I just figured changing the admin.py description is just as good. :D
  • Nov 24, 2008
    r69 (Fixed enclosure lists in Media RSS, ATOM and Sitemap templat...) committed by richardcornish   -   Fixed enclosure lists in Media RSS, ATOM and Sitemap templates. Please, please let this be the end of enclosure drama!
    Fixed enclosure lists in Media RSS, ATOM and Sitemap templates. Please, please let this be the end of enclosure drama!
  • Nov 24, 2008
    r68 (Removed enclosure's related_name and changed show feed templ...) committed by richardcornish   -   Removed enclosure's related_name and changed show feed template's enclosure object back to enclosure_set. Apparently I don't know how the hell related_name works, and I'm OK with that.
    Removed enclosure's related_name and changed show feed template's enclosure object back to enclosure_set. Apparently I don't know how the hell related_name works, and I'm OK with that.
  • Nov 24, 2008
    r67 (Added back a (better) related_name to the episode of the enc...) committed by richardcornish   -   Added back a (better) related_name to the episode of the enclosure model, and reflected that in the template. And removed a typo in the show feed template that was wrecking the template and driving me up the walls.
    Added back a (better) related_name to the episode of the enclosure model, and reflected that in the template. And removed a typo in the show feed template that was wrecking the template and driving me up the walls.
  • Nov 24, 2008
    r66 (Removed poorly named related_name on episode foreign key in ...) committed by richardcornish   -   Removed poorly named related_name on episode foreign key in enclosure model, removed incorrect enclosure_list extra_context query in the show_feed view, and applied the wonderful patch from Mike (I hope). Thanks, Mike!
    Removed poorly named related_name on episode foreign key in enclosure model, removed incorrect enclosure_list extra_context query in the show_feed view, and applied the wonderful patch from Mike (I hope). Thanks, Mike!
  • Nov 24, 2008
    r65 (Added working {% if %} for category in episode list template...) committed by richardcornish   -   Added working {% if %} for category in episode list template.
    Added working {% if %} for category in episode list template.
  • Nov 24, 2008
    r64 (Added {% if %} for category in episode list template.) committed by richardcornish   -   Added {% if %} for category in episode list template.
    Added {% if %} for category in episode list template.
  • Nov 23, 2008
    issue 8 (wrong enclosures in feed) reported by mike.wakerly   -   What steps will reproduce the problem? 1. create a show 2. add multiple episodes, each with an enclosure 3. view the rss feed What is the expected output? What do you see instead? The <enclosure ..> and <guid ..> nodes for each <episode ..> should represent the first enclosure for that episode. Instead, <enclosure> and <guid> always point to the same single enclosure (not necessarily one linked to that episode.) Please provide any additional information below. The bug seems to be your use of the context item 'enclosure_list'. I might be missing something, but it would seem better to get the list of enclosures on a per-episode basis within the template. I've attached a patch, which uses the back referenced queryset that django adds to each episode object. [Related note, in models.py you set the related_name to "enclosure_episodes"; seems a bit confusing -- since it is a queryset of Enclosure objects, a name like "episode_enclosures" (or the default "enclosure_set") might be better.] thanks!
    What steps will reproduce the problem? 1. create a show 2. add multiple episodes, each with an enclosure 3. view the rss feed What is the expected output? What do you see instead? The <enclosure ..> and <guid ..> nodes for each <episode ..> should represent the first enclosure for that episode. Instead, <enclosure> and <guid> always point to the same single enclosure (not necessarily one linked to that episode.) Please provide any additional information below. The bug seems to be your use of the context item 'enclosure_list'. I might be missing something, but it would seem better to get the list of enclosures on a per-episode basis within the template. I've attached a patch, which uses the back referenced queryset that django adds to each episode object. [Related note, in models.py you set the related_name to "enclosure_episodes"; seems a bit confusing -- since it is a queryset of Enclosure objects, a name like "episode_enclosures" (or the default "enclosure_set") might be better.] thanks!
  • Nov 21, 2008
    issue 7 (All show enclosures in each episode in the feeds) reported by richardcornish   -   What steps will reproduce the problem? 1. Save a show 2. Save an episode 3. Check out the Media RSS, ATOM or Sitemap URLs What is the expected output? What do you see instead? All enclosures for a single show are showing up in the item (episode) of the feeds above (with the exception of the main RSS/iTunes feed). The episode slug isn't passed through the URL (and thus the view), which means I can't filter by episode in grabbing an enclosure list. I know someone smarter than I knows a solution to this.
    What steps will reproduce the problem? 1. Save a show 2. Save an episode 3. Check out the Media RSS, ATOM or Sitemap URLs What is the expected output? What do you see instead? All enclosures for a single show are showing up in the item (episode) of the feeds above (with the exception of the main RSS/iTunes feed). The episode slug isn't passed through the URL (and thus the view), which means I can't filter by episode in grabbing an enclosure list. I know someone smarter than I knows a solution to this.
  • Nov 21, 2008
    r63 (Updated "phobos" to "itunes" in the iTunes Store URLs in the...) committed by richardcornish   -   Updated "phobos" to "itunes" in the iTunes Store URLs in the Read Me. Goodbye, God of the Underworld!
    Updated "phobos" to "itunes" in the iTunes Store URLs in the Read Me. Goodbye, God of the Underworld!
  • Nov 21, 2008
    r62 (Cleaned up some of the documentation, added some relevant li...) committed by richardcornish   -   Cleaned up some of the documentation, added some relevant links.
    Cleaned up some of the documentation, added some relevant links.
  • Nov 19, 2008
    r61 (Testing out a solution...I think this will fix multiple encl...) committed by richardcornish   -   Testing out a solution...I think this will fix multiple enclosure for Media RSS feeds.
    Testing out a solution...I think this will fix multiple enclosure for Media RSS feeds.
  • Nov 19, 2008
    r60 (Fixed enclosure.title tags in episode detail template.) committed by richardcornish   -   Fixed enclosure.title tags in episode detail template.
    Fixed enclosure.title tags in episode detail template.
  • Nov 19, 2008
    issue 6 (episode_detail displays all enclosures) Status changed by richardcornish   -   Thank you for this! I didn't even stress test the app that hard, but it works now. svn up for the goods.
    Status: Fixed
    Thank you for this! I didn't even stress test the app that hard, but it works now. svn up for the goods.
    Status: Fixed
  • Nov 19, 2008
    r59 (Fixed enclosure.player tags in Sitemap template...again.) committed by richardcornish   -   Fixed enclosure.player tags in Sitemap template...again.
    Fixed enclosure.player tags in Sitemap template...again.
  • Nov 19, 2008
    r58 (Fixed enclosure.player tags in Sitemap template.) committed by richardcornish   -   Fixed enclosure.player tags in Sitemap template.
    Fixed enclosure.player tags in Sitemap template.
  • Nov 19, 2008
    r57 (Added missing {% endif %} to Sitemap template.) committed by richardcornish   -   Added missing {% endif %} to Sitemap template.
    Added missing {% endif %} to Sitemap template.
  • Nov 19, 2008
    r56 (Added missing {% endfor %} to ATOM template.) committed by richardcornish   -   Added missing {% endfor %} to ATOM template.
    Added missing {% endfor %} to ATOM template.
  • Nov 19, 2008
    r55 (Removed first bracket from "{{%" in the ATOM template.) committed by richardcornish   -   Removed first bracket from "{{%" in the ATOM template.
    Removed first bracket from "{{%" in the ATOM template.
  • Nov 19, 2008
    r54 (Removed the overkill of the patch on the Media RSS, ATOM and...) committed by richardcornish   -   Removed the overkill of the patch on the Media RSS, ATOM and Sitemap views. Also added loop for multiple enclosures and players in Sitemap template.
    Removed the overkill of the patch on the Media RSS, ATOM and Sitemap views. Also added loop for multiple enclosures and players in Sitemap template.
  • Nov 19, 2008
    r53 (Fixed {% if %} for episodes without an image in the standard...) committed by richardcornish   -   Fixed {% if %} for episodes without an image in the standard RSS template.
    Fixed {% if %} for episodes without an image in the standard RSS template.
  • Nov 19, 2008
    r52 (Added the patch from Sasha to allow the right enclosures to ...) committed by richardcornish   -   Added the patch from Sasha to allow the right enclosures to filter to their respective episodes. Thank you so much!
    Added the patch from Sasha to allow the right enclosures to filter to their respective episodes. Thank you so much!
  • Nov 19, 2008
    r51 (Added Title to admin.py so it might actually show up in part...) committed by richardcornish   -   Added Title to admin.py so it might actually show up in parts of the admin. Shocking, I know.
    Added Title to admin.py so it might actually show up in parts of the admin. Shocking, I know.
  • Nov 19, 2008
    r50 (Added max_length attribute to enclosure's title textfield. H...) committed by richardcornish   -   Added max_length attribute to enclosure's title textfield. Hey, I forgot, OK?
    Added max_length attribute to enclosure's title textfield. Hey, I forgot, OK?
  • Nov 19, 2008
    r49 (Added a Title field to the enclosure model to show a unique ...) committed by richardcornish   -   Added a Title field to the enclosure model to show a unique title on each enclosure in an episode detail template.
    Added a Title field to the enclosure model to show a unique title on each enclosure in an episode detail template.
  • Nov 19, 2008
    r48 (Added {% if show.grouper.image %} to not allow template brea...) committed by richardcornish   -   Added {% if show.grouper.image %} to not allow template breakage. I guess the template breaks loudly if you don't have an image. Oops.
    Added {% if show.grouper.image %} to not allow template breakage. I guess the template breaks loudly if you don't have an image. Oops.
  • Nov 19, 2008
    r47 (Added "patterns" in "urlpatterns += patterns( ... )" to Read...) committed by richardcornish   -   Added "patterns" in "urlpatterns += patterns( ... )" to Read Me. Wow, I guess my instructions were wrong all this time. Sorry about that.
    Added "patterns" in "urlpatterns += patterns( ... )" to Read Me. Wow, I guess my instructions were wrong all this time. Sorry about that.
  • Nov 13, 2008
    r46 (Fixed read me's line formatting, and changed iTunes URL to a...) committed by richardcornish   -   Fixed read me's line formatting, and changed iTunes URL to a standard 9-digit zero example.
    Fixed read me's line formatting, and changed iTunes URL to a standard 9-digit zero example.
  • Nov 13, 2008
    r45 (Updated some of the documentation to reflect WebFaction's cu...) committed by richardcornish   -   Updated some of the documentation to reflect WebFaction's current environment.
    Updated some of the documentation to reflect WebFaction's current environment.
  • Oct 31, 2008
    issue 6 (episode_detail displays all enclosures) reported by sa...@theotheralex.com   -   What steps will reproduce the problem? 1. create a show 2. create two episodes each with an enclosure 3. view the episodes What is the expected output? What do you see instead? I expected to see the enclosure assigned to the specific episode I was viewing. Instead I saw a list of all enclosures in each episode. What version of the product are you using? On what operating system? Django 1.0, Python 2.5.2 Please provide any additional information below. Attached is a diff where I added an additional filter to the episode_detail view to only show enclosures for the specific episode.
    What steps will reproduce the problem? 1. create a show 2. create two episodes each with an enclosure 3. view the episodes What is the expected output? What do you see instead? I expected to see the enclosure assigned to the specific episode I was viewing. Instead I saw a list of all enclosures in each episode. What version of the product are you using? On what operating system? Django 1.0, Python 2.5.2 Please provide any additional information below. Attached is a diff where I added an additional filter to the episode_detail view to only show enclosures for the specific episode.
  • Oct 10, 2008
    r44 (Removed photocast template because it's out of the scope of ...) committed by richardcornish   -   Removed photocast template because it's out of the scope of the podcast app.
    Removed photocast template because it's out of the scope of the podcast app.
  • Oct 10, 2008
    r43 (Updated Read Me with current, more organized links, gave Ato...) committed by richardcornish   -   Updated Read Me with current, more organized links, gave Atom URL proper view in URLs and removed photocast from URLs, wrote Atom feed view, updated Atom template with generally correct feed but absent are enclosures. Added decoupled permalink decorators in the models! Yay, DRY!
    Updated Read Me with current, more organized links, gave Atom URL proper view in URLs and removed photocast from URLs, wrote Atom feed view, updated Atom template with generally correct feed but absent are enclosures. Added decoupled permalink decorators in the models! Yay, DRY!
  • Oct 04, 2008
    r42 (Added some missing Media RSS fields to admin.py so it shows ...) committed by richardcornish   -   Added some missing Media RSS fields to admin.py so it shows in the admin, Fixed the Media RSS view to grab enclosures, changed some help text and added a Google Preview checkbox in the models, changed the Media RSS URL to the proper view, and finally finished the Media RSS template! It's not perfect...but I tried to strike a balance between reasonable and over-the-top overengineering.
    Added some missing Media RSS fields to admin.py so it shows in the admin, Fixed the Media RSS view to grab enclosures, changed some help text and added a Google Preview checkbox in the models, changed the Media RSS URL to the proper view, and finally finished the Media RSS template! It's not perfect...but I tried to strike a balance between reasonable and over-the-top overengineering.
  • Oct 01, 2008
    issue 2 (Can't name URLs in URLconf) Status changed by richardcornish   -   Figured out that I had to pass the slug (or whatever other argument) back to the URL conf. Makes a lot of sense now. :)
    Status: Fixed
    Figured out that I had to pass the slug (or whatever other argument) back to the URL conf. Makes a lot of sense now. :)
    Status: Fixed
  • Oct 01, 2008
    r41 (Lots of bug fixes! Allowed HTML in all summaries in show lis...) committed by richardcornish   -   Lots of bug fixes! Allowed HTML in all summaries in show list, episode list and episode detail templates. Fixed author listings and reverse URL lookup for RSS feed on episode list and episode detail templates. Fixed episode detail to list all possible enclosures to reflect the new models. Fixed sitemap template to reflect the new models. Added enclosure_list queryset to the relevant methods in the views. Properly named all URLs in url configuration. Updated default styles for a basic list, which was added to the episode detail template. Changed license to cover *this* project and not iUI :)
    Lots of bug fixes! Allowed HTML in all summaries in show list, episode list and episode detail templates. Fixed author listings and reverse URL lookup for RSS feed on episode list and episode detail templates. Fixed episode detail to list all possible enclosures to reflect the new models. Fixed sitemap template to reflect the new models. Added enclosure_list queryset to the relevant methods in the views. Properly named all URLs in url configuration. Updated default styles for a basic list, which was added to the episode detail template. Changed license to cover *this* project and not iUI :)
  • Oct 01, 2008
    r40 (Created url names, moved image markup around in show list te...) committed by richardcornish   -   Created url names, moved image markup around in show list template, and removed embarrassing defaults in atom template. I'll fix those templates soon. I promise.
    Created url names, moved image markup around in show list template, and removed embarrassing defaults in atom template. I'll fix those templates soon. I promise.
  • Sep 29, 2008
    issue 1 (Can't loop through parent category names) Status changed by richardcornish   -   Solution to this isn't perfect, but it's acceptable because I don't think Django allows a real solution without a significant overhaul. Apple's iTunes RSS specification is ambiguous when it comes to this case, but I don't see why Apple wouldn't accept the feed and categorize it accordingly. iTunes specification wants: <itunes:category text="Arts"> <itunes:category text="Design" /> <itunes:category text="Fashion &amp; Beauty" /> </itunes:category> But I got this instead: <itunes:category text="Arts"> <itunes:category text="Design" /> </itunes:category> <itunes:category text="Arts"> <itunes:category text="Fashion &amp; Beauty" /> </itunes:category> Multiple categories (with child categories or not) render fine. Parent categories with no child category render fine, too: <itunes:category text="TV &amp; Film" />
    Status: Fixed
    Solution to this isn't perfect, but it's acceptable because I don't think Django allows a real solution without a significant overhaul. Apple's iTunes RSS specification is ambiguous when it comes to this case, but I don't see why Apple wouldn't accept the feed and categorize it accordingly. iTunes specification wants: <itunes:category text="Arts"> <itunes:category text="Design" /> <itunes:category text="Fashion &amp; Beauty" /> </itunes:category> But I got this instead: <itunes:category text="Arts"> <itunes:category text="Design" /> </itunes:category> <itunes:category text="Arts"> <itunes:category text="Fashion &amp; Beauty" /> </itunes:category> Multiple categories (with child categories or not) render fine. Parent categories with no child category render fine, too: <itunes:category text="TV &amp; Film" />
    Status: Fixed
 
Hosted by Google Code