{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": ".. _DjangoCMS: http://www.django-cms.org/\n.. _django-filebrowser: https://github.com/sehmaschine/django-filebrowser\n.. _django-filebrowser-no-grappelli: https://github.com/smacker/django-filebrowser-no-grappelli\n.. _djangocms_text_ckeditor: https://github.com/divio/djangocms-text-ckeditor\n.. _django-ckeditor: https://github.com/shaunsephton/django-ckeditor\n.. _cmsplugin-slideshows: https://github.com/emencia/cmsplugin-slideshows\n\nIntroduction\n============\n\nYou can have **multiple Slideshows** and each of them **have their own slides**. Slides can be ordered and they contains a title, an optional content text, an optional URL and an optional image.\n\nSlideshows can use custom templates and custom config templates. Config templates are used to contains some Javascript to configure/initialize your slideshow with your slider library. But by default a Slideshow item have no config template, this is optional.\n\nIt does not contains any assets to integrate it in your site, this is at your responsability to integrate it (choose and install your slider library, add your assets where you need, customize the template, etc..).\n\nLinks\n*****\n\n* Download his `PyPi package `_;\n* Clone it on his `Github repository `_;\n\nRequire\n=======\n\n* Django >= 1.8;\n* `django-filebrowser-no-grappelli`_ >= 3.5.6;\n\nOptional\n********\n\n* `djangocms_text_ckeditor`_ >= 2.4.0 OR `django-ckeditor`_ >= 4.4.4 (see `Ckeditor`_ section);\n\nCkeditor\n--------\n\nA Ckeditor django app can be installed to use it for the ``Slide.content`` model attribute instead of the simple ``TextField``.\n\nSo **it is at your responsability** to manualy install (with pip, buildout, etc..) one of them if you need it. Once it's installed, you won't need to worry about this again.\n\nNote that the default assumed app is `djangocms_text_ckeditor`_ and if not installed, `django-ckeditor`_ will be assumed. If you have installed both, `djangocms_text_ckeditor`_ will be used. If none of them is installed, the default Django field ``TextField`` will be used.\n\nChoosing what app to install depends mostly from if you have allready installed DjangoCMS or not. If you have, you probably allready have its ckeditor app installed, so no need to install the other app because. If you don't have installed DjangoCMS, just install `django-ckeditor`_.\n\nFinally you can add custom settings for CKeditor, see its documentation to see how to set them (you may have to go to official CKeditor documentation to know about available settings).\n\nInstall\n=======\n\nAdd it to your installed apps in the settings : ::\n\n INSTALLED_APPS = (\n ...\n 'slideshows',\n 'filebrowser',\n ...\n )\n\nIf you have installed one of the django app for CKeditor, add it also to your ``settings.INSTALLED_APPS``.\n\nThen add its settings : ::\n\n from porticus.settings import *\n\nSee the app ``settings.py`` file to see what settings you can override.\n\nAlso there is some settings you may see about `django-filebrowser-no-grappelli`_ (see its documentation for more details).\n\nAnd add its views to your main ``urls.py`` : ::\n\n from django.conf.urls import url, patterns\n from filebrowser.sites import site as filebrowser_site\n\n urlpatterns = patterns('',\n ...\n url(r'^slideshows/', include('slideshows.urls', namespace='slideshows')),\n url(r'^admin/filebrowser/', include(filebrowser_site.urls)),\n ...\n )\n\nFinally install app models in your database using Django migrations: ::\n\n python manage.py migrate\n\nUsage\n=====\n\nThe process to build the HTML will be to generate the optional config HTML if any, then generate the content HTML.\n\nThe common way is to display a Slideshow with all slides, this is called the **Slides show**. And there is another mode called **Random slide** which only display a single slide taked randomly from a Slideshow published slides.\n\nWith the template tag\n*********************\n\nCreate your slideshow from the admin, feed it with some slides, then use it in your templates : ::\n\n {% load slideshows_tags %}\n ...\n {% slideshow_render 'your-slug' %}\n\nThe first argument accept either a slug string or a Slideshow instance.\n\nAlso you can override the content template and the config template saved within the template tag : ::\n\n {% load slideshows_tags %}\n ...\n {% slideshow_render 'your-slug' 'slideshows/slides_show/custom.html' 'slideshows/slides_show/configs/custom.html' %}\n\n(Use ``'None'`` as the second argument if you just want to override the config template).\n\nNote that if the given Slideshow slug does not exist, this will raise a Http404.\n\nWith the views\n**************\n\nViews use the defined template in Slideshow instance, there is no particular process to define.\n\n* You can reach a slideshow view with an url like ``/slideshows/show_slides/SLUG/`` where ``SLUG`` is the defined slug on the Slideshow object;\n* You can reach the random image mode for a slideshow view with an url like ``/slideshows/random_slide/SLUG/`` where ``SLUG`` is the defined slug on the Slideshow object;\n\nWithin DjangoCMS pages\n**********************\n\nYou can install an additional package to use your slideshows in pages placeholder contents. See `cmsplugin-slideshows`_.\n\nTemplates\n*********\n\nSlideshow content templates will have the following context variables :\n\n* ``slideshow_js_config`` : the generated config template if any, else an empty string;\n* ``slideshow_instance`` : the Slideshow model instance;\n* ``slideshow_slides`` : a queryset of published slides for the Slideshow instance;\n\nSlideshow config templates will have the following context variables :\n\n* ``slideshow_instance`` : the Slideshow model instance;\n* ``slideshow_slides`` : a queryset of published slides for the Slideshow instance;\n\nThis is available for the template tag and also the cms plugin.\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "emencia-django-slideshows", "package_url": "https://pypi.org/project/emencia-django-slideshows/", "platform": null, "project_url": "https://pypi.org/project/emencia-django-slideshows/", "project_urls": null, "release_url": "https://pypi.org/project/emencia-django-slideshows/1.1.0/", "requires_dist": null, "requires_python": "", "summary": "", "version": "1.1.0" }, "last_serial": 2900590, "releases": { "0.3.2": [ { "comment_text": "", "digests": { "md5": "62173b7cdda03d855a6aa8964de2332e", "sha256": "52493ae65604a9a7763072aacf8e79a679d8168141a1b4575e74e6ba433228c3" }, "downloads": -1, "filename": "emencia-django-slideshows-0.3.2.tar.gz", "has_sig": false, "md5_digest": "62173b7cdda03d855a6aa8964de2332e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 4723, "upload_time": "2013-05-07T15:45:34", "url": "https://files.pythonhosted.org/packages/d8/a5/6982dabe13d01dacacf7a3dc76a827087f078c4fba1b40b3dd975ab158c8/emencia-django-slideshows-0.3.2.tar.gz" } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "bb218ca3a072c459201175a0641878f4", "sha256": "69b1d084c9d9416d760b4c49bb4f91c7d0a421fa5cebed38e58f262821f5100d" }, "downloads": -1, "filename": "emencia-django-slideshows-0.3.3.tar.gz", "has_sig": false, "md5_digest": "bb218ca3a072c459201175a0641878f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5803, "upload_time": "2013-07-18T16:45:14", "url": "https://files.pythonhosted.org/packages/6b/8f/ef643681dfaf9a9fde69aefd67f27f8114450df38e672ee473b21e91b662/emencia-django-slideshows-0.3.3.tar.gz" } ], "0.4.0": [ { "comment_text": "", "digests": { "md5": "e0d40fdace7e898c9bbef481bb90cc6e", "sha256": "a40b2a4e0c49a85dff29b6a57f4a205891dfc7f237f9561f6513b5e0618af7ba" }, "downloads": -1, "filename": "emencia-django-slideshows-0.4.0.tar.gz", "has_sig": false, "md5_digest": "e0d40fdace7e898c9bbef481bb90cc6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5860, "upload_time": "2013-08-01T13:07:01", "url": "https://files.pythonhosted.org/packages/c7/70/8aec536061fb4fba631cd57a294861ea793d54115bdfecdf4b744074a286/emencia-django-slideshows-0.4.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "0b1fe53307b9602807335e26d3528457", "sha256": "63a749f00c8e807f191b4723c05934e2605158d15f485af8041974ad8cd08868" }, "downloads": -1, "filename": "emencia-django-slideshows-0.5.0.tar.gz", "has_sig": false, "md5_digest": "0b1fe53307b9602807335e26d3528457", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6474, "upload_time": "2013-08-03T02:04:28", "url": "https://files.pythonhosted.org/packages/d8/a9/9e7542869fb7275b4ded0bcc46804c3a4dd355000249222c1b23ad995980/emencia-django-slideshows-0.5.0.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "f9e0053881da6508ecaba4911df1ee2c", "sha256": "cd793b827e5160b19a88cab57b08d2f9c4bac0bbe5a7c8127ec1407a483b44fc" }, "downloads": -1, "filename": "emencia-django-slideshows-0.6.0.tar.gz", "has_sig": false, "md5_digest": "f9e0053881da6508ecaba4911df1ee2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9051, "upload_time": "2013-09-11T15:37:07", "url": "https://files.pythonhosted.org/packages/e5/e7/d818eb57b28b820a727e914e60dae11d1c11470e913b58e63a5246f85222/emencia-django-slideshows-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "a87a390b0467f4016579ab038cca30f5", "sha256": "486c64d461546bca71ae8c2284d2b83aceaa3818524cd3359eea669cf1b011cd" }, "downloads": -1, "filename": "emencia-django-slideshows-0.7.0.tar.gz", "has_sig": false, "md5_digest": "a87a390b0467f4016579ab038cca30f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12152, "upload_time": "2013-09-13T00:44:47", "url": "https://files.pythonhosted.org/packages/8c/b1/1ae0ea4390c50edb7bf1ebc99bd66d8cd9c109f9febd34e5717b52eb711d/emencia-django-slideshows-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "d653d04d057ec9a8b32698ff19c15e97", "sha256": "495859104870ef473d359b184383438f5cd53058115a3eea3e77f63d84b9c4ed" }, "downloads": -1, "filename": "emencia-django-slideshows-0.7.1.tar.gz", "has_sig": false, "md5_digest": "d653d04d057ec9a8b32698ff19c15e97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12168, "upload_time": "2013-09-27T02:44:54", "url": "https://files.pythonhosted.org/packages/31/e2/8293201fec8abe3491acc73b3e1cbffc5e524b4fd2ba88e10b3545bd06ed/emencia-django-slideshows-0.7.1.tar.gz" } ], "0.7.2": [ { "comment_text": "", "digests": { "md5": "5f15bb875484dacf5ac96085fb69ab87", "sha256": "a76560ed30ec7786e21153c6a75ba2e602d594bd222a720893cb955c83b4d912" }, "downloads": -1, "filename": "emencia-django-slideshows-0.7.2.tar.gz", "has_sig": false, "md5_digest": "5f15bb875484dacf5ac96085fb69ab87", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13199, "upload_time": "2014-02-05T01:19:38", "url": "https://files.pythonhosted.org/packages/88/dd/50385b2f623b09ba2486cd6fd1b2463b1ee9c0fb834cc8832ac26fe7483e/emencia-django-slideshows-0.7.2.tar.gz" } ], "0.7.3": [ { "comment_text": "", "digests": { "md5": "2aa6e5bee3db042b45bdc2e63a02e382", "sha256": "96046752926407c81f59addc4be4454e97dee0ebcd504b36bf38ca0c2ff1a5d9" }, "downloads": -1, "filename": "emencia-django-slideshows-0.7.3.tar.gz", "has_sig": false, "md5_digest": "2aa6e5bee3db042b45bdc2e63a02e382", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13314, "upload_time": "2014-02-05T02:51:39", "url": "https://files.pythonhosted.org/packages/23/b7/244bed8e8df79ffbc1ddc79f5345debf47114a41d357d4b4e74f563d86e3/emencia-django-slideshows-0.7.3.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "db29910d2b2f94efa19eb188dfd44caf", "sha256": "e171333339acb0f78ba81674b79c94df1114a1e71e353276fd9b2b694182b063" }, "downloads": -1, "filename": "emencia-django-slideshows-0.8.0.tar.gz", "has_sig": false, "md5_digest": "db29910d2b2f94efa19eb188dfd44caf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14775, "upload_time": "2014-02-17T02:59:57", "url": "https://files.pythonhosted.org/packages/60/7e/43d1302a8049a340bdbe15c6f2394236926a3f0d3777f13005c47cffb536/emencia-django-slideshows-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "45c5eb57f626fa9cb797dd2131cf0fdc", "sha256": "e8883ad7704c27efb061ec90f161ab59ca9d1ea1941978278e88be7d33ed1d26" }, "downloads": -1, "filename": "emencia-django-slideshows-0.8.1.tar.gz", "has_sig": false, "md5_digest": "45c5eb57f626fa9cb797dd2131cf0fdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14703, "upload_time": "2014-03-20T14:39:19", "url": "https://files.pythonhosted.org/packages/8c/ce/53d098cf8d664533c4322ecddb17bb211c76f5dba07969bef91a125a2d90/emencia-django-slideshows-0.8.1.tar.gz" } ], "0.8.1.1": [ { "comment_text": "", "digests": { "md5": "8ddb9821e85ed5fe8dfeafbfb49a2ebe", "sha256": "dcce4666a947ebad7c33944eaabc6cd2c94ea241024efa78646f974f81e7d3c7" }, "downloads": -1, "filename": "emencia-django-slideshows-0.8.1.1.tar.gz", "has_sig": false, "md5_digest": "8ddb9821e85ed5fe8dfeafbfb49a2ebe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14106, "upload_time": "2014-05-15T14:54:58", "url": "https://files.pythonhosted.org/packages/4e/ac/7be7d9742f98c4cd137eba3ea47be2ee433a0728578e36b7e56169f1705a/emencia-django-slideshows-0.8.1.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "1e2d359cc6daaa75bbf3f863240374c7", "sha256": "7ac16304dc6ba275c73ff01f051d54a42e1d86945c321c7682dbd16d28352f44" }, "downloads": -1, "filename": "emencia-django-slideshows-0.8.2.tar.gz", "has_sig": false, "md5_digest": "1e2d359cc6daaa75bbf3f863240374c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15197, "upload_time": "2014-06-16T12:40:36", "url": "https://files.pythonhosted.org/packages/a6/d6/6ce12f329fa0f63e2836a62cccaf5414add662a87a763361a737d66b77ec/emencia-django-slideshows-0.8.2.tar.gz" } ], "0.8.3": [ { "comment_text": "", "digests": { "md5": "00641cea3bbceeaaf94fe15013c886cb", "sha256": "6346c089b6713984e4928b5ef209c7199113682134e88298b61a36a70d4fc87f" }, "downloads": -1, "filename": "emencia-django-slideshows-0.8.3.tar.gz", "has_sig": false, "md5_digest": "00641cea3bbceeaaf94fe15013c886cb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15448, "upload_time": "2015-03-26T02:32:04", "url": "https://files.pythonhosted.org/packages/b6/30/1ad5fb29c1a9768cad21d771be4d14bc0442345f8c87b5f5e1fa3e1d37b3/emencia-django-slideshows-0.8.3.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "d06919013f489541d8f63fb9cdd40081", "sha256": "cf6da129b46664e18043eafd5ec72349193c38d728b128483e31ed83ade64f30" }, "downloads": -1, "filename": "emencia-django-slideshows-0.9.tar.gz", "has_sig": false, "md5_digest": "d06919013f489541d8f63fb9cdd40081", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16756, "upload_time": "2014-10-03T00:29:18", "url": "https://files.pythonhosted.org/packages/a1/b2/004888adec4c1f974d2fed4af864908756d75f5ce788d12ca08a6f86f21b/emencia-django-slideshows-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "e11416b610545fd80bf3bea730f0ff49", "sha256": "1d3183264c33bd6d31427a42c2a022256fb7cf8bdfc3fcf74ca2cfb1c0e1a0d3" }, "downloads": -1, "filename": "emencia-django-slideshows-0.9.1.tar.gz", "has_sig": false, "md5_digest": "e11416b610545fd80bf3bea730f0ff49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16651, "upload_time": "2014-10-24T03:35:31", "url": "https://files.pythonhosted.org/packages/50/0f/46903a77a157be6c70722839baf5649cfd393f5f0ed147f703a7ffc7bad8/emencia-django-slideshows-0.9.1.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "e5857158eae18e04ec4fc52a8aff6b7c", "sha256": "27fc93f38ad04fe6e7bdc855e3f580c5b08bf6e3e5f0cda3517d5e0d0a95e218" }, "downloads": -1, "filename": "emencia-django-slideshows-0.9.3.tar.gz", "has_sig": false, "md5_digest": "e5857158eae18e04ec4fc52a8aff6b7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17091, "upload_time": "2014-10-25T03:18:56", "url": "https://files.pythonhosted.org/packages/8e/ad/865aac76493d93562724ed26797d4a4e267e18ad759602a45451e11c2b9e/emencia-django-slideshows-0.9.3.tar.gz" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "03069cf0181bc95c41ea19773595f59a", "sha256": "c3770de231e6c581d12a8ad6800f7c45221d263a8c332723c3baf95ecb4f4b9a" }, "downloads": -1, "filename": "emencia-django-slideshows-0.9.4.tar.gz", "has_sig": false, "md5_digest": "03069cf0181bc95c41ea19773595f59a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16918, "upload_time": "2014-12-01T14:18:25", "url": "https://files.pythonhosted.org/packages/d6/30/c414b0abeddad5a3408f43ca170d215a86d432984a2a1aa96bd98deaf7c6/emencia-django-slideshows-0.9.4.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "d0a9f6bc7d0819da24d4f6dd1ab12441", "sha256": "910a98c47a453e92ab4bf5106a196f880613e170a5ebfa4f745d233bdbde7071" }, "downloads": -1, "filename": "emencia-django-slideshows-1.0.0.tar.gz", "has_sig": false, "md5_digest": "d0a9f6bc7d0819da24d4f6dd1ab12441", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12984, "upload_time": "2015-11-28T22:20:55", "url": "https://files.pythonhosted.org/packages/95/dd/5e2f96a9804aee5fbd8a9e185c0a941803a76f0c1514f3bd0f8a62fb6ab1/emencia-django-slideshows-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "e1e259c57dabc83b4b374ca3caac0442", "sha256": "16b012321ebdccb149384ebf8e5edea9511478d0648c5043d9ac615932b18e0a" }, "downloads": -1, "filename": "emencia-django-slideshows-1.0.1.tar.gz", "has_sig": false, "md5_digest": "e1e259c57dabc83b4b374ca3caac0442", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12980, "upload_time": "2016-06-13T15:34:35", "url": "https://files.pythonhosted.org/packages/03/c0/3bbd4eea2788c444defdb4d3ace57cd6b702a647271859427a593b12609c/emencia-django-slideshows-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "f3b4d72d45d56d910bdf312c7c84ca73", "sha256": "a605df1eaba0b500e28e9da2b35218399c69f62d5ae25eb506c378525b483fa6" }, "downloads": -1, "filename": "emencia-django-slideshows-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f3b4d72d45d56d910bdf312c7c84ca73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11419, "upload_time": "2017-05-26T10:29:28", "url": "https://files.pythonhosted.org/packages/c0/98/fda36171e6c53e176bd2a2b96f085f5ffb2f0922bfa37eb0f125ff5b57ce/emencia-django-slideshows-1.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "f3b4d72d45d56d910bdf312c7c84ca73", "sha256": "a605df1eaba0b500e28e9da2b35218399c69f62d5ae25eb506c378525b483fa6" }, "downloads": -1, "filename": "emencia-django-slideshows-1.1.0.tar.gz", "has_sig": false, "md5_digest": "f3b4d72d45d56d910bdf312c7c84ca73", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11419, "upload_time": "2017-05-26T10:29:28", "url": "https://files.pythonhosted.org/packages/c0/98/fda36171e6c53e176bd2a2b96f085f5ffb2f0922bfa37eb0f125ff5b57ce/emencia-django-slideshows-1.1.0.tar.gz" } ] }