~ubuntu-branches/ubuntu/maverick/liferea/maverick

« back to all changes in this revision

Viewing changes to src/subscription.c

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2008-12-17 20:43:04 UTC
  • mfrom: (1.2.54 upstream)
  • Revision ID: james.westby@ubuntu.com-20081217204304-7p9cbrtiqtlryz60
Tags: 1.4.23-0ubuntu1
* New upstream bugfix release (lp: #309108).
  - Fixes a cache limit bug when merging items of feeds with
    more items than the cache allows (lp: #291185).
* debian/patches/series:
  - don't apply lua5.1.pc, we use lua5.0.
* debian/patches/fix_toggle_status_menu:
  - Removed, applied upstream.
* debian/patches/fix_launcher_script_calling_xul:
  - Removed, not needed anymore.
* debian/patches/01_ubuntu_feedlists,
  debian/patches/hildon_frothing:
  - Updated to apply again.
* debian/patches/xulrunner-1.9:
  - Updated for the new code.
* debian/patches/90_autoreconf:
  - New patch, generated by running autoreconf -fiv
* debian/patches/99_autoconf:
  - Removed, obsoleted by 90_autoreconf.
* debian/rules:
  - Don't disable gecko; enable it and check for libxul-embedding to build
    the Xulrunner engine. Don't enable xulrunner anymore, as it's now done
    via --enable-gecko.
* debian/patches/load_proper_xulrunner:
  - Patch from Fabien Tassin to load the appropriate Xulrunner version.
    This is a replacement for fix_launcher_script_calling_xul patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
185
185
 
186
186
        subscription_update_error_status (subscription, result->httpstatus, result->returncode, result->filterErrors);
187
187
 
188
 
        if (flags & FEED_REQ_DOWNLOAD_FAVICON)
189
 
                subscription_update_favicon (subscription);
190
 
        
191
188
        /* 2. call subscription/node type specific processing */
192
189
        if (processing) {
193
190
                if (ctxt->callback) {
196
193
                        node_process_update_result (node, result, flags);
197
194
                }
198
195
        }
 
196
 
 
197
        /* 3. call favicon updating after subscription processing
 
198
              to ensure we have valid baseUrl for feed nodes... */
 
199
        if (flags & FEED_REQ_DOWNLOAD_FAVICON)
 
200
                subscription_update_favicon (subscription);
199
201
        
200
 
        /* 3. generic postprocessing */
 
202
        /* 4. generic postprocessing */
201
203
        subscription->updateJob = NULL;
202
204
 
203
205
        update_state_set_lastmodified (subscription->updateState, update_state_get_lastmodified (result->updateState));