Metadata-Version: 1.1
Name: django-deepzoom
Version: 0.1
Summary: A simple Django app to create deep zoom tiled images.
Home-page: http://www.invocatum.com/
Author: David J Cox
Author-email: davidjcox.at@gmail.com
License: BSD License
Description: ===============
        django-deepzoom
        ===============
        
        Django-deepzoom is a drop-in Django app for the creation and use of Deep Zoom 
        tiled images.  It handily integrates Daniel Gasienica's and Kapil Thangavelu's 
        deepzoom.py image generator, Microsoft's SeaDragon deep zoom viewer, and 
        Sean Rice's JavaScript touch events into a set of model classes and template 
        tags which programmatically generate tiled images and all JavaScript necessary 
        for their instantiation into templates.
        
        Detailed documentation is in the "docs" directory.
        
        Run tests
        ---------
        After django-deepzoom has been installed, you may want to sanity check it by running tests, like this::
        
            python manage.py test deepzoom --settings=deepzoom.test.test_settings
        
        NOTE:   Some of the negative tests are expected to throw exceptions.
                The error text will display mixed in with the test results.  THAT IS EXPECTED!
                If the end result is `OK` then all tests have passed.  Enjoy.
        
        
        Quick start
        -----------
        
        1.) Install "django-deepzoom" like this::
        
            pip install -U django-deepzoom
        
          or, like this::
        
            wget https://pypi.python.org/packages/source/d/django-deepzoom/django-deepzoom-0.1.zip
            tar -xvf django-deepzoom-0.1.tar.gz
            cd django-deepzoom-0.1
            python setup.py install
        
        2.) Add "deepzoom" to your INSTALLED_APPS setting like this::
        
            (in settings.py)
              
            INSTALLED_APPS = (
                ...
                'deepzoom',
                ...
            )
        
        3.) Sub-class the '`UploadedImage`' model class as your own (image-based) class, something like this::
        
            (in models.py)
              
            from deepzoom.models import DeepZoom, UploadedImage
              
            class MyImage(UploadedImage):
              '''
              Overrides UploadedImage base class.
              '''
              pass
        
        4.) Run `python manage.py syncdb` to create the django-deepzoom models.
        
        5.) Write a view that queries for a specific DeepZoom object and passes it to a template, something like this::
           
            (in views.py)
              
            from .models import DeepZoom
              
            def deepzoom(request, passed_slug=None):
              try:
                  _deepzoom_obj = DeepZoom.objects.get(slug=passed_slug)
              except DeepZoom.DoesNotExist:
                  raise Http404
              return render_to_response('deepzoom.html', 
                                        {'deepzoom_obj': _deepzoom_obj}, 
                                        context_instance=RequestContext(request))
        
        6.) In your template, create an empty div with a unique ID.  Add Load the deepzoom tags and pass the deepzoom object and deepzoom div ID to the template tag inside a <script> block in the body like this::
        
            (in `deepzoom.html`)
              
            {% extends "base.html" %}
              
            {% load deepzoom_tags %}
              
            <div id="deepzoom_div"></div>
            
            <script src="{{ STATIC_URL }}js/vendor/seadragon-min.js"></script>
            
            <script>{% deepzoom_js deepzoom_obj 'deepzoom_div' %}</script>
        
        7.) Run `python manage.py collectstatic` to collect your static files into STATIC_ROOT
        
        8.) Start the development server and visit `http://127.0.0.1:8000/admin/` to upload an image to the associated model (you'll need the Admin app enabled).  Be sure to check the `Generate deep zoom?` checkbox for that image before saving it.
        
        9.) Navigate to the page containing the deep zoom image and either click/touch it or click/touch the overlaid controls to zoom into and out of the tiled image::
        
            **Behold!**
        
        
        #EOF django-deepzoom README.rst
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
