Metadata-Version: 1.0
Name: emencia.django.links
Version: 0.2.2
Summary: Django app that create a links directory
Home-page: UNKNOWN
Author: Lafaye Philippe
Author-email: lafaye@emencia.com
License: AGPL
Description: ====================
        emencia.django.links
        ====================
        
        Introduction
        ============
        
        emencia.django.links is a django standalone app that provide a web link's
        collection.
        
        Features
        ========
        
        - add title and description to a web link
        - classify by language
        - classify by categories
        - published features (start-end publish date, visibility status, site)
        - standard view
        - template tag that get the x last entries
        
        Installation
        ============
        
        1) With easy_install::
        
        # easy_install emencia.django.links
        
        2) Python install::
        
        # python setup.py install
        
        You could retrive source from the pypi or bitbucket:
        
        - http://bitbucket.org/rage2000/emencia.django.links
        - http://pypi.python.org/pypi/emencia.django.links
        
        Instructions
        ============
        
        - Install the package in your python sys path
        - Add the app 'emencia.django.links' in the settings.py django project's file
        - Import urls into your root urls.py file::
        
        (r'^links/', include('emencia.django.links.urls')),
        
        - For use the template tag simply load links_monitoring and use get_latest_links tag.
        The syntaxe is {% get_latest_links number_of_links as variable_name %}::
        
        {% load links_monitoring %}
        {% get_latest_links 2 as last_link %}
        {% for link in last_link %}
        <span><a href="{{ link.url }}">{{ link.title }}</a></span>
        {% endfor %}
        
        
        Changelog
        =========
        
        0.2.2
        -----
        
        - add site management
        
        0.2.1
        -----
        
        - Fix bug in admin file.
        
        0.2
        ---
        
        - First public release.
        
        0.1dev (unreleased)
        -------------------
        
        - Initial release.
        
Keywords: django links
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP
