Metadata-Version: 1.0
Name: imagestore
Version: 1.3.0
Summary: Django simple image gallery
Home-page: http://bitbucket.org/zeus/imagestore/
Author: Pavel Zhukov
Author-email: gelios@gmail.com
License: GPL
Description: ImageStore
        ==========
        
        An image library, created for easy integration for an exiting django project.
        Very ligth, builded around django generic views
        
        Features:
        =========
        * Optional PrettyPhoto for image/gallery show
        * Nested categories (mptt)
        * Category preview
        * Tagging support
        * South support for upgrades
        
        
        Installation:
        =============
        
        * Install with pip or easy install (All dependencies will be installed automatically)
        * Symlink or copy imagestore/media/imagestore.css to your MEDIA_ROOT (or write youre own style)
        * Add imagestore to your INSTALLED_APPS
        * Add imagestore.urls to your urls
        * Run ./manage.py syncdb or ./manage.py migrate
        * Add jquery and jqueryui load to your template to use tagging autocomplete and/or prettyphoto
        * If you want to use prettyPhoto put `prettyPhoto <http://www.no-margin-for-errors.com/projects/prettyphoto-jquery-lightbox-clone/>`__ to your media directory and include imagesotore/prettyphoto.html to your template
        
        Configuration:
        ==============
        
        You can control, who can upload images with IMAGESTORE_CAN_UPLOAD settings, set it to function, that accept user as param and return True/False::
        
        def check_upload_rights(user):
        if user.is_authenticated:
        return True
        else:
        return False
        IMAGESTORE_CAN_UPLOAD = check_upload_rights
        
        Translation:
        ============
        
        * Russian
        * English
        
        Watermarking:
        =============
        
        Use `watermarker <http://pypi.python.org/pypi/watermarker/>`__ sorl integration to add watermark to your images
        
        
Keywords: django gallery
Platform: UNKNOWN
