Metadata-Version: 1.1
Name: django-social-share
Version: 0.0.3
Summary: Templatetags for 'tweet this' and 'share on facebook'
Home-page: https://github.com/fcurella/django-social-share
Author: Flavio Curella
Author-email: flavio.curella@curella.org
License: MIT
Description: Django Social Share
        ======================================
        
        Provides tempatetags for 'Tweet This' and 'Share this on Facebook'
        
        ::
        
          INSTALLED_APPS += ['django_social_share']
        
        
        ::
        
          {% post_to_facebook <text_to_post> <object_or_url> <link_text> %}
        
        ``<text_to_post>`` may contain any valid Django Template code.
        
        ``<object_or_url>`` is optional. If you pass a django model instance, it will use its ``get_absolute_url`` method. Additionally, if you have ``django_bitly`` installed, it will use its shortUrl on Twitter.
        
        ``<link_text>`` is also optional. It defines the text used for the ``a`` element. Defaults to 'Post to Facebook' and 'Post to Twitter'
        
        
        Example::
        
          {% load social_share %}
          
          {% post_to_facebook "New Song: {{object.title}}. Check it out!" object_or_url "Post to Facebook!" %}
          {% post_to_twitter "New Song: {{object.title}}. Check it out!" object_or_url "Post to Twitter" %}
        
        Templates are in ``django_social_share/templatetags/post_to_twitter.html`` and ``django_social_share/templatetags/post_to_facebook.html``. You can override them to suit your mileage.
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
