{ "info": { "author": "Anton Agestam", "author_email": "msn@antonagestam.se", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3" ], "description": "django-text\n===========\n\n|Join the chat at https://gitter.im/antonagestam/django-text|\n|Get downloads at https://pypi.python.org/pypi/django-text|\n|See latest build status at https://travis-ci.org/antonagestam/django-text|\n|Coverage|\n\nIntuitive text editing for humans using Django.\n\n|The django-text toolbar|\n\nThis project is in early development, please test it out and report any bugs!\n\n\nInstallation\n------------\n\nInstall the package with pip.\n\n.. code:: shell\n\n $ pip install django-text\n\nAdd ``text`` to your installed packages.\n\n.. code:: python\n\n # settings.py\n\n INSTALLED_APPS = (\n # ...\n 'text',\n )\n\nAdd ``text.middleware.TextMiddleware`` and ``'text.middleware.ToolbarMiddleware'`` to your middleware classes.\n\n.. code:: python\n\n # settings.py\n\n MIDDLEWARE_CLASSES = (\n # ...\n 'text.middleware.TextMiddleware',\n 'text.middleware.ToolbarMiddleware',\n )\n\nMake sure these context processors are installed, they come with Django.\n\n.. code:: python\n\n # settings.py\n\n TEMPLATE_CONTEXT_PROCESSORS = (\n # ...\n 'django.contrib.auth.context_processors.auth',\n 'django.core.context_processors.request',\n )\n\nAppend ``text.urls`` to your urlpatterns in ``urls.py``.\n\n.. code:: python\n\n # urls.py\n\n from django.conf.urls import patterns, include, url\n\n from text.urls import urlpatterns as django_text_patterns\n \n \n urlpatterns = patterns('',\n url(r'^django_text/', include(django_text_patterns, namespace='django_text')),\n )\n\nRun ``migrate``.\n\n.. code:: shell\n\n $ python manage.py migrate\n\n\nUsage\n-----\n\nThe ``text`` tag\n~~~~~~~~~~~~~~~~\n\nAdd ``editable`` tags to your templates.\n\n.. code:: html\n\n {% load text %}\n\n

{% text \"header\" \"My Header\" %}

\n\n
\n {% text \"text_body\" %}\n
\n\nThe ``text`` tag takes a default text as the second argument. If no\ndefault text is passed, the name of the text node (i.e. the first\nargument) will be used if there is no corresponding text node in the\ndatabase.\n\nThe ``blocktext`` tag\n~~~~~~~~~~~~~~~~~~~~~\n\nYou can also use the ``blocktext`` tag that let's you wrap content\nto use as the default text.\n\n.. code:: html\n\n {% load text %}\n\n
\n

\n {% blocktext \"header\" %}\n Read My Awesome Text\n {% endblocktext %}\n

\n \n {% blocktext \"content\" %}\n Put your default text here!\n {% endblocktext %}\n
\n\nThe ``blocktext`` tags works with translation tags inside of it. So\nif you already have a translated site, you can wrap your content with\nthis tag and only add text nodes for some of the languages that you\nsupport.\n\nSpecifying content type\n~~~~~~~~~~~~~~~~~~~~~~~\n\nBoth the ``text`` and the ``blocktext`` tags support specifying\nthe content type of its default text. The choices are `\"html\"`,\n`\"markdown\"` and `\"text\"` which is the default.\n\n.. code:: html\n\n {% text \"html_node\" \"

Hello World!

\" \"html\" %}\n\n {% blocktext \"markdown_node\" \"markdown\" %}\n # Hello there,\n\n I can have markdown in my templates!\n {% endblocktext %}\n\nIf content type is not provided both will default to text.\n\nDisable instant updating\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nBy default the templatetags will wrap all text nodes with a span\nelement to enable \"instant updating\", if\n``TEXT_TOOLBAR_INSTANT_UPDATE`` is set to ``True``. Sometimes this\ncan cause trouble, for instance when you want to have editable\ntexts inside ```` or ``<meta>`` elements.\n\nYou can disable instant updating on per-node basis by setting the\ntemplatetag keyword argument ``instant_update`` to ``False``:\n\n.. code:: html\n\n <title>{% text \"title\" \"Welcome!\" instant_update=False %}\n \n \n {% blocktext \"block_title\" instant_update=False %}\n Welcome one, welcome all!\n {% endblocktext %}\n \n\nContent editing\n~~~~~~~~~~~~~~~\n\nThe toolbar allows you to edit texts directly on your pages if you're\nsigned in as staff and have the permission ``'text.change_text'`` or if\nyou're signed is as a superuser.\n\nMissing text nodes will be added to the database automatically when\ntheir template tags are rendered.\n\n\nSettings\n--------\n\n**AUTOPOPULATE\\_TEXT**\n\nDefault: ``True``\n\nSet to false to disable django-text from adding missing text nodes to\nthe database.\n\n**TEXT\\_TOOLBAR\\_ENABLED**\n\nDefault: ``True``\n\nSet to false to disable the toolbar interface.\n\n**TEXT\\_TOOLBAR\\_FORM\\_PREFIX**\n\nDefault: ``'djtext_form'``\n\nThis is passed to the toolbar form and can be changed to avoid name\nconflicts.\n\n**TEXT\\_TOOLBAR\\_INSTANT\\_UPDATE**\n\nDefault: ``True``\n\nSet to false to disable instant updating of the DOM when saving texts in\nthe toolbar.\n\n**TEXT\\_INLINE\\_WRAPPER**\n\nDefault: ``('', '')``\n\nA tuple of two that gets wrapped around texts in the template to enable\ninstant updating.\n\n**TEXT\\_INLINE\\_WRAPPER\\_CLASS**\n\nDefault: ``'dj_text_inline_wrapper'``\n\nChange this to change the class of the element that gets wrapped around\ntexts.\n\n\nContribution\n------------\n\nContribution is very welcome. Use\n`issues `__ to\nreport bugs and propose features. For pull requests to be accepted\nthey need to be well tested.\n\nRunning tests\n~~~~~~~~~~~~~\n\nInstall test dependencies.\n\n.. code:: shell\n\n $ brew install phantomjs\n $ pip install -r test-requirements.txt\n\nRun tests.\n\n.. code:: shell\n\n $ make test\n\nRun tests with coverage.\n\n.. code:: shell\n\n $ make test-coverage\n\n\nLicense\n-------\n\nCopyright (c) 2015 Anton Agestam. django-text is released under the MIT\nlicense. See the LICENSE file for more information and licenses for\nbundled code.\n\n.. |Join the chat at https://gitter.im/antonagestam/django-text| image:: https://badges.gitter.im/Join%20Chat.svg\n :target: https://gitter.im/antonagestam/django-text?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge\n.. |Get downloads at https://pypi.python.org/pypi/django-text| image:: https://img.shields.io/pypi/dm/django-text.svg\n :target: https://pypi.python.org/pypi/django-text\n.. |See latest build status at https://travis-ci.org/antonagestam/django-text| image:: https://travis-ci.org/antonagestam/django-text.svg?branch=master\n :target: https://travis-ci.org/antonagestam/django-text\n.. |The django-text toolbar| image:: /docs/django-text.gif\n.. |Coverage| image:: https://coveralls.io/repos/antonagestam/django-text/badge.svg?branch=master&service=github\n :target: https://coveralls.io/r/antonagestam/django-text?branch=master", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/antonagestam/django-text/", "keywords": null, "license": "The MIT License (MIT)", "maintainer": null, "maintainer_email": null, "name": "django-text", "package_url": "https://pypi.org/project/django-text/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/django-text/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/antonagestam/django-text/" }, "release_url": "https://pypi.org/project/django-text/1.7.6/", "requires_dist": null, "requires_python": null, "summary": "Intuitive text editing for humans using Django.", "version": "1.7.6" }, "last_serial": 2061928, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "409738aea6d820b66dff495039d4a625", "sha256": "e2ad95b85748181c5bb135ed263d502978fd8c59038249f3a0e2bf8a3fd390ac" }, "downloads": -1, "filename": "django-text-1.0.0.tar.gz", "has_sig": false, "md5_digest": "409738aea6d820b66dff495039d4a625", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2002, "upload_time": "2015-02-23T21:28:14", "url": "https://files.pythonhosted.org/packages/5f/43/a944c01397874f431e479729cf6731bd9cf1c4fbef33424014a392fcb1d8/django-text-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "d3c8bde04d60a34d53e1d7f0352d29d0", "sha256": "ca891a940eadada6dd8fd4a9f8a9fbd1aaa90fff9126e4c21bb1ca466bc6fddf" }, "downloads": -1, "filename": "django-text-1.0.1.tar.gz", "has_sig": false, "md5_digest": "d3c8bde04d60a34d53e1d7f0352d29d0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 2676, "upload_time": "2015-02-23T22:03:06", "url": "https://files.pythonhosted.org/packages/3a/c4/aef25c811bdb9f464c907992c8e1b8fbef85c100450bf5fc6eaecb7b97c2/django-text-1.0.1.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "ec0c9c682c2fc2a27c275f22c68f024e", "sha256": "d7743706a2d336765b2b44d703d33e6db3e38523fb0161b0f6ec15ab93bb9f5e" }, "downloads": -1, "filename": "django-text-1.0.3.tar.gz", "has_sig": false, "md5_digest": "ec0c9c682c2fc2a27c275f22c68f024e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49909, "upload_time": "2015-02-24T01:27:22", "url": "https://files.pythonhosted.org/packages/b6/47/4693f71731d7e7e764d02087205b283eed958f8fe3a715bd2ae453445044/django-text-1.0.3.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "1c645439b84bef0d3c3ff89e9458515f", "sha256": "6d4b07d15ed5dd71e3158ef951c8fc16593c52fe9ed1a0fe9e714178d1aa3fc3" }, "downloads": -1, "filename": "django-text-1.1.0.tar.gz", "has_sig": false, "md5_digest": "1c645439b84bef0d3c3ff89e9458515f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50622, "upload_time": "2015-02-24T10:16:21", "url": "https://files.pythonhosted.org/packages/e8/08/a586270276ab1221c2aabde08298bd4be458e90dd143cfd5148bc7aa26b6/django-text-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "7c4e9730c0d9a0e6a1874f379f6a6288", "sha256": "7bf3434cba072c650380787336b4019e1969dea95874b4b4f12a99b01114f281" }, "downloads": -1, "filename": "django-text-1.1.1.tar.gz", "has_sig": false, "md5_digest": "7c4e9730c0d9a0e6a1874f379f6a6288", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50824, "upload_time": "2015-02-24T17:39:46", "url": "https://files.pythonhosted.org/packages/81/c3/faf96f94b4e242921760a98da01b637d27f5bfdd5fa82ea4a4a866cf5b71/django-text-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "86934d8c558b3fdedf3b9905353752a3", "sha256": "6059318fa571e3ac5c6ce785be50f1a5bec8abed03c5b81dfb206148158fa6c4" }, "downloads": -1, "filename": "django-text-1.1.2.tar.gz", "has_sig": false, "md5_digest": "86934d8c558b3fdedf3b9905353752a3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50848, "upload_time": "2015-02-24T18:32:12", "url": "https://files.pythonhosted.org/packages/59/b6/e85f830c5e5cbc54e853ff1878c7b1dc588120f09afdd4cbff9238ddb8db/django-text-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "2a76fe1fc28b5ed88d9865454083a797", "sha256": "106225542cfd4766c96f3f4802f525b9ea33aea93d24c391401c04364b22cea9" }, "downloads": -1, "filename": "django-text-1.2.0.tar.gz", "has_sig": false, "md5_digest": "2a76fe1fc28b5ed88d9865454083a797", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86169, "upload_time": "2015-02-25T19:05:00", "url": "https://files.pythonhosted.org/packages/60/29/25ba72ea187d85062e88876403843984adcfedbee6ecbf4595770d2cf0f4/django-text-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "6d786ddecc99a046f9b6809d000909ee", "sha256": "d38df766f8f2b6eaa78e839d2caa9d14373af856c70f18c2f1a810dc0a543514" }, "downloads": -1, "filename": "django-text-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6d786ddecc99a046f9b6809d000909ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86276, "upload_time": "2015-02-25T22:48:53", "url": "https://files.pythonhosted.org/packages/1b/ec/e079687b836bcdf6835db3419559bf91860496295e814a3a5c5946b664ff/django-text-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "0e5b91b7d37fdafd6252a1c083c04a6f", "sha256": "75714a2f3fb754f2f43dd6c996c4f1621bdf64901576ddfe55fde8f649caa711" }, "downloads": -1, "filename": "django-text-1.2.2.tar.gz", "has_sig": false, "md5_digest": "0e5b91b7d37fdafd6252a1c083c04a6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86275, "upload_time": "2015-02-25T22:52:00", "url": "https://files.pythonhosted.org/packages/6c/94/8a91f05009e80f2dee8f8fd0cdc8fb861e9ba5b83a538376d18d03362484/django-text-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "6f25b8ef046c6f60a9abe95dadbf419a", "sha256": "f9530a700d6aa4a77442889fbd3524cfc7159e5f6c92b5e24e11b20f96c577aa" }, "downloads": -1, "filename": "django-text-1.2.3.tar.gz", "has_sig": false, "md5_digest": "6f25b8ef046c6f60a9abe95dadbf419a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86420, "upload_time": "2015-02-25T23:26:58", "url": "https://files.pythonhosted.org/packages/30/b1/89cc43d035d161f57880192b5ac9db548445c43c12d1066a03eaf0e8721b/django-text-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "01aaa83f43553f17def4e2f9f2fbb1e1", "sha256": "7720427b2ce84187b9dcbcf9e3d23b169c8a4a4ad6058fea7a5b3989db9a75ea" }, "downloads": -1, "filename": "django-text-1.2.4.tar.gz", "has_sig": false, "md5_digest": "01aaa83f43553f17def4e2f9f2fbb1e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86165, "upload_time": "2015-02-26T11:24:01", "url": "https://files.pythonhosted.org/packages/a0/ba/54db2f5c2da395006430c5d99754b564c34d2d886c3dac6defce68e660c6/django-text-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "300c1213a4e4159230151b4a99256682", "sha256": "251c343443bd453b7c9643e0e96c6d41dd843498809fd37e940426d2ac6e2b82" }, "downloads": -1, "filename": "django-text-1.2.5.tar.gz", "has_sig": false, "md5_digest": "300c1213a4e4159230151b4a99256682", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86631, "upload_time": "2015-02-26T11:35:02", "url": "https://files.pythonhosted.org/packages/43/ca/aa12d0f85a4585657cf0b14c8f20537f01f403f6f2800e152508e64ebb74/django-text-1.2.5.tar.gz" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "e92106089ba27bfec2398d1bb428aa8b", "sha256": "94585e53bdcfe359b9adebffe297451d8da8ea0ad0dc8ee79c640c85ecff2851" }, "downloads": -1, "filename": "django-text-1.2.6.tar.gz", "has_sig": false, "md5_digest": "e92106089ba27bfec2398d1bb428aa8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86700, "upload_time": "2015-02-26T17:44:29", "url": "https://files.pythonhosted.org/packages/b2/63/be91076de6ea012537a6ca66b4a0c892cc1375dfec83eb3fe95dd247bbaa/django-text-1.2.6.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "7f829f1c41136e100eb0bd61f3a3432b", "sha256": "e84958b6860dd03d9ea9cf44a47aa2bfe0b9743be5321d5f00cb928168f47e20" }, "downloads": -1, "filename": "django-text-1.3.0.tar.gz", "has_sig": false, "md5_digest": "7f829f1c41136e100eb0bd61f3a3432b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 86793, "upload_time": "2015-03-03T22:24:47", "url": "https://files.pythonhosted.org/packages/0f/45/0622b1c57c56a1320ac2ab09dfbdfb266f8bcedbc19db52fc80017523ac0/django-text-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "77fbf41b3441f42ee2b4857331d01fea", "sha256": "4189ef74bb4229bcb1438d8444084502d077c07b7f97063f5dd16ada9ed3c798" }, "downloads": -1, "filename": "django-text-1.4.0.tar.gz", "has_sig": false, "md5_digest": "77fbf41b3441f42ee2b4857331d01fea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48208, "upload_time": "2015-03-04T20:18:34", "url": "https://files.pythonhosted.org/packages/67/d0/d7a53e0f8c2f004ec3bada075bb3c19539d69e78c56497555fc2f194ec2a/django-text-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "0bde0d5bd4a9f8f612cb3d69c66ff8c1", "sha256": "04d7dbb4f09c8e58f864783484d45da69c46a7229e885ac1f58eb6e527303631" }, "downloads": -1, "filename": "django-text-1.5.0.tar.gz", "has_sig": false, "md5_digest": "0bde0d5bd4a9f8f612cb3d69c66ff8c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61210, "upload_time": "2015-03-06T22:03:20", "url": "https://files.pythonhosted.org/packages/9d/ca/d73b6a6d92e25436156bc95e867561ccbe5516b0f92aafbef55f7b7b44fc/django-text-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "e8eceab486a4c172588be67dbc21139b", "sha256": "f2771096be9c74a9c11dc03fda39ab1a6b3d7451f0bb066cd2273691e6d74e92" }, "downloads": -1, "filename": "django-text-1.5.1.tar.gz", "has_sig": false, "md5_digest": "e8eceab486a4c172588be67dbc21139b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61669, "upload_time": "2015-03-07T15:44:26", "url": "https://files.pythonhosted.org/packages/5f/5c/40ec7aff5b9d7eae3b2e98e105cb784e4969ec71e0a52dfcbc827b429be8/django-text-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "7f118a096ebcb323fbff0bb2cf3beee8", "sha256": "7731a31f81cb6e8ce9354c8bad77c0b32cf95093e33ec373b44d156fc4ece353" }, "downloads": -1, "filename": "django-text-1.5.2.tar.gz", "has_sig": false, "md5_digest": "7f118a096ebcb323fbff0bb2cf3beee8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61831, "upload_time": "2015-03-08T18:37:45", "url": "https://files.pythonhosted.org/packages/d2/57/a41b43dbcf51f200b94f57d006a1be2651ece3cd78566a21f0b6f5491cfc/django-text-1.5.2.tar.gz" } ], "1.5.3": [ { "comment_text": "", "digests": { "md5": "0a5d5fca3263475f1fe7c64b1b562c28", "sha256": "8d660bbf1c741c3b876df50881f2bfeb6f04f7ff980fdbf57cf19002518d7228" }, "downloads": -1, "filename": "django-text-1.5.3.tar.gz", "has_sig": false, "md5_digest": "0a5d5fca3263475f1fe7c64b1b562c28", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61813, "upload_time": "2015-03-08T23:45:34", "url": "https://files.pythonhosted.org/packages/0a/eb/beed5f60e27fd64861f9844fd46ffe3e26f756c01a7af6d83b0bf1662b04/django-text-1.5.3.tar.gz" } ], "1.5.4": [ { "comment_text": "", "digests": { "md5": "e5b31ecc692f0dac115e423c6c81737d", "sha256": "8072899244b6a8aea6deeec49ab9e0e40dd0851a777fd59cbdc5083e2a3e0e5c" }, "downloads": -1, "filename": "django-text-1.5.4.tar.gz", "has_sig": false, "md5_digest": "e5b31ecc692f0dac115e423c6c81737d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64376, "upload_time": "2015-03-09T22:38:56", "url": "https://files.pythonhosted.org/packages/1f/ff/6d79cab96b263003592ef5edc454fab0cd45ac3ac08342200bf2e30f9fe7/django-text-1.5.4.tar.gz" } ], "1.5.5": [ { "comment_text": "", "digests": { "md5": "05302c195cf47a0dbb8fa2fe418861b7", "sha256": "6090af01855b60b103b30a5d1629b573cb1862d59a50080ea94917d5858a64b2" }, "downloads": -1, "filename": "django-text-1.5.5.tar.gz", "has_sig": false, "md5_digest": "05302c195cf47a0dbb8fa2fe418861b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64656, "upload_time": "2015-03-22T18:32:09", "url": "https://files.pythonhosted.org/packages/9c/2e/f45c74f0acb6f656f45dd7bd2eab1f1d08f80b58a9c731f4e5399fff96da/django-text-1.5.5.tar.gz" } ], "1.5.6": [ { "comment_text": "", "digests": { "md5": "68544d5cedd777d517f300a16d5f3e88", "sha256": "ee9f0de8660064954a1c52e133139d182750cc6675b5d1d484dff9d241b41002" }, "downloads": -1, "filename": "django-text-1.5.6.tar.gz", "has_sig": false, "md5_digest": "68544d5cedd777d517f300a16d5f3e88", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64677, "upload_time": "2015-03-22T19:05:17", "url": "https://files.pythonhosted.org/packages/c4/79/80adc2e7ea456bfe17ac03d69260be20bd439bbba714766cfff4e28cb4b2/django-text-1.5.6.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "6a7c532f3225670fef6401bdd289672b", "sha256": "d2fa1e81274e259d7c4f6fe2e5c5f042baba01ec3baf04adbde7bb733bba4771" }, "downloads": -1, "filename": "django-text-1.6.0.tar.gz", "has_sig": false, "md5_digest": "6a7c532f3225670fef6401bdd289672b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64966, "upload_time": "2015-04-20T20:51:50", "url": "https://files.pythonhosted.org/packages/21/0a/5eb20a2f8799275e3bd490506a15f01a89d43713bb035cc0923d100d2be2/django-text-1.6.0.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "6aae14f72e12f2905ccb3e5928de60b3", "sha256": "bec064c34d31b89a625e2a1e9744d7393dcb980dc2a4b673f87f1e30e848a24d" }, "downloads": -1, "filename": "django-text-1.7.0.tar.gz", "has_sig": false, "md5_digest": "6aae14f72e12f2905ccb3e5928de60b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 66919, "upload_time": "2015-12-20T14:35:59", "url": "https://files.pythonhosted.org/packages/62/93/d39aba76c14e4726eeae0a00076e758a09cb699893448c5426f61f338d71/django-text-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "417a5ad68473a53b63ef2e5676734292", "sha256": "f25189442ba921d8735a26e756259b25b5cddabba22ff43b60a236a7864c7d77" }, "downloads": -1, "filename": "django_text-1.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "417a5ad68473a53b63ef2e5676734292", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 84957, "upload_time": "2015-12-21T00:07:36", "url": "https://files.pythonhosted.org/packages/80/1e/8412d444eae8b8809b866bd282cd0f39381853a7ad5674910d38ec577ad2/django_text-1.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "32e025df1a21fd39f384006f7dfa5702", "sha256": "086662e43b10c4981182dd967166ec78260fe3552adbfe24400aa1978f73c5c2" }, "downloads": -1, "filename": "django-text-1.7.1.tar.gz", "has_sig": false, "md5_digest": "32e025df1a21fd39f384006f7dfa5702", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67209, "upload_time": "2015-12-21T00:07:12", "url": "https://files.pythonhosted.org/packages/16/94/5961cf86a14920794efceaee226e9d770ca0dbb1711fb99ae7f2b7e3756b/django-text-1.7.1.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "ea0fc5b79f183dd4955bbe6efb2a990c", "sha256": "66a183e12ccd3526d1a4276f2f74fe5989db2380c709b13c148341d6a870da99" }, "downloads": -1, "filename": "django_text-1.7.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ea0fc5b79f183dd4955bbe6efb2a990c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 84981, "upload_time": "2015-12-21T00:12:29", "url": "https://files.pythonhosted.org/packages/db/91/72cac62f5451c3e6566a5616c8c5ce61cbc83c25fdbb848520dc53943a4b/django_text-1.7.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0266517c352348278f7ed54504528bfe", "sha256": "49c14d28625e6388801c483ae8cc9bd5e44d70e9f9ecc9cda866dafe38db7298" }, "downloads": -1, "filename": "django-text-1.7.2.tar.gz", "has_sig": false, "md5_digest": "0266517c352348278f7ed54504528bfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 67230, "upload_time": "2015-12-21T00:12:20", "url": "https://files.pythonhosted.org/packages/7f/5a/c33d0294f59df9027c7e8796717e8074dfc800dd575614cb14d5cc7a084d/django-text-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "fd787da5f0379bcb97666ff0ca304f74", "sha256": "6ecf0f4c9683f38d47de01f78fa01ff3266668cd8484ffb370d0e453dd9485b2" }, "downloads": -1, "filename": "django_text-1.7.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fd787da5f0379bcb97666ff0ca304f74", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 71297, "upload_time": "2016-03-26T06:22:51", "url": "https://files.pythonhosted.org/packages/6f/03/a3c14a8fb5a653263f4a03b8d4de77f9d04e4134b628042ff5d5b7b77234/django_text-1.7.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5fedeb93fac451288a9bda54cfdd9766", "sha256": "8e12f526cc44a5fd4ccdf74267d89edf7cbbcc4212330e424c5d403c25832a2d" }, "downloads": -1, "filename": "django-text-1.7.3.tar.gz", "has_sig": false, "md5_digest": "5fedeb93fac451288a9bda54cfdd9766", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 56939, "upload_time": "2016-03-26T06:22:40", "url": "https://files.pythonhosted.org/packages/2e/5e/00ea82b1f53d9aa7b033980ddc0cb5b2601fe9a631e2af079212d117f6cd/django-text-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "80ce3551ebf3adcf8c276073708eac7c", "sha256": "0a0601147aa68e7f479efe1a045af2044e3403694735ca8268b21d1c8bfc0d39" }, "downloads": -1, "filename": "django_text-1.7.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "80ce3551ebf3adcf8c276073708eac7c", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 71608, "upload_time": "2016-03-26T06:57:34", "url": "https://files.pythonhosted.org/packages/14/f4/4110a342d5e89b406bafcf719aea2c2d4bc4acb70951e579f64d61e6fcf9/django_text-1.7.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "79ce29e5c247f6a036588f1b57c2a77d", "sha256": "56c42c2ae33674d38829e744e9b12382ca7e6167196e5d00161ffd65cbff9ebb" }, "downloads": -1, "filename": "django-text-1.7.4.tar.gz", "has_sig": false, "md5_digest": "79ce29e5c247f6a036588f1b57c2a77d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57044, "upload_time": "2016-03-26T06:57:28", "url": "https://files.pythonhosted.org/packages/d2/21/dca239eb761a87d9817c2f67153fefc7a86f7ced87bd2341db32099c72bd/django-text-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "30a81fce10831636f8d78eafa7408fb6", "sha256": "d1eecb150695829b0c5b77d95b68b8f6cf664c1e2ffba20efd08b619a43218e9" }, "downloads": -1, "filename": "django_text-1.7.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "30a81fce10831636f8d78eafa7408fb6", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 71685, "upload_time": "2016-03-29T18:08:36", "url": "https://files.pythonhosted.org/packages/5a/bc/da27e371d07dbfe9daaa7dcc9f201e6276d321e5283cdf7ddcc64e70aa14/django_text-1.7.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c1fabb2ca4903c45d03d292afca2b2b3", "sha256": "a4a5265a28e1e15fd34c58192e817a36ba17fee700130526a9fab50fb8cfaab5" }, "downloads": -1, "filename": "django-text-1.7.5.tar.gz", "has_sig": false, "md5_digest": "c1fabb2ca4903c45d03d292afca2b2b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 57108, "upload_time": "2016-03-29T18:08:08", "url": "https://files.pythonhosted.org/packages/be/89/7a3b946f7a2f8940a967a7990378d2d2ca97dbe792bc18b15544842c108b/django-text-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "e30ff15784e1db2af7c33429d424ae6d", "sha256": "9db90fe89810350a65d618945f82adf92350a108f0cc5f18fc616ceb93eadd32" }, "downloads": -1, "filename": "django_text-1.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e30ff15784e1db2af7c33429d424ae6d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 75152, "upload_time": "2016-04-13T14:22:45", "url": "https://files.pythonhosted.org/packages/90/8e/df16fa081e84901a3905a9c96e64a8bbdc243b0f4851593828a5ed2d4381/django_text-1.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86ede2abef1b38c3fc77a065a481a712", "sha256": "9ba5b321432822db00d2a2fe393968011c39397a639b902954186a4d84d4d553" }, "downloads": -1, "filename": "django-text-1.7.6.tar.gz", "has_sig": false, "md5_digest": "86ede2abef1b38c3fc77a065a481a712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59084, "upload_time": "2016-04-13T14:22:17", "url": "https://files.pythonhosted.org/packages/e2/58/59a4dc9dc9c0f83133fba646cf26957a936bd8a65a8bcae4a56a1cc6855d/django-text-1.7.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "e30ff15784e1db2af7c33429d424ae6d", "sha256": "9db90fe89810350a65d618945f82adf92350a108f0cc5f18fc616ceb93eadd32" }, "downloads": -1, "filename": "django_text-1.7.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e30ff15784e1db2af7c33429d424ae6d", "packagetype": "bdist_wheel", "python_version": "3.5", "requires_python": null, "size": 75152, "upload_time": "2016-04-13T14:22:45", "url": "https://files.pythonhosted.org/packages/90/8e/df16fa081e84901a3905a9c96e64a8bbdc243b0f4851593828a5ed2d4381/django_text-1.7.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "86ede2abef1b38c3fc77a065a481a712", "sha256": "9ba5b321432822db00d2a2fe393968011c39397a639b902954186a4d84d4d553" }, "downloads": -1, "filename": "django-text-1.7.6.tar.gz", "has_sig": false, "md5_digest": "86ede2abef1b38c3fc77a065a481a712", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 59084, "upload_time": "2016-04-13T14:22:17", "url": "https://files.pythonhosted.org/packages/e2/58/59a4dc9dc9c0f83133fba646cf26957a936bd8a65a8bcae4a56a1cc6855d/django-text-1.7.6.tar.gz" } ] }