Changes between Version 6 and Version 7 of Howto/PragmaticPatterns/InterceptingFilter

Show
Ignore:
Author:
demian (IP: 81.1.72.75)
Timestamp:
11/15/06 11:21:13 (4 years ago)
Comment:

adding django ref

Legend:

Unmodified
Added
Removed
Modified
  • Howto/PragmaticPatterns/InterceptingFilter

    v1 v7  
    9393Currently the export module uses the custom filter chain approach to set configurable headers, in this case the text/html Content-type headers, to produce an RSS feed.  See the [source:/branches/0.6-bugfix/modules/export/conf.ini conf.ini] for that module to get an idea for how few tasks are loaded, and how the ordering is important. 
    9494 
     95== How Other Frameworks Intercept Requests == 
     96I've just been reading up on Django, probably the top-rated Python web framework right now, seems they haven't heard of intercepting filters, view their solution here: http://www.djangoproject.com/documentation/middleware/ 
     97 
     98I do like some of the filters they reference, would be nice to see in Seagull. 
     99 
    95100== See Also == 
    96101[[SubWiki(Howto/PragmaticPatterns)]]