Changes between Version 4 and Version 5 of Cookbook/Series/SetPath


Ignore:
Timestamp:
10/24/11 23:51:34 (19 months ago)
Author:
gazpachoking
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Cookbook/Series/SetPath

    v4 v5  
    11= Set download path = 
    22 
    3 Set series download path using the series_name field, instead of specifying a path for each series. 
     3When using a bittorrent client plugin as your output plugin, ([wiki:Plugins/deluge deluge] or [wiki:Plugins/transmission transmission],) you can [wiki:Plugins/set set] the {{{path}}} field of an entry to control where the client will save the content. This, combined with [wiki:Plugins/set#DynamicFormatting jinja formatting] allows all series to be easily downloaded to separate series and season folders. This recipe uses the transmission plugin, but that can easily be replaced with the deluge plugin. 
    44 
    55{{{ 
     
    88    rss: http://example.com 
    99    series: 
    10       - foo 
    11       - bar 
    12     download: /series/location/{{series_name}} 
     10      - Foo 
     11      - Bar 
     12    set: 
     13      path: /series/location/{{series_name}}/Season {{series_season}} 
     14    transmission: yes 
    1315}}} 
    1416 
    15 Uses plugins: [wiki:Plugins/rss rss], [wiki:Plugins/series series], [wiki:Plugins/download download] 
    16  
    17  
    18  
    19 [wiki:Cookbook Back to The Cookbook] 
     17Uses plugins: [wiki:Plugins/rss rss], [wiki:Plugins/series series], [wiki:Plugins/set set], [wiki:Plugins/transmission transmission]