Metadata-Version: 1.1
Name: django-rss-plugin
Version: 0.0.7
Summary: A Django CMS plugin to show a list of feeds.
Home-page: http://github.com/zgwmike/django-rss-plugin
Author: Guangwen Zhou
Author-email: zgwmike@hotmail.com
License: BSD
Description: =====================
        Django CMS RSS Plugin
        =====================
        
        Simple plugin to show a a rss feed in your django cms site.
        
        Features
        ========
        * Show specified number of feeds in the page.
        * You can choose to open the feed in current window or new window.
        * Show any rss feed you specified, it can be your external rss url, or your internal rss relative url like '/myblog/rss'.
        * The feed list would be cached for specified time long.
        
        Usage
        =====
        
        **Installation**::
        
          $ pip install django-rss-plugin
        
        Add rssplugin to your INSTALLED_APPS in Django settings.py file, Like following::
        
          INSTALLED_APPS=(
          	'rssplugin',
          )
        
        Run south migrate to install plugin database::
        
          $ python manage.py migrate rssplugin
        
        If no south, just run::
        
          $ python manage.py syncdb
        
        **template filter**
        
        #. parsed_to_date::
        
            {% load rss_tags %}
            {{ entry.published_parsed|parsed_to_date|timesince }}
        
        see rss.html for usage examples.
        
        **Notice**, both external link like 'http：//example.com/rss' and internal link like '/blog/rss' are supported.
        
        Online Resources
        ----------------
        
        * `Code repository`_.
        
        .. _Code repository: https://github.com/zgwmike/django-rss-plugin
        
        Change History
        --------------
        
        - 2/13/2013, Version 0.0.7
        
            Fix a template bug.
        
        - 2/12/2013, Version 0.0.6
        
            New feature:
        
                #. Can specify both external link and internal path.
        
        - 2/11/2013, Version 0.0.5
        
            New features:
        
                #. If no entries found, show "no entries found".
        
        - 2/8/2013, Version 0.0.4
        
            First stable release published to Pypi.
Keywords: django cms plugin django-rss-plugin
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Plugins
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Multimedia :: Video :: Display
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
