My favorites | Sign in
Google
       
Details: Show all Hide all

Older

  • Dec 14, 2008
    r46 (A little more lax with email address loading. ) committed   -   A little more lax with email address loading.
    A little more lax with email address loading.
  • Dec 02, 2008
    r45 (Bug fixes for Issues 1-3; + Ignore cache when fetching feeds...) committed   -   Bug fixes for Issues 1-3; + Ignore cache when fetching feeds - may want to expose this later, but this hack is fine for now + Use the 10.4 date formatter so things work on the iPhone + Support (some) RSS 0.9/1.0 feeds through a hack in the RSS2 parser - really needs an RSS1/RDF parser, but this is fine for now
    Bug fixes for Issues 1-3; + Ignore cache when fetching feeds - may want to expose this later, but this hack is fine for now + Use the 10.4 date formatter so things work on the iPhone + Support (some) RSS 0.9/1.0 feeds through a hack in the RSS2 parser - really needs an RSS1/RDF parser, but this is fine for now
  • Dec 02, 2008
    issue 1 (FDRSS2Parser is using wrong date format for iPhone) Status changed   -   Fixed! Thanks a bunch for the report - I wasn't using the date in the iPhone app I made so I didn't notice that. I've also fixed some stuff around case issues - some feeds had pubdate instead of my expected pubDate, so I made it support both.
    Status: Fixed
    Fixed! Thanks a bunch for the report - I wasn't using the date in the iPhone app I made so I didn't notice that. I've also fixed some stuff around case issues - some feeds had pubdate instead of my expected pubDate, so I made it support both.
    Status: Fixed
  • Dec 02, 2008
    issue 2 (Feeds cannot parse slashdot RSS feed) Status changed   -   This is an RSS 1.0 (RDF) feed - which I don't really support. I've hacked in some basic support for it, although I don't support any of the extensions (dc/etc), so a lot of information is missing. At least you get items and channel info. If you'd like, you could implement a real RSS1Parser based on the RSS2Parser that does things better.
    Status: Fixed
    This is an RSS 1.0 (RDF) feed - which I don't really support. I've hacked in some basic support for it, although I don't support any of the extensions (dc/etc), so a lot of information is missing. At least you get items and channel info. If you'd like, you could implement a real RSS1Parser based on the RSS2Parser that does things better.
    Status: Fixed
  • Dec 02, 2008
    issue 3 (Disable caching) Status changed   -   Now using NSURLRequestReloadIgnoringLocalAndRemoteCacheData - this is the hammer. NSURLRequestReloadRevalidatingCacheData is probably a better choice, but I don't have time to confirm this does the right thing in the case of missing modification dates or no IfModifiedSince support (like my stupid server).
    Status: Fixed
    Now using NSURLRequestReloadIgnoringLocalAndRemoteCacheData - this is the hammer. NSURLRequestReloadRevalidatingCacheData is probably a better choice, but I don't have time to confirm this does the right thing in the case of missing modification dates or no IfModifiedSince support (like my stupid server).
    Status: Fixed
  • Dec 01, 2008
    issue 3 (Disable caching) reported   -   In the feed store update action, disable caching on the request
    In the feed store update action, disable caching on the request
  • Dec 01, 2008
    issue 1 (FDRSS2Parser is using wrong date format for iPhone) Status changed   -  
    Status: Accepted
    Status: Accepted
  • Dec 01, 2008
    issue 2 (Feeds cannot parse slashdot RSS feed) Status changed   -  
    Status: Accepted
    Status: Accepted
  • Nov 17, 2008
    r44 (+ Fixed potential issue with threading / changing list while...) committed   -   + Fixed potential issue with threading / changing list while enumerating it
    + Fixed potential issue with threading / changing list while enumerating it
  • Nov 16, 2008
    r43 (+ Added support for removing all cached feed data ) committed   -   + Added support for removing all cached feed data
    + Added support for removing all cached feed data
  • Nov 16, 2008
    r42 (+ Changed data creation to be a bit smarter (less wasted all...) committed   -   + Changed data creation to be a bit smarter (less wasted allocs/resizes) + Now flush dead connections every 30 seconds - this should be configurable, but for now is better than possibly hanging on to them forever
    + Changed data creation to be a bit smarter (less wasted allocs/resizes) + Now flush dead connections every 30 seconds - this should be configurable, but for now is better than possibly hanging on to them forever
  • Nov 16, 2008
    r41 (+ Minor perf improvement ) committed   -   + Minor perf improvement
    + Minor perf improvement
  • Nov 15, 2008
    r40 (+ Now share instances of NSDateFormatter on the same thread ...) committed   -   + Now share instances of NSDateFormatter on the same thread (as it's not thread safe) - sometimes creating the NSDateFormatter took longer than the actual request!
    + Now share instances of NSDateFormatter on the same thread (as it's not thread safe) - sometimes creating the NSDateFormatter took longer than the actual request!
  • Nov 15, 2008
    r39 (+ Added the ability to extract elements in custom namespaces...) committed   -   + Added the ability to extract elements in custom namespaces from feeds - very basic, but enough for my needs - exposed via FDCustomElement arrays on FDFeed and FDEntry - make sure to register custom namespaces you're interested in with FDFeedStore (if using it) or pass them into the FDFeed allocators + Fixed up merging a bit - it'll now update items across merges (may not be ideal, but will allow for item updates which is nice)
    + Added the ability to extract elements in custom namespaces from feeds - very basic, but enough for my needs - exposed via FDCustomElement arrays on FDFeed and FDEntry - make sure to register custom namespaces you're interested in with FDFeedStore (if using it) or pass them into the FDFeed allocators + Fixed up merging a bit - it'll now update items across merges (may not be ideal, but will allow for item updates which is nice)
  • Nov 14, 2008
    r38 (+ Fixed tests + Fixed missing <guid> handling in RSS + "Bett...) committed   -   + Fixed tests + Fixed missing <guid> handling in RSS + "Better" behavior when merging feeds that have items with no permanentID - it'll now duplicate items instead of removing all items
    + Fixed tests + Fixed missing <guid> handling in RSS + "Better" behavior when merging feeds that have items with no permanentID - it'll now duplicate items instead of removing all items