{ "info": { "author": "Carl Meyer", "author_email": "carl@oddbird.net", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Django", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5" ], "description": "===============\ndjango-markitup\n===============\n\n.. image:: https://img.shields.io/pypi/v/django-markitup.svg\n :target: https://pypi.python.org/pypi/django-markitup/\n :alt: Latest PyPI version\n\n.. image:: https://img.shields.io/pypi/dm/django-markitup.svg\n :target: https://pypi.python.org/pypi/django-markitup/\n :alt: Number of PyPI downloads\n\n.. image:: https://img.shields.io/pypi/pyversions/django-markitup.svg\n :target: https://pypi.python.org/pypi/django-markitup/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zsiciarz/django-markitup.svg\n :target: https://travis-ci.org/zsiciarz/django-markitup\n\nA Django reusable application for end-to-end markup handling. Includes:\n\n* Easy integration of the `MarkItUp!`_ markup editor widget (by Jay\n Salvat) in Django projects, with server-side support for MarkItUp!'s\n AJAX preview. Plug in MarkItUp! via form widget or template tags.\n\n* ``MarkupField``, a ``TextField`` that automatically renders and\n stores both its raw and rendered values in the database, on the\n assumption that disk space is cheaper than CPU cycles in a web\n application.\n\n.. _MarkItUp!: http://markitup.jaysalvat.com/\n\n\nInstallation\n============\n\nInstall from PyPI with ``easy_install`` or ``pip``::\n\n pip install django-markitup\n\nTo use ``django-markitup`` in your Django project:\n\n 1. Add ``'markitup'`` to your ``INSTALLED_APPS`` setting.\n\n 2. Make the contents of the ``markitup/static/markitup`` directory\n available at ``STATIC_URL/markitup``; the simplest way is via\n `django.contrib.staticfiles`_.\n\n 3. Set `the MARKITUP_FILTER setting`_.\n\n 4. If you want to use AJAX-based preview, add\n ``url(r'^markitup/', include('markitup.urls'))`` in your root URLconf.\n\n.. _django.contrib.staticfiles: https://docs.djangoproject.com/en/dev/howto/static-files/\n\n\nDependencies\n------------\n\n``django-markitup`` 3.x requires `Django`_ 1.8 or later and Python 2.7+ or 3.4+.\n\n``django-markitup`` 2.x requires `Django`_ 1.4 or later and Python 2.6+ or 3.3+.\n\n``django-markitup`` 1.x requires `Django`_ 1.3 or later and Python 2.5 or later.\n\n`MarkItUp!`_ is not an external dependency; it is bundled with\n``django-markitup``.\n\n.. _Django: http://www.djangoproject.com/\n\nUsing the MarkItUp! widget\n==========================\n\nThe MarkItUp! widget lives at ``markitup.widgets.MarkItUpWidget``, and\ncan be used like any other Django custom widget.\n\nTo assign it to a form field::\n\n from markitup.widgets import MarkItUpWidget\n\n class MyForm(forms.Form):\n content = forms.CharField(widget=MarkItUpWidget())\n\nWhen this form is displayed on your site, you must include the form media\nsomewhere on the page using ``{{ form.media }}``, or the MarkItUpWidget will\nhave no effect. By default ``{{ form.media }}`` also includes the jQuery\nlibrary based on your `JQUERY_URL`_ setting. To prevent including jQuery, set\nthe `JQUERY_URL`_ setting to ``None``.\n\nMarkItUpWidget accepts three optional keyword arguments:\n``markitup_set`` and ``markitup_skin`` (see `Choosing a MarkItUp!\nbutton set and skin`_) and ``auto_preview`` (to override the value of\nthe `MARKITUP_AUTO_PREVIEW`_ setting).\n\nTo use the widget in the Django admin::\n\n from markitup.widgets import AdminMarkItUpWidget\n\n class MyModelAdmin(admin.ModelAdmin):\n ...\n def formfield_for_dbfield(self, db_field, request, **kwargs):\n if db_field.name == 'content':\n kwargs['widget'] = AdminMarkItUpWidget()\n return super(MyModelAdmin, self).formfield_for_dbfield(db_field, request, **kwargs)\n\nYou can also use the formfield_overrides attribute of the ModelAdmin, which\nis simpler but only allows setting the widget per field type (so it isn't\npossible to use the MarkItUpWidget on one TextField in a model and not\nanother)::\n\n from markitup.widgets import AdminMarkItUpWidget\n\n class MyModelAdmin(admin.ModelAdmin):\n formfield_overrides = {models.TextField: {'widget': AdminMarkItUpWidget}}\n\nIf you use `MarkupField`_ in your model, it is rendered in the admin\n with an ``AdminMarkItUpWidget`` by default.\n\nUsing MarkItUp! via templatetags\n================================\n\nIn some cases it may be inconvenient to use ``MarkItUpWidget`` (for\ninstance, if the form in question is defined in third-party code). For\nthese cases, django-markitup provides template tags to achieve the\nsame effect purely in templates.\n\nFirst, load the django-markitup template tag library::\n\n {% load markitup_tags %}\n\nThen include the MarkItUp! CSS and Javascript in the of your page::\n\n {% markitup_media %}\n\nBy default the ``markitup_media`` tag also includes jQuery, based on the value\nof your `JQUERY_URL`_ setting, with a fallback to the version hosted at Google\nAjax APIs. To suppress the inclusion of jQuery (if you are already including it\nyourself), set the `JQUERY_URL`_ setting to ``None``.\n\nIf you prefer to link CSS and Javascript from different locations, the\n``markitup_media`` tag can be replaced with two separate tags,\n``markitup_css`` and ``markitup_js``. ``markitup_js`` accepts a\nparameter to suppress jQuery inclusion, just like\n``markitup_media``. (Note that jQuery must be included in your\ntemplate before the ``markitup_editor`` tag is used).\n\nLast, use the ``markitup_editor`` template tag to apply the MarkItUp!\neditor to a textarea in your page. It accepts one argument, the HTML\nid of the textarea. If you are rendering the textarea in the usual way\nvia a Django form object, that id value is available as\n``form.fieldname.auto_id``::\n\n {{ form.fieldname }}\n\n {% markitup_editor form.fieldname.auto_id %}\n\nYou can use ``markitup_editor`` on as many different textareas as you\nlike.\n\n``markitup_editor`` accepts an optional second parameter, which can be\neither ``\"auto_preview\"`` or ``\"no_auto_preview\"`` to override the\nvalue of the `MARKITUP_AUTO_PREVIEW`_ setting.\n\nThe actual HTML included by these templatetags is defined by the\ncontents of the templates ``markitup/include_css.html``,\n``markitup/include_js.html``, and ``markitup/editor.html``. You can\noverride these templates in your project and customize them however\nyou wish.\n\nMarkupField\n===========\n\nYou can apply the MarkItUp! editor control to any textarea using the\nabove techniques, and handle the markup on the server side however you\nprefer.\n\nFor a seamless markup-handling solution, django-markitup also provides\na ``MarkupField`` model field that automatically renders and stores\nboth its raw and rendered values in the database, using the value of\n`the MARKITUP_FILTER setting`_ to parse the markup into HTML.\n\nA ``MarkupField`` is easy to add to any model definition::\n\n from django.db import models\n from markitup.fields import MarkupField\n\n class Article(models.Model):\n title = models.CharField(max_length=100)\n body = MarkupField()\n\n``MarkupField`` automatically creates an extra non-editable field\n``_body_rendered`` to store the rendered markup. This field doesn't\nneed to be accessed directly; see below.\n\nAccessing a MarkupField on a model\n----------------------------------\n\nWhen accessing an attribute of a model that was declared as a\n``MarkupField``, a ``Markup`` object is returned. The ``Markup``\nobject has two attributes:\n\n``raw``:\n The unrendered markup.\n``rendered``:\n The rendered HTML version of ``raw`` (read-only).\n\nThis object also has a ``__unicode__`` method that calls\n``django.utils.safestring.mark_safe`` on ``rendered``, allowing\n``MarkupField`` attributes to appear in templates as rendered HTML\nwithout any special template tag or having to access ``rendered``\ndirectly.\n\nAssuming the ``Article`` model above::\n\n >>> a = Article.objects.all()[0]\n >>> a.body.raw\n '*fancy*'\n >>> a.body.rendered\n '

fancy

'\n >>> print(unicode(a.body))\n

fancy

\n >>> a.body.render_with('markitup.renderers.render_rest')\n >>> print(unicode(a.body))\n '
\\n

fancy

\\n
\\n'\n\nAssignment to ``a.body`` is equivalent to assignment to\n``a.body.raw``.\n\n.. note::\n a.body.rendered is only updated when a.save() or a.body.render_with()\n is called\n\nEditing a MarkupField in a form\n-------------------------------\n\nWhen editing a ``MarkupField`` model attribute in a ``ModelForm``\n(i.e. in the Django admin), you'll generally want to edit the original\nmarkup and not the rendered HTML. Because the ``Markup`` object\nreturns rendered HTML from its __unicode__ method, it's necessary to\nuse the ``MarkupTextarea`` widget from the ``markupfield.widgets``\nmodule, which knows to return the raw markup instead.\n\nBy default, a ``MarkupField`` uses the MarkItUp! editor control in the\nadmin (via the provided ``AdminMarkItUpWidget``), but a plain\n``MarkupTextarea`` in other forms. If you wish to use the MarkItUp!\neditor with this ``MarkupField`` in your own form, you'll need to use\nthe provided ``MarkItUpWidget`` rather than ``MarkupTextarea``.\n\nIf you apply your own custom widget to the form field representing a\n``MarkupField``, your widget must either inherit from\n``MarkupTextarea`` or its ``render`` method must convert its ``value``\nargument to ``value.raw``.\n\n\nChoosing a MarkItUp! button set and skin\n========================================\n\nMarkItUp! allows the toolbar button-set to be customized in a\nJavascript settings file. By default, django-markitup uses the\n\"default\" set (meant for HTML editing). Django-markitup also includes\nbasic \"markdown\" and \"textile\" sets (these are available from `the\nMarkItUp site `_), as well as a\n\"restructuredtext\" set.\n\nTo use an alternate set, assign the ``MARKITUP_SET`` setting a URL path\n(absolute or relative to ``STATIC_URL``) to the set directory. For\ninstance, to use the \"markdown\" set included with django-markitup::\n\n MARKITUP_SET = 'markitup/sets/markdown/'\n\nMarkItUp! skins can be specified in a similar manner. Both \"simple\"\nand \"markitup\" skins are included, by default \"simple\" is used. To\nuse the \"markitup\" skin instead::\n\n MARKITUP_SKIN = 'markitup/skins/markitup/'\n\nNeither of these settings has to refer to a location inside\ndjango-markitup's media. You can define your own sets and skins and\nstore them anywhere, as long as you set the MARKITUP_SET and\nMARKITUP_SKIN settings to the appropriate URLs.\n\nSet and skin may also be chosen on a per-widget basis by passing the\n``markitup_set`` and ``markitup_skin`` keyword arguments to\nMarkItUpWidget.\n\n\nUsing AJAX preview\n==================\n\nIf you've included ``markitup.urls`` in your root URLconf (as\ndemonstrated above under `Installation`_), all you need to enable\nserver-side AJAX preview is `the MARKITUP_FILTER setting`_.\n\nThe rendered HTML content is displayed in the Ajax preview wrapped by\nan HTML page generated by the ``markitup/preview.html`` template; you\ncan override this template in your project and customize the preview\noutput.\n\n.. note::\n\n Using the MarkItUpWidget or ``markitup_editor`` template tag will\n automatically set the ``previewParserPath`` in your MarkItUp! set\n to ``reverse('markitup_preview')``, if ``markitup.urls`` is\n included in your URLconf.\n\nThe MARKITUP_FILTER setting\n===========================\n\nThe ``MARKITUP_FILTER`` setting defines how markup is transformed into\nHTML on your site. This setting is only required if you are using\n``MarkupField`` or MarkItUp! AJAX preview.\n\n``MARKITUP_FILTER`` must be a two-tuple. The first element must be a\nstring, the Python dotted path to a markup filter function. This\nfunction should accept markup as its first argument and return HTML.\nIt may accept other keyword arguments as well. You may parse your\nmarkup using any method you choose, as long as you can wrap it in a\nfunction that meets these criteria.\n\nThe second element must be a dictionary of keyword arguments to pass\nto the filter function. The dictionary may be empty.\n\nFor example, if you have python-markdown installed, you could use it\nlike this::\n\n MARKITUP_FILTER = ('markdown.markdown', {'safe_mode': True})\n\nAlternatively, you could use the \"textile\" filter provided by Django\nlike this::\n\n MARKITUP_FILTER = ('django.contrib.markup.templatetags.markup.textile', {})\n\n(The textile filter function doesn't accept keyword arguments, so the\nkwargs dictionary must be empty in this case.)\n\n``django-markitup`` provides one sample rendering function,\n``render_rest`` in the ``markitup.renderers`` module.\n\nrender_markup template filter\n=============================\n\nIf you have set `the MARKITUP_FILTER setting`_ and use the MarkItUp!\nAJAX preview, but don't wish to store rendered markup in the database\nwith `MarkupField`_ (or are using third-party models that don't use\n`MarkupField`_), you may want a convenient way to render content in\nyour templates using your MARKITUP_FILTER function. For this you can\nuse the ``render_markup`` template filter::\n\n {% load markitup_tags %}\n\n {{ post.content|render_markup }}\n\nOther settings\n==============\n\nMARKITUP_PREVIEW_FILTER\n-----------------------\n\nThis optional setting can be used to override the markup filter used\nfor the Ajax preview view, if for some reason you need it to be\ndifferent from the filter used for rendering markup in a\n``MarkupField``. It has the same format as ``MARKITUP_FILTER``; by\ndefault it is set equal to ``MARKITUP_FILTER``.\n\nMARKITUP_AUTO_PREVIEW\n---------------------\n\nIf set to ``True``, the preview window will be activated by\ndefault. Defaults to ``False``.\n\nJQUERY_URL\n----------\n\nMarkItUp! requires the jQuery Javascript library. By default, django-markitup\nlinks to jQuery 2.0.3 at ajax.googleapis.com (via the URL\n``http://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js``). If you\nwish to use a different version of jQuery, or host it yourself, set the\nJQUERY_URL setting. For example::\n\n JQUERY_URL = 'jquery.min.js'\n\nThis will use the jQuery available at STATIC_URL/jquery.min.js. A relative\n``JQUERY_URL`` is relative to ``STATIC_URL``.\n\nIf you include the jQuery library manually in your templates and don't want\n``django-markitup`` to include it, set ``JQUERY_URL`` to ``None``.\nCHANGES\n=======\n\nmaster (unreleased)\n-------------------\n\n* none yet\n\n3.0.0 (2016.09.04)\n------------------\n\n* Drop support for Python 3.3.\n* Drop compatibility with Django < 1.8.\n\n2.3.1 (2016.02.06)\n------------------\n\n* Use protocol-less URL for externally hosted jQuery to avoid browser warnings.\n\n\n2.3.0 (2016.01.17)\n------------------\n\n* Template tags now support Django's STATICFILES_STORAGE setting.\n Thanks Ivan Ven Osdel for report and fix.\n* Added ``render_with`` method to render a MarkupField with a different filter.\n* Dropped compatibility with Django < 1.7.\n* Compatibility with Django 1.8 and 1.9. Thanks Ivan Ven Osdel for the fixes!\n* Dropped compatibility with Python 2.6.\n* Added support for Python 3.5.\n\n\n2.2.2 (2014.09.08)\n------------------\n\n* Adapted MarkupField to work with Django 1.7 migrations. Merge of\n BB-15. Thanks Neil Muller for report and fix.\n\n2.2.1 (2014.07.15)\n------------------\n\n* Fixed regression under Python 2 with MARKITUP_FILTER and\n MARKITUP_PREVIEW_FILTER. Thanks Berker Peksag and Neil Muller for the report,\n and Neil Muller for the fix.\n\n\n2.2 (2014.07.03)\n----------------\n\n* Added Python 3.3+ support. Thanks Berker Peksag.\n\n\n2.1 (2013.11.11)\n----------------\n\n* Updated default jQuery version from 1.6 to 2.0.3.\n\n* Fixed ``MARKITUP_AUTO_PREVIEW``; the \"fix\" in 2.0 was wrong and broke it.\n\n\n2.0 (2013.11.06)\n----------------\n\n* Fixed ``MARKITUP_AUTO_PREVIEW``; MarkItUp! now observes mousedown events, not\n mouseup. Thanks Alexandr Shurigin.\n\n* Added support for Django 1.6.\n\n* BACKWARDS-INCOMPATIBLE: Dropped support for Python 2.5 and Django 1.3.\n\n1.1.0 (2013.04.26)\n------------------\n\n- Updated to MarkItUp! 1.1.14 and fixed compatibility with jQuery 1.9. Thanks\n Roman Akinfold!\n\n- Fixed MarkItUpWidget with custom attrs. Thanks GeyseR.\n\n- Set previewParserPath dynamically rather than requiring it to be set in\n ``set.js``. Thanks Sebastian Brandt.\n\n- Fixed hidden-widget rendering of a ``MarkupField``. Thanks Aramgutang.\n\n- Prevented double application of MarkItUp! editor to an\n element. Fixes #4. Thanks Rich Leland.\n\n- Added `__len__` to `Markup` object to facilitate length and truthiness checks\n in templates. Fixes #16. Thanks Edmund von der Burg.\n\n1.0.0 (2011.07.11)\n------------------\n\n- Removed all compatibility shims for Django versions prior to 1.3, including\n all support for static media at ``MEDIA_URL``, static assets under\n ``media/``, and the ``MARKITUP_MEDIA_URL`` setting.\n\n- Updated to jquery 1.6.\n\n- Added check to avoid double _rendered fields when MarkupField is used on an\n abstract base model class. Fixes #11. Thanks Denis Kolodin for report and\n patch.\n\n- Added compatibility with new AJAX CSRF requirements in Django 1.2.5 and\n 1.3. Fixes #7. Thanks zw0rk for the report.\n\n- Added blank=True to MarkupField's auto-added rendered-field to avoid South\n warnings.\n\n- Django 1.3 & staticfiles compatibility: MARKITUP_MEDIA_URL and jQuery URL\n default to STATIC_URL rather than MEDIA_URL, if set. Static assets now\n available under static/ as well as media/. Thanks Mikhail Korobov.\n\n- MarkupField.get_db_prep_value updated to take \"connection\" and \"prepared\"\n arguments to avoid deprecation warnings under Django 1.3. Thanks Mikhail\n Korobov.\n\n- enforce minimum length of 3 characters for MarkItUp!-inserted h1 and h2\n underline-style headers (works around bug in python-markdown). Thanks\n Daemian Mack for the report.\n\n0.6.1 (2010.07.01)\n------------------\n\n- Added markitup set for reST. Thanks Jannis Leidel.\n\n- fixed reST renderer to not strip initial headline. Thanks Jannis Leidel.\n\n- prevent mark_safe from mangling Markup objects.\n\n0.6.0 (2010.04.26)\n------------------\n\n- remove previously-deprecated markitup_head template tag\n\n- wrap jQuery usage in anonymous function, to be more robust against other\n JS framework code on the page (including other jQuerys). Thanks Mikhael\n Korneev.\n\n- upgrade to MarkItUp! 1.1.7\n\n- add render_markup template filter\n\n- update to jQuery 1.4 and MarkItUp! 1.1.6\n\n- Add auto_preview option.\n\n- Ajax preview view now uses RequestContext, and additionally passes\n ``MARKITUP_MEDIA_URL`` into the template context. (Previously,\n ``MARKITUP_MEDIA_URL`` was passed as ``MEDIA_URL`` and\n RequestContext was not used). Backwards-incompatible; may require\n change to preview template.\n\n0.5.2 (2009.11.24)\n------------------\n\n- Fix setup.py so ``tests`` package is not installed.\n\n0.5.1 (2009.11.18)\n------------------\n\n- Added empty ``models.py`` file so ``markitup`` is properly registered in\n ``INSTALLED_APPS``. Fixes issue with ``django-staticfiles`` tip not\n finding media.\n\n0.5 (2009.11.12)\n----------------\n\n- Added ``MarkupField`` from http://github.com/carljm/django-markupfield\n (thanks Mike Korobov)\n\n- Deprecated ``markitup_head`` template tag in favor of ``markitup_media``.\n\n- Added ``MARKITUP_MEDIA_URL`` setting to override base of relative media\n URL paths.\n\n0.3 (2009.11.04)\n----------------\n\n- added template-tag method for applying MarkItUp! editor (inspired by\n django-wysiwyg)\n\n0.2 (2009.03.18)\n----------------\n\n- initial release\n\nTODO\n====\n\n* add support for multiple markup choices (perhaps integration with\n django-markup)\n\n* link to live demo?\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/zsiciarz/django-markitup", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-markitup", "package_url": "https://pypi.org/project/django-markitup/", "platform": "", "project_url": "https://pypi.org/project/django-markitup/", "project_urls": { "Homepage": "https://github.com/zsiciarz/django-markitup" }, "release_url": "https://pypi.org/project/django-markitup/3.0.0/", "requires_dist": null, "requires_python": "", "summary": "Markup handling for Django using the MarkItUp! universal markup editor", "version": "3.0.0" }, "last_serial": 2323777, "releases": { "0.2.0": [], "0.2.1": [ { "comment_text": "", "digests": { "md5": "e699248a1d13d55767e1105e9eece3e6", "sha256": "d9a845f6065c5de294e6f27d0a0430192482615222c17ee22855938814cc79c9" }, "downloads": -1, "filename": "django-markitup-0.2.1.tar.gz", "has_sig": false, "md5_digest": "e699248a1d13d55767e1105e9eece3e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115419, "upload_time": "2009-04-01T06:06:27", "url": "https://files.pythonhosted.org/packages/2e/2b/119958dd8bdddb124a69b0611223eef111cd4c4085e2c1e18598a0f00fa2/django-markitup-0.2.1.tar.gz" } ], "0.2.2": [ { "comment_text": "", "digests": { "md5": "4d4a1acb5368f0ec3a7012e4a75f4073", "sha256": "3d078470d7f92d0e00eb285f45d24e059c22d45987b7cf9e1fc6ffc3c1d98665" }, "downloads": -1, "filename": "django-markitup-0.2.2.tar.gz", "has_sig": false, "md5_digest": "4d4a1acb5368f0ec3a7012e4a75f4073", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115111, "upload_time": "2009-06-26T17:26:32", "url": "https://files.pythonhosted.org/packages/24/50/997d125d5933917330a24f32c1a308029386f1cf810f1391a202a3d6d6de/django-markitup-0.2.2.tar.gz" } ], "0.2.3": [ { "comment_text": "", "digests": { "md5": "2db81f6918aacd5f95c83d724a14cdcf", "sha256": "b13cd5919aeb85a14ca419769d9493e0f83d6796936799292b671c09fe211768" }, "downloads": -1, "filename": "django-markitup-0.2.3.tar.gz", "has_sig": true, "md5_digest": "2db81f6918aacd5f95c83d724a14cdcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115067, "upload_time": "2009-06-26T17:48:47", "url": "https://files.pythonhosted.org/packages/31/71/ecf888c010f902f4519916723c5f14b57d68d3b34948d9a5593d84f7942d/django-markitup-0.2.3.tar.gz" } ], "0.2.5": [ { "comment_text": "", "digests": { "md5": "ee843c2ad16cd09d212048da696ee88c", "sha256": "f209173902c1603a6100c3212af29c5e286013437eee04758c90651f5edb4028" }, "downloads": -1, "filename": "django-markitup-0.2.5.tar.gz", "has_sig": false, "md5_digest": "ee843c2ad16cd09d212048da696ee88c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6427, "upload_time": "2009-07-14T00:34:44", "url": "https://files.pythonhosted.org/packages/6d/38/c4185bfb9d9dbd35074ddc355278d62dce6f3901cf22aa9a8a062f033311/django-markitup-0.2.5.tar.gz" } ], "0.2.6": [ { "comment_text": "", "digests": { "md5": "ef70eb029baedb0f9b4be89eb25d81e6", "sha256": "dd490b2d819030cd8c2bb2bb88428bbe10ccd95556dcb0e5e58304d3a12e6821" }, "downloads": -1, "filename": "django-markitup-0.2.6.tar.gz", "has_sig": false, "md5_digest": "ef70eb029baedb0f9b4be89eb25d81e6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6466, "upload_time": "2009-07-14T00:51:26", "url": "https://files.pythonhosted.org/packages/d6/e1/e386b1bcefe579c41bc848df54091ed0348fbe2574690a839377ebfaa806/django-markitup-0.2.6.tar.gz" } ], "0.2.7": [ { "comment_text": "", "digests": { "md5": "027265c3a709493d350f636903c8c6cf", "sha256": "20593ffb25123e5efa9f57ed80a7a70495d81f63cf23e9049405b25d539ddb15" }, "downloads": -1, "filename": "django-markitup-0.2.7.tar.gz", "has_sig": false, "md5_digest": "027265c3a709493d350f636903c8c6cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6474, "upload_time": "2009-07-14T00:58:21", "url": "https://files.pythonhosted.org/packages/f1/2a/f77e3489bc08cd45baa7ea84fa96638e99589b7fe73f811a1679b77ac62b/django-markitup-0.2.7.tar.gz" } ], "0.2.8": [ { "comment_text": "", "digests": { "md5": "52ebccd80913be99436a5d42af6d4eca", "sha256": "ac3fcb44a0c75f3294989f0cdbb35c48e259b5b5b5262cdab5dbfe686eae30e7" }, "downloads": -1, "filename": "django-markitup-0.2.8.tar.gz", "has_sig": false, "md5_digest": "52ebccd80913be99436a5d42af6d4eca", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137755, "upload_time": "2009-07-14T01:01:00", "url": "https://files.pythonhosted.org/packages/51/87/d4026974a4363ebe2b6abe32c5b2eb1ab79016d4eb44f447daff4102a91d/django-markitup-0.2.8.tar.gz" } ], "0.2.9": [ { "comment_text": "", "digests": { "md5": "42308a273c1e8be599323b7a9b1ad584", "sha256": "f06809d49be01c0fa9f20b4a35a19f443a3d7b3e8e5f30ceb10345de3f12ce28" }, "downloads": -1, "filename": "django-markitup-0.2.9.tar.gz", "has_sig": true, "md5_digest": "42308a273c1e8be599323b7a9b1ad584", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115052, "upload_time": "2009-10-26T21:20:37", "url": "https://files.pythonhosted.org/packages/6b/31/8a4220a7dbef3e46fdab0197b9eda43a1388052deedb351478b76166adb0/django-markitup-0.2.9.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "f64c813e722b2137f39a328c7cfb4d5b", "sha256": "b61cc1f8bafc3bfbc853d879725dc2f8f6af54c267f4dafbf464f2d59fc8cd5f" }, "downloads": -1, "filename": "django-markitup-0.3.0.tar.gz", "has_sig": true, "md5_digest": "f64c813e722b2137f39a328c7cfb4d5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116790, "upload_time": "2009-11-05T02:54:58", "url": "https://files.pythonhosted.org/packages/42/2a/894979d5f5d7f655d465892b7fa30054be11c12149a4decd0f42c5161bbd/django-markitup-0.3.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "a4cea0bd63a81b2861a5c5e00740cd0d", "sha256": "69cc86c8f792f90b4de5e932843e85570125089fcb27730ee6e54bea1c324961" }, "downloads": -1, "filename": "django-markitup-0.5.0.tar.gz", "has_sig": true, "md5_digest": "a4cea0bd63a81b2861a5c5e00740cd0d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125696, "upload_time": "2009-11-12T18:44:05", "url": "https://files.pythonhosted.org/packages/80/74/56705abef12c804a58a2940644ae3608dfb6a942a8ae7f0e73ac3d14b930/django-markitup-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "cab98ea7ac0e4afc89023ccd43f6a548", "sha256": "14d611b3e2ad69d4e2664e8f322b6821be6a05f11ecb298820f44722fc4f1c58" }, "downloads": -1, "filename": "django-markitup-0.5.1.tar.gz", "has_sig": true, "md5_digest": "cab98ea7ac0e4afc89023ccd43f6a548", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125373, "upload_time": "2009-11-18T20:37:26", "url": "https://files.pythonhosted.org/packages/a0/c3/2c833787a1460c36eeb2d8514947c0b54a97891583da0ef3f2b79f308814/django-markitup-0.5.1.tar.gz" } ], "0.5.2": [ { "comment_text": "", "digests": { "md5": "1c7dd17f95778af3c2014f6e436f2745", "sha256": "17156a7498c1681d533e9f0936b2637fd054dadf583c96cbcc2c84630908bf0e" }, "downloads": -1, "filename": "django-markitup-0.5.2.tar.gz", "has_sig": true, "md5_digest": "1c7dd17f95778af3c2014f6e436f2745", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125604, "upload_time": "2009-11-25T06:09:09", "url": "https://files.pythonhosted.org/packages/14/a1/35130289f68cad771e9da8691036471b049f332bd94bf1baf691ea9a72d3/django-markitup-0.5.2.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "3ba442055c3bf7b71a999ad2e27e8ba9", "sha256": "e630f20de3915fe8a3b74240d2c8fac0ae9770a6ddc37994fe6b8df5adab43fa" }, "downloads": -1, "filename": "django-markitup-0.6.0.tar.gz", "has_sig": true, "md5_digest": "3ba442055c3bf7b71a999ad2e27e8ba9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 137496, "upload_time": "2010-04-26T23:46:56", "url": "https://files.pythonhosted.org/packages/ca/a5/23c0301eda67759d9b553c1407f8b2d0ff62b4e5ad1537b38be059d8c047/django-markitup-0.6.0.tar.gz" } ], "0.6.1": [ { "comment_text": "", "digests": { "md5": "bf86125eb9c4803c25a787f2a5b10848", "sha256": "954b3a8e689b6a2d6af3129787adb6a7fe066afd98b2aa70109e9d60e2af83fb" }, "downloads": -1, "filename": "django-markitup-0.6.1.tar.gz", "has_sig": true, "md5_digest": "bf86125eb9c4803c25a787f2a5b10848", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117202, "upload_time": "2010-07-01T11:14:57", "url": "https://files.pythonhosted.org/packages/d9/65/fef297ba5bed429bb5f2af5f02e49097ee108ee55cba2c572de87fcb2162/django-markitup-0.6.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "3993b91eeb2a6a192ab402b1e10af72a", "sha256": "a5ed3c4fd389b0ad5c06a710077f0ec051a99b896422c26b22649c55e0375064" }, "downloads": -1, "filename": "django-markitup-1.0.0.tar.gz", "has_sig": false, "md5_digest": "3993b91eeb2a6a192ab402b1e10af72a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 110922, "upload_time": "2011-07-12T07:18:26", "url": "https://files.pythonhosted.org/packages/e7/23/9c8147c9edbd2e1dde6c9035372291c42091bff0a25f9d824ed9c617484f/django-markitup-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "599de9d55469f73b5acefc2c98a35356", "sha256": "fd6e5985cb01fc475b904fa653159fec103c16f3243876bb370aa112a70bca54" }, "downloads": -1, "filename": "django-markitup-1.1.0.tar.gz", "has_sig": false, "md5_digest": "599de9d55469f73b5acefc2c98a35356", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 73969, "upload_time": "2013-07-25T18:58:28", "url": "https://files.pythonhosted.org/packages/8b/eb/e0bf35a0593b4e07cd3432e4f7c562285304f053e83100c2239c91566028/django-markitup-1.1.0.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "232303f5d3c22617436cfd1508e50ce8", "sha256": "47404045ec031550fb809e50b6c5916d949d4d57d5fc4520b27692c2b20043e9" }, "downloads": -1, "filename": "django-markitup-2.0.tar.gz", "has_sig": false, "md5_digest": "232303f5d3c22617436cfd1508e50ce8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78657, "upload_time": "2013-11-06T22:46:15", "url": "https://files.pythonhosted.org/packages/63/33/a7d4b2340da4553bba34b466eb3d0438a46fed1f00f7dddecee021c4f7af/django-markitup-2.0.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "b3e7ff68f79d2d9bb7067b1911081474", "sha256": "100c1e7d44d96ed6411a8787a06835450009ef9ab803859e074286bb7bbfc1a6" }, "downloads": -1, "filename": "django-markitup-2.1.tar.gz", "has_sig": true, "md5_digest": "b3e7ff68f79d2d9bb7067b1911081474", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 78769, "upload_time": "2013-11-11T19:45:20", "url": "https://files.pythonhosted.org/packages/fb/f0/73274c972371837b953ac51320c7250f4ce06546db864b673cdb3e06ce60/django-markitup-2.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "aeaa2ad7437d9b65a4ef11ad9f4b8ce1", "sha256": "3f04a9c356fbd6975e469b8f0bc1de5ba5e360013c6b7958d925ad8f514ee8db" }, "downloads": -1, "filename": "django-markitup-2.2.tar.gz", "has_sig": true, "md5_digest": "aeaa2ad7437d9b65a4ef11ad9f4b8ce1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 75316, "upload_time": "2014-07-03T22:29:58", "url": "https://files.pythonhosted.org/packages/33/c3/39284bbe63a0af002fd253a0c83d1d990bcdcfbd0a1800c2abe3c48dafd0/django-markitup-2.2.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "ca7998abd3be52aad2b77a7045bd311b", "sha256": "e5f959cf8507b1f7df217d397182b8f26f6e550a275077f631da2adea9817823" }, "downloads": -1, "filename": "django-markitup-2.2.1.tar.gz", "has_sig": true, "md5_digest": "ca7998abd3be52aad2b77a7045bd311b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79068, "upload_time": "2014-07-15T19:19:40", "url": "https://files.pythonhosted.org/packages/b4/e1/c2bb2761a010af4a307487a7f4e56bff4f90361a72fc384156e1e8959c66/django-markitup-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "45da1a061641b6546177d3514d5a544b", "sha256": "d77e356457a1994d604aefca4c4234530fb6ff38c95d10af3953f611f152dfa4" }, "downloads": -1, "filename": "django-markitup-2.2.2.tar.gz", "has_sig": true, "md5_digest": "45da1a061641b6546177d3514d5a544b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 79327, "upload_time": "2014-09-08T22:22:08", "url": "https://files.pythonhosted.org/packages/eb/63/c7a2bbac04f25277ab250c54503299e9546201bf88b060e1fbfacd90e69f/django-markitup-2.2.2.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "206d65a8bddd4e958aa2a62d46a3fed5", "sha256": "063e7c86155dbbf5ce43e5324566d3dbb284d8ceec14d10a804ec66efa230daf" }, "downloads": -1, "filename": "django_markitup-2.3.0-py3-none-any.whl", "has_sig": true, "md5_digest": "206d65a8bddd4e958aa2a62d46a3fed5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 118327, "upload_time": "2016-01-17T08:50:56", "url": "https://files.pythonhosted.org/packages/97/58/2b51a83364b205c0d336f080d3b36b2a6912ee122e35b884997eb6658ab2/django_markitup-2.3.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3de508b3bfb7b5a421c5cce4fc4c54f6", "sha256": "89164fe1cde7d08af18b3a4f948b32fa9202d1731e2f267bd2de89d2da92560b" }, "downloads": -1, "filename": "django-markitup-2.3.0.tar.gz", "has_sig": true, "md5_digest": "3de508b3bfb7b5a421c5cce4fc4c54f6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 80978, "upload_time": "2016-01-17T08:51:06", "url": "https://files.pythonhosted.org/packages/15/d5/5ccb1809ff37996f68252c0497a720b065e08b3d4d611d158ce7f065a000/django-markitup-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "dc2dda5ec0c719f2771778a0e9b9f560", "sha256": "019d57f08228a7e5601d4d316f76ee2fa0d7e3107a38297dcea08d37c0fb301b" }, "downloads": -1, "filename": "django_markitup-2.3.1-py3-none-any.whl", "has_sig": true, "md5_digest": "dc2dda5ec0c719f2771778a0e9b9f560", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 118408, "upload_time": "2016-02-06T19:13:01", "url": "https://files.pythonhosted.org/packages/36/c5/876300afc55dcd917b1cd38e4bd193534695caf7811cb3d196b3362bccc7/django_markitup-2.3.1-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dd066c294e60377005e82ea750117ec7", "sha256": "8d974663c64e155befebe12dd175c7a414c985b0577e8a629d40691a2e26ea10" }, "downloads": -1, "filename": "django-markitup-2.3.1.tar.gz", "has_sig": true, "md5_digest": "dd066c294e60377005e82ea750117ec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81103, "upload_time": "2016-02-06T19:13:11", "url": "https://files.pythonhosted.org/packages/55/1b/32162b614ce22de923cfa3a350c785e614feb3fa5a9ba909681d78d130ef/django-markitup-2.3.1.tar.gz" } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "1b04c958417ac7183138d3c9ba049b4d", "sha256": "fa7c2cff142a0f388c4486887450e9a320d6203cba0618d750ebc0736b2db690" }, "downloads": -1, "filename": "django_markitup-3.0.0-py3-none-any.whl", "has_sig": true, "md5_digest": "1b04c958417ac7183138d3c9ba049b4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 118401, "upload_time": "2016-09-04T08:22:42", "url": "https://files.pythonhosted.org/packages/24/e8/2d261c52e7daed65fc55124a10ebc781df5f66a2a388c4297c4ed605290b/django_markitup-3.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "340f2bcca3e45f61919186c14fff8fd8", "sha256": "7b9485ed1bb610da071e878eab3572612f585e88269af1504c4dc5100400b8d4" }, "downloads": -1, "filename": "django-markitup-3.0.0.tar.gz", "has_sig": true, "md5_digest": "340f2bcca3e45f61919186c14fff8fd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81141, "upload_time": "2016-09-04T08:22:45", "url": "https://files.pythonhosted.org/packages/d9/84/7f5b7b452369c467319447064aecc30024803e8f8548144762ea019cb3cc/django-markitup-3.0.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "1b04c958417ac7183138d3c9ba049b4d", "sha256": "fa7c2cff142a0f388c4486887450e9a320d6203cba0618d750ebc0736b2db690" }, "downloads": -1, "filename": "django_markitup-3.0.0-py3-none-any.whl", "has_sig": true, "md5_digest": "1b04c958417ac7183138d3c9ba049b4d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 118401, "upload_time": "2016-09-04T08:22:42", "url": "https://files.pythonhosted.org/packages/24/e8/2d261c52e7daed65fc55124a10ebc781df5f66a2a388c4297c4ed605290b/django_markitup-3.0.0-py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "340f2bcca3e45f61919186c14fff8fd8", "sha256": "7b9485ed1bb610da071e878eab3572612f585e88269af1504c4dc5100400b8d4" }, "downloads": -1, "filename": "django-markitup-3.0.0.tar.gz", "has_sig": true, "md5_digest": "340f2bcca3e45f61919186c14fff8fd8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81141, "upload_time": "2016-09-04T08:22:45", "url": "https://files.pythonhosted.org/packages/d9/84/7f5b7b452369c467319447064aecc30024803e8f8548144762ea019cb3cc/django-markitup-3.0.0.tar.gz" } ] }