{ "info": { "author": "tell-k", "author_email": "ffk2005 at gmail dot com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Sphinx", "Framework :: Sphinx :: Extension", "Framework :: Sphinx :: Theme", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Topic :: Software Development", "Topic :: Software Development :: Documentation", "Topic :: Text Processing :: Markup" ], "description": "reveal.js style presentation theme for Sphinx.\r\n\r\n|travis| |coveralls| |downloads| |version| |license| |requires|\r\n\r\n\r\nOutput Sample\r\n=============\r\n:output: http://packages.python.org/sphinxjp.themes.revealjs/\r\n:source: http://packages.python.org/sphinxjp.themes.revealjs/_sources/index.txt\r\n\r\n\r\nFeatures\r\n========\r\n* provide ``revealjs`` directive for reveal.js presetation slide control.\r\n* provide ``revealjs`` theme for render presetation.\r\n\r\n\r\nSet up\r\n======\r\nMake environment with pip::\r\n\r\n $ pip install sphinxjp.themes.revealjs\r\n\r\nConvert Usage\r\n=============\r\nsetup conf.py with::\r\n\r\n extensions = ['sphinxjp.themes.revealjs']\r\n html_theme = 'revealjs'\r\n html_use_index = False\r\n\r\nand run::\r\n\r\n $ make html\r\n\r\nWriting Custom Directives\r\n=============================\r\n\r\nrevealjs\r\n--------------------\r\n\r\nThis directive crate a slide section for reveal.js.\r\n\r\n::\r\n\r\n .. revealjs:: Heads Up\r\n\r\n reveal.js is a framework for easily creating beautiful presentations using HTML.\r\n You'll need a browser with support for CSS 3D transforms to see it in its full glory.\r\n\r\n\r\nSlides can be nested inside of other slides,\r\n\r\n::\r\n\r\n .. revealjs::\r\n\r\n .. revealjs:: Vertical Slide1\r\n\r\n vertical slide1\r\n\r\n .. revealjs:: Vertical Slide2\r\n\r\n vertical slide2\r\n\r\n .. revealjs:: Vertical Slide3\r\n\r\n vertical slide3\r\n\r\nYou can set various directive options.\r\n\r\n\r\nclass\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nSet 'class' attribute to 'section' tag.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :class: spam\r\n\r\n\r\nnoheading\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nIt does not display the title heading.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :noheading:\r\n\r\ntitle-heading\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nYou can change the size of the title tag. h1\u301ch2\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :title-heading: h3\r\n\r\n\r\nsubtitle\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nYou can set subtitle text.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :subtitle: Subtitle Text\r\n\r\n\r\nsubtitle-heading\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nYou can change the size of the subtitle tag. h1\u301ch2\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :subtitle: Subtitle Text\r\n :subtitle-heading: h4\r\n\r\ndata-autoslide\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nNumber of milliseconds between automatically proceeding to the next slide\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-autoslide: 4000\r\n\r\n\r\ndata-markdown\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nYou can write in Markdown syntax to use the data-markdown option.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-markdown:\r\n\r\n ## Page title\r\n\r\n A paragraph with some text and a [link](http://hakim.se).\r\n\r\nYou can read the external Markdown.\r\n\r\n\r\n::\r\n\r\n .. revealjs:: External Markdown\r\n :data-markdown: _static/external.md\r\n :data-separator: ^\\n\\n\\n\r\n :data-vertical: ^\\n\\n\r\n :data-notes: ^Note:\r\n\r\n\r\ndata-transition\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nChange transition style by the following pattern.\r\n\r\n* none\r\n* fade\r\n* slide\r\n* convex(=default)\r\n* concave\r\n* zoom\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-transition: zoom\r\n\r\n\r\ndata-transition-speed\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nChange transition speed by the following pattern.\r\n\r\n* default\r\n* fast\r\n* slow\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-transition-speed: fast\r\n\r\n\r\ndata-background\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nChange background settings.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-background: \"http://example.com/image.png\"\r\n :data-background-size: 100px\r\n :data-background-repeat: repeat\r\n :data-background-transition: page\r\n\r\n\r\ndata-state\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nIf you set data-state on a slide, \"somestate\" will be applied as a class on the document element when that slide is opened.\r\nThis allows you to apply broad style changes to the page based on the active slide.\r\n\r\n::\r\n\r\n .. revealjs:: Slide Title\r\n :data-state: somestate\r\n\r\nFurthermore you can also listen to these changes in state via JavaScript\r\n\r\n::\r\n\r\n Reveal.addEventListener('somestate', function() {\r\n // TODO: Sprinkle magic\r\n }, false );\r\n\r\n\r\nrv_code\r\n---------------------\r\n\r\n::\r\n\r\n .. revealjs:: Pretty Code\r\n\r\n .. rv_code::\r\n\r\n function linkify( selector ) {\r\n if( supports3DTransforms ) {\r\n\r\n var nodes = document.querySelectorAll( selector );\r\n\r\n for( var i = 0, len = nodes.length; i < len; i++ ) {\r\n var node = nodes[i];\r\n\r\n if( !node.className ) ) {\r\n node.className += ' roll';\r\n }\r\n };\r\n }\r\n }\r\n\r\n\r\nrv_small\r\n---------------------\r\n\r\nThis directive can be used when writing the text smaller.\r\n\r\n::\r\n\r\n .. revealjs:: rv_small smaple\r\n\r\n .. rv_small::\r\n\r\n Created by `tell-k `_ / `@tell-k `_\r\n\r\nrv_note\r\n---------------------\r\n\r\nThis directive can be used when creating some notes for presenter. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\r\n\r\n::\r\n\r\n .. revealjs:: Heads Up\r\n\r\n reveal.js is a framework for easily creating beautiful presentations using HTML. You'll need a browser with support for CSS 3D transforms to see it in its full glory.\r\n\r\n .. rv_note::\r\n\r\n Oh hey, these are some notes. They'll be hidden in your presentation, but you can see them if you open the speaker notes window (hit 's' on your keyboard).\r\n\r\nCustomize Config\r\n=============================\r\n\r\nBy changing html_theme_options, you can change the settings for the whole.\r\n\r\n::\r\n\r\n\r\n html_theme_options = {\r\n # Set the lang attribute of the html tag. Defaults to \"ja\"\r\n \"lang\": \"ja\",\r\n\r\n # The \"normal\" size of the presentation, aspect ratio will be preserved\r\n # when the presentation is scaled to fit different resolutions\r\n \"width\": 960,\r\n \"height\": 700,\r\n\r\n # Factor of the display size that should remain empty around the content\r\n \"margin\": 0.1,\r\n\r\n # Bounds for smallest/largest possible scale to apply to content\r\n \"min_scale\": 0.2,\r\n \"max_scale\": 1.0,\r\n\r\n # Display controls in the bottom right corner\r\n \"controls\": True,\r\n\r\n # Display a presentation progress bar\r\n \"progress\": True,\r\n\r\n # Push each slide change to the browser history\r\n \"history\": True,\r\n\r\n # Enable keyboard shortcuts for navigation\r\n \"keyboard\": True,\r\n\r\n # Enable the slide overview mode\r\n \"overview\": True,\r\n\r\n # Vertical centring of slides\r\n \"center\": True,\r\n\r\n # Enables touch navigation on devices with touch input\r\n \"touch\": True,\r\n\r\n # Loop the presentation\r\n \"loop\": False,\r\n\r\n # Change the presentation direction to be RTL\r\n \"rtl\": False,\r\n\r\n # Turns fragments on and off globally\r\n \"fragments\": True,\r\n\r\n # Number of milliseconds between automatically proceeding to the\r\n # next slide, disabled when set to 0, this value can be overwritten\r\n # by using a data-autoslide attribute on your slides\r\n \"auto_slide\": 0,\r\n\r\n # Enable slide navigation via mouse wheel\r\n \"mouse_wheel\": False,\r\n\r\n # Apply a 3D roll to links on hover\r\n \"rolling_links\": True,\r\n\r\n # Opens links in an iframe preview overlay\r\n \"preview_links\": False,\r\n\r\n # Theme (black/white/league/beige/sky/night/serif/simple/solarized)\r\n \"theme\": \"black\",\r\n\r\n # Transition style (default(=convex)/none/fade/slide/concave/zoom)\r\n \"transition\": \"default\",\r\n\r\n # Transition speed (default/fast/slow)\r\n \"transition_speed\": \"default\",\r\n\r\n # Transition style for full page slide backgrounds (default(=convex)/none/fade/slide/concave/zoom)\r\n \"background_transition\": \"default\",\r\n\r\n # Display the page number of the current slide\r\n \"slide_number\": False,\r\n\r\n # Flags if the presentation is running in an embedded mode,\r\n # i.e. contained within a limited portion of the screen\r\n \"embedded\": False,\r\n\r\n # Stop auto-sliding after user input\r\n \"auto_slide_stoppable\": True,\r\n\r\n # Hides the address bar on mobile devices\r\n \"hide_address_bar\": True,\r\n\r\n # Parallax background image\r\n # CSS syntax, e.g. \"a.jpg\"\r\n #\"parallax_background_image\": '_static/bg.jpg',\r\n\r\n # Parallax background size\r\n # CSS syntax, e.g. \"3000px 2000px\"\r\n #\"parallax_background_size\": '2000px 900px',\r\n\r\n # Focuses body when page changes visibility\r\n # to ensure keyboard shortcuts work\r\n \"focus_body_on_page_visibility_change\": True,\r\n\r\n # Number of slides away from the current that are visible\r\n \"view_distance\": 3,\r\n }\r\n\r\n\r\nMultiplexing\r\n--------------------\r\n\r\nhttps://github.com/hakimel/reveal.js#multiplexing\r\n\r\n::\r\n\r\n html_theme_options = {\r\n\r\n \"multiplex\": {\r\n \"secret\": None, # null so the clients do not have control of the master presentation\r\n \"id\": '1ea875674b17ca76', # id, obtained from socket.io server\r\n \"url\": 'example.com:80' # Location of your socket.io server\r\n },\r\n\r\n \"plugin_list\": [\r\n \"//cdnjs.cloudflare.com/ajax/libs/socket.io/0.9.10/socket.io.min.js\",\r\n \"_static/plugin/multiplex/master.js\",\r\n\r\n # and if you want speaker notes\r\n \"_static/plugin/notes-server/client.js\",\r\n ],\r\n\r\n }\r\n\r\nLeap Motion\r\n--------------------\r\n\r\nhttps://github.com/hakimel/reveal.js#leap-motion\r\n\r\n::\r\n\r\n html_theme_options = {\r\n\r\n \"leap\": {\r\n \"autoCenter\": True,\r\n \"gestureDelay\": 500,\r\n \"naturalSwipe\": False,\r\n \"pointerOpacity\": 0.5,\r\n \"pointerColor\": '#d80000',\r\n \"pointerSize\": 15,\r\n \"pointerTolerance\": 120,\r\n },\r\n\r\n \"plugin_list\": [\r\n \"_static/plugin/leap/leap.js\",\r\n ],\r\n\r\n }\r\n\r\nMathJax\r\n--------------------\r\n\r\nhttps://github.com/hakimel/reveal.js#mathjax\r\n\r\n::\r\n\r\n html_theme_options = {\r\n\r\n \"math\": {\r\n \"mathjax\": 'http://cdn.mathjax.org/mathjax/latest/MathJax.js',\r\n # See http://docs.mathjax.org/en/latest/config-files.html\r\n \"config\": 'TeX-AMS_HTML-full'\r\n },\r\n\r\n \"plugin_list\": [\r\n \"_static/plugin/math/math.js\",\r\n ],\r\n\r\n }\r\n\r\n\r\nSetting with Javascript\r\n--------------------------\r\n\r\nIt is also possible to change the settings by using the Javascript.\r\n\r\n1. create 'mysettings.js'.\r\n\r\n ::\r\n\r\n // Turn autoSlide off\r\n Reveal.configure({ autoSlide: 0 });\r\n\r\n2. change conf.py\r\n\r\n ::\r\n\r\n html_static_path = ['_static']\r\n\r\n html_theme_options = {\r\n # loading custom js after RevealJs.initialize.\r\n \"customjs\": \"mysettings.js\",\r\n }\r\n\r\n\r\nRequirement\r\n=============\r\n* Python 2.6, 2.7, 3.3, 3.4, or later\r\n* Sphinx 1.2.x or later.\r\n\r\nUsing\r\n=============\r\n* `Reveal.js 3.0.0 `_\r\n* `jQuery 1.11.2 `_\r\n\r\nLicense\r\n=======\r\n\r\n* sphinxjp.themes.revealjs Licensed under the `MIT license `_ .\r\n* `reveal.js is licensed under the MIT licence `_.\r\n\r\nSee the LICENSE file for specific terms.\r\n\r\n.. |travis| image:: https://travis-ci.org/tell-k/sphinxjp.themes.revealjs.svg?branch=master\r\n :target: https://travis-ci.org/tell-k/sphinxjp.themes.revealjs\r\n\r\n.. |coveralls| image:: https://coveralls.io/repos/tell-k/sphinxjp.themes.revealjs/badge.png\r\n :target: https://coveralls.io/r/tell-k/sphinxjp.themes.revealjs\r\n :alt: coveralls.io\r\n\r\n.. |requires| image:: https://requires.io/github/tell-k/sphinxjp.themes.revealjs/requirements.svg?tag=v0.1.1\r\n :target: https://requires.io/github/tell-k/sphinxjp.themes.revealjs/requirements/?tag=v0.1.1\r\n :alt: requires.io\r\n\r\n.. |downloads| image:: https://img.shields.io/pypi/dm/sphinxjp.themes.revealjs.svg\r\n :target: http://pypi.python.org/pypi/sphinxjp.themes.revealjs/\r\n :alt: downloads\r\n\r\n.. |version| image:: https://img.shields.io/pypi/v/sphinxjp.themes.revealjs.svg\r\n :target: http://pypi.python.org/pypi/sphinxjp.themes.revealjs/\r\n :alt: latest version\r\n\r\n.. |license| image:: https://img.shields.io/pypi/l/sphinxjp.themes.revealjs.svg\r\n :target: http://pypi.python.org/pypi/sphinxjp.themes.revealjs/\r\n :alt: license\r\n\r\n\r\nAUTHORS\r\n=======\r\n\r\nSphinx template, css, packaging\r\n-------------------------------\r\n* tell-k \r\n\r\nHistory\r\n=======\r\n\r\n0.3.0(May 5, 2015)\r\n---------------------\r\n* Upgrade Reveal.js version to 3.0.0\r\n\r\n0.2.3(Jan 1, 2015)\r\n---------------------\r\n* Exclude test code from installed packages\r\n\r\n0.2.2 (Dec 31, 2014)\r\n---------------------\r\n* Drop Python-3.2 support #3\r\n* Remove bootstrap.py and buildout.cfg.\r\n* Support wheel format.\r\n* Change test runner(nose -> py.test).\r\n\r\n0.2.1 (Sep 20, 2014)\r\n---------------------\r\n* Fixed bug. \"default theme.conf can't work.#1\"\r\n\r\n0.2.0 (Jun 8, 2014)\r\n---------------------\r\n* Upgrade Reveal.js version to 2.6.2\r\n* Upgrade JQuery version to v1.11.1\r\n* Improved unittest.\r\n* Enrich the document.\r\n\r\n0.1.1 (Jan 1, 2014)\r\n---------------------\r\n* Add html_theme_options['plugin_list'].\r\n* Add tox test.\r\n* Python3 support.\r\n\r\n0.1.0 (Aug 25, 2013)\r\n---------------------\r\n* First release", "description_content_type": null, "docs_url": "https://pythonhosted.org/sphinxjp.themes.revealjs/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/tell-k/sphinxjp.themes.revealjs", "keywords": "sphinx,reStructuredText,theme,presentation", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "sphinxjp.themes.revealjs", "package_url": "https://pypi.org/project/sphinxjp.themes.revealjs/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/sphinxjp.themes.revealjs/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/tell-k/sphinxjp.themes.revealjs" }, "release_url": "https://pypi.org/project/sphinxjp.themes.revealjs/0.3.0/", "requires_dist": null, "requires_python": null, "summary": "A sphinx theme for generate reveal.js presentation. #sphinxjp", "version": "0.3.0" }, "last_serial": 1600261, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "1a540044c6baccecb283b3cdffa04e06", "sha256": "4b1f33ce7d6d18399e19215b8a2e163f2f620f91cc1e1e44d264ac341a5521c5" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.1.0.tar.gz", "has_sig": false, "md5_digest": "1a540044c6baccecb283b3cdffa04e06", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 608698, "upload_time": "2013-08-25T12:36:43", "url": "https://files.pythonhosted.org/packages/aa/1c/a84d135243faf9ac0a296acbb680232c2ef1e63103382d93fe0aa2a6bd99/sphinxjp.themes.revealjs-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "3e5b44bc508283d98047f21a71428a48", "sha256": "83c6e5d4c0a4c64778a3e12b40199694e79cd3f50bbd1f3c4b381a3bdbb7d12a" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.1.1.tar.gz", "has_sig": false, "md5_digest": "3e5b44bc508283d98047f21a71428a48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276216, "upload_time": "2014-01-01T01:53:59", "url": "https://files.pythonhosted.org/packages/ee/b7/8305d4a7d8aff488851657a67df95572495e1a2c69e5b4f16b40af5eba87/sphinxjp.themes.revealjs-0.1.1.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "12d7c2f501820df1b1836cadfad63157", "sha256": "d1b623554cfb65ee04e44181bb5cf0428d899e2c03c053bb054cfacca9c6f370" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.0.tar.gz", "has_sig": false, "md5_digest": "12d7c2f501820df1b1836cadfad63157", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1365981, "upload_time": "2014-06-08T02:45:32", "url": "https://files.pythonhosted.org/packages/ae/57/42d89e07f1b902f052fa9a525bfab9cef38d52ec5de8872045f1c01e1ac3/sphinxjp.themes.revealjs-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "df4c87a25a7dc8a6ff0e865ec1d29c96", "sha256": "fe11464d56c0f0bb79006fb23cbe3b40df60fc1b19872a3cf35ffd11312f4ee6" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.1.tar.gz", "has_sig": false, "md5_digest": "df4c87a25a7dc8a6ff0e865ec1d29c96", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2789325, "upload_time": "2014-09-20T06:54:57", "url": "https://files.pythonhosted.org/packages/65/33/c706eb961bd10ad76010bdf0b108ed49c046f2e643d54264d56263e0d612/sphinxjp.themes.revealjs-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "75c4f6cbaa4594bf13389cd47b9aa694", "sha256": "6409934a2733347fdef4c55219742440b8231132bf25155bf72737c6cdbd676c" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "75c4f6cbaa4594bf13389cd47b9aa694", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 298050, "upload_time": "2014-12-31T11:59:56", "url": "https://files.pythonhosted.org/packages/83/18/1b31d9483d0192398f8bb569f8bef7eb6548fd0e846c760d7756f2fbfdcb/sphinxjp.themes.revealjs-0.2.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "48d2460000e10483e46a48fe0f5d377a", "sha256": "6cc8ba725f3458348c32eafc059c454c4cb312274977e3c9006f8ecbfe7c147a" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.2.tar.gz", "has_sig": false, "md5_digest": "48d2460000e10483e46a48fe0f5d377a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 1362472, "upload_time": "2014-12-31T11:59:51", "url": "https://files.pythonhosted.org/packages/aa/db/c5cd81df0d91a0962a9599b19e700f3e140f44355b05543ce0af0997f287/sphinxjp.themes.revealjs-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "3baf245b48962c7662581dc629c025b9", "sha256": "2c713aa520782ab0a63428a1f4986cde93fdd7056a745354161c021c766c404b" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3baf245b48962c7662581dc629c025b9", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 294922, "upload_time": "2015-01-01T15:59:17", "url": "https://files.pythonhosted.org/packages/dc/6c/d86178dd749245c391e5d84e4e4c7297de3a9df9db6a71e726b0b6712f6a/sphinxjp.themes.revealjs-0.2.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1177307df20c19835a2be2eef01c1b2b", "sha256": "e1372de822b76720aeef352f389ce35fa266fb402a0df9376920fcb17f2b454c" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.2.3.tar.gz", "has_sig": false, "md5_digest": "1177307df20c19835a2be2eef01c1b2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2786002, "upload_time": "2015-01-01T15:59:12", "url": "https://files.pythonhosted.org/packages/47/77/32a68f2d01d9e5462503ae50e83e342dde5899142e4e507fd6af26ec7738/sphinxjp.themes.revealjs-0.2.3.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "016af14b0ec39ff2edd92da8e6f1ec1e", "sha256": "631914655ed37241a808452c1d95a0dfcef92c1c42cdcfb2f031a11cb0366689" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "016af14b0ec39ff2edd92da8e6f1ec1e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1637836, "upload_time": "2015-05-06T13:35:47", "url": "https://files.pythonhosted.org/packages/b4/8f/538bbbd5e1c63330eb8793d0e9c2faa466a7b82e2f8007a5c2e196e2c0d1/sphinxjp.themes.revealjs-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07e12c18d755e5c92663dbef72dfd8dc", "sha256": "293ea6a91bcb74a19648373f0194854ddd7757bb578407627c8ef73caaa9ed3c" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.3.0.tar.gz", "has_sig": false, "md5_digest": "07e12c18d755e5c92663dbef72dfd8dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5462188, "upload_time": "2015-05-06T13:35:39", "url": "https://files.pythonhosted.org/packages/69/ef/b386f35b6caf57f158da97d594df78f07eaf42fd0044b361fe5fd143238b/sphinxjp.themes.revealjs-0.3.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "016af14b0ec39ff2edd92da8e6f1ec1e", "sha256": "631914655ed37241a808452c1d95a0dfcef92c1c42cdcfb2f031a11cb0366689" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "016af14b0ec39ff2edd92da8e6f1ec1e", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 1637836, "upload_time": "2015-05-06T13:35:47", "url": "https://files.pythonhosted.org/packages/b4/8f/538bbbd5e1c63330eb8793d0e9c2faa466a7b82e2f8007a5c2e196e2c0d1/sphinxjp.themes.revealjs-0.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "07e12c18d755e5c92663dbef72dfd8dc", "sha256": "293ea6a91bcb74a19648373f0194854ddd7757bb578407627c8ef73caaa9ed3c" }, "downloads": -1, "filename": "sphinxjp.themes.revealjs-0.3.0.tar.gz", "has_sig": false, "md5_digest": "07e12c18d755e5c92663dbef72dfd8dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5462188, "upload_time": "2015-05-06T13:35:39", "url": "https://files.pythonhosted.org/packages/69/ef/b386f35b6caf57f158da97d594df78f07eaf42fd0044b361fe5fd143238b/sphinxjp.themes.revealjs-0.3.0.tar.gz" } ] }