Metadata-Version: 1.0
Name: django-sopa
Version: 0.0.2
Summary: A django app for all your censoring needs.
Home-page: https://github.com/fcurella/django-sopa
Author: Flavio Curella
Author-email: flavio.curella@gmail.com
License: MIT
Description: Django SOPA
        ======================================
        
        For all your censoring needs.
        
        ``django-sopa`` helps you comply with the `Stop Online Piracy Act (SOPA) 
        <http://en.wikipedia.org/wiki/Stop_Online_Piracy_Act>`_.
        
        It provides two template filters:
        
        ``is_censored``
        ----------------------
        
        Returns ``True`` or ``False`` if value contains links.
        
        ``censor``
        ----------
        
        Strips ``<a>`` elements, and replace links with blocks or a given strings.
        
        Accepts a replacement string as an optional parameter. If not specified, it will use the SOPA_REPLACE setting (defaults to ``'BLOCKS'``).
        
        The special value ``'BLOCKS'`` will replace every char in the link with a black square.
        
        ::
        
        	"Defend your rights at www.eff.org."|censor
        
        	>>> Defend your rights at ▉▉▉▉▉▉▉▉▉▉▉.
        
        
        	"Defend your rights at www.eff.org."|censor:"<redacted>"
        
        	>>> Defend your rights at <redacted>.
        
        Settings
        ========
        
        ``SOPA_REPLACE_MODE``
        ---------------------
        
        Set to ``'LINKS'`` to only censor links, or to ``'ALL'`` to censor everything. Defaults to ``'ALL'``.
        
        With ``SOPA_REPLACE_MODE = 'LINKS'``::
        
        	"Defend your rights at <a href="http://www.eff.org/">www.eff.org.</a>."|censor
        
        	>>> Defend your rights at ▉▉▉▉▉▉▉▉▉▉▉.
        
        With ``SOPA_REPLACE_MODE = 'ALL'``::
        
        	"Defend your rights at <a href="http://www.eff.org/">www.eff.org</a>."|censor
        
        	>>> ▉▉▉▉▉▉ ▉▉▉▉ ▉▉▉▉▉▉ ▉▉ ▉▉▉▉▉▉▉▉▉▉▉▉
        
        
        
        ``SOPA_REPLACE``
        ----------------
        
        Specifies what string the censored text will be replaced with.
        
        Set to the magic value ``'BLOCKS'`` to replace any non-whitespace characters with black squares.
        
        
        More Info
        =========
        
        Alternatively, you can call your Senators to make sure you'd never need this app, or visit `American Censorship 
        <http://americancensorship.org/>`_ for more information.
        
        
        LICENSE
        =======
        (MIT License)
        
        Copyright (C) 2011 by Flavio Curella
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in
        all copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
        THE SOFTWARE.
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
