~ausimage/soovee/trunk

« back to all changes in this revision

Viewing changes to soovee_lib/ckuri.py

  • Committer: Jeremy AustinBardo
  • Date: 2009-06-11 01:31:26 UTC
  • Revision ID: tjaustinbardo@gmail.com-20090611013126-0g4axgnvbif9y3og
Fix bugs with shelf creation and stray copy paste errors. Adjusted epydoc comments to more

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17
17
#
18
18
"""
19
 
SooVee Serial Audio Manager - 
20
 
 
 
19
SooVee Serial Audio Manager - Serial audio file feed update library. Update the
 
20
service acount Opml list and then update each Rss feed listed. 
 
21
 
 
22
    - C{Refresh(cache:obj, path:str) -> None}
 
23
    - C{len(Refresh)}
 
24
    - C{[feed for feed in Refresh(cache, path)}
 
25
 
 
26
@request: L{soovee_lib.parse}
21
27
"""
22
28
from parse import Xml
23
29
 
25
31
    """
26
32
    Update through iteration of Opml listed Rss feeds.
27
33
    
28
 
        - C{feed(cache:obj, opml:str, store:str, service:obj) -> None}
29
 
        - C{len(feed)}
30
 
        - C{[feed for feed in feed(cache, opml, store, service]}
 
34
        - C{Refresh(cache:obj, opml:str, store:str, service:obj) -> None}
 
35
        - C{len(Refresh)}
 
36
        - C{[feed for feed in Refresh(cache, path)}
31
37
    """
32
38
    __index = -1
33
 
    def __init__(self, cache, path, **options):
 
39
    def __init__(self, cache, path):
34
40
        """
35
41
        Update Opml Data in preparation for updating Rss Data.
36
42