{ "info": { "author": "", "author_email": "", "bugtrack_url": null, "classifiers": [], "description": "Home-page: https://github.com/bitmazk/django-multilingual-news\nAuthor: Tobias Lorenz\nAuthor-email: tobias.lorenz@bitmazk.com\nLicense: The MIT License\nDescription: Django Multilingual News\n ========================\n \n A reusable Django app for managing news/blog entries in different languages.\n \n Comes with a django-cms apphook and has been prepared using Django 1.5.1 and\n django-cms 2.4.1. From version 2.0 onwards it is tested and developed further\n on Django 1.9 and django-cms 3.\n \n This app is based on the great https://github.com/fivethreeo/cmsplugin-blog\n and re-used some of it's snippets.\n \n Current features include\n \n - Entry authors based on a `django-people `_ Person\n - Entry attachments based on the `django-document-library `_ Document\n - Tagging via `django-multilingual-tags `_ with a tag based archive view\n - Entry categories\n - RSS Feeds for all news entries, just special authors or tag based.\n - Site maps\n - SEO fields on the Entry for storing custom individual meta descriptions and\n titles.\n \n \n Installation\n ------------\n \n If you want to install the latest stable release from PyPi::\n \n $ pip install django-multilingual-news\n \n If you feel adventurous and want to install the latest commit from GitHub::\n \n $ pip install -e git://github.com/bitmazk/django-multilingual-news.git#egg=multilingual_news\n \n Add ``multilingual_news`` to your ``INSTALLED_APPS``::\n \n INSTALLED_APPS = (\n ...,\n 'django_libs',\n 'multilingual_news',\n 'people',\n 'hvad',\n 'multilingual_tags',\n 'document_library',\n \n # cms related requirements (please check the relevant `documentation `)\n 'cms',\n 'menus',\n 'treebeard',\n \n # filer related requirements (please check the relevant `documentation `)\n 'filer',\n 'easy_thumbnails',\n )\n \n Run the migrations::\n \n ./manage.py migrate\n \n \n Usage\n -----\n \n Placeholders (\"excerpt\" and \"content\")\n ++++++++++++++++++++++++++++++++++++++\n \n To add content to a news entry, you can make use of two cms placeholders. The excerpt is used in list views only. Adding content to a placeholder works pretty much the same like adding content to a cms page. First, create a news entry, then go to its detail view. Use the django cms toolbar to add plugins to the placeholders. For more information visit `Django CMS' documentation `_.\n \n Using the apphook\n +++++++++++++++++\n \n Simply create a django-cms page and select ``Multilingual News Apphook`` in the\n ``Application`` field of the ``Advanced Settings``.\n \n \n Sitemaps\n ++++++++\n \n To add a sitemap of your blog, add the following to your urlconf: ::\n \n from multilingual_news.sitemaps import NewsSitemap\n \n urlpatterns += patterns(\n '',\n url(r'^sitemap.xml$', 'django.contrib.sitemaps.views.sitemap', {\n 'sitemaps': {\n 'blogentries': NewsSitemap,\n }, }),\n )\n \n RSS Feeds\n +++++++++\n \n The app provides three different types of feeds, you can link to.\n \n 1. All news ``{% url \"news_rss\" %}``\n 2. News from a specific author ``{% url \"news_rss_author\" author=author.pk %}``,\n where ``author`` is an instance of a ``people.Person``\n 3. All news ``{% url \"news_rss_tagged\" tag=tag.slug %}``, where ``Tag`` is an\n instance of a ``multilingual_tags.Tag``.\n \n \n Tagging\n +++++++\n \n You can simply add tags for a news entry from the ``NewsEntry`` admin page,\n which renders an inline form at the bottom.\n \n \n Template tags\n -------------\n \n get_recent_news\n +++++++++++++++\n \n To render recent news::\n \n {% load multilingual_news_tags %}\n {% get_recent_news limit=5 as recent_news %}\n {% include \"multilingual_news/recent.html\" with object_list=recent_news %}\n \n You might want to filter recent news by a category. Just add the relevant\n category slug::\n \n {% get_recent_news category='category-slug' as recent_news %}\n \n If you want to render recent news on a news detail page, you might want to\n exclude the current news from the queryset::\n \n {% get_recent_news exclude=object as recent_news %}\n \n \n get_newsentry_meta_description and get_newsentry_meta_title\n +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++\n \n To render the best matching title or description from the SEO fields, you can\n use the template tags ``get_newsentry_meta_description`` and\n ``get_newsentry_meta_title``. ::\n \n {% get_newsentry_meta_title entry_instance %}\n \n \n \n Twitter Bootstrap 3\n -------------------\n \n List of Bootstrap compatible features:\n \n * A delete confirmation modal for deleting news entries.\n \n For support of the Twitter Bootstrap 3 functionality, you need to add the Bootstrap js library to your template. If you haven't already \n \n .. code-block:: html\n \n \n \n \n \n Delete confirmation modal\n +++++++++++++++++++++++++\n \n Add the following markup to your template.\n \n .. code-block:: html\n \n {% load static %}\n \n {# add this before bootstrap.js #}\n \n \n
\n
\n
\n \n
\n
\n
\n
\n
\n \n To trigger the modal, create a link that looks like this.\n \n .. code-block:: html\n \n Delete\n \n \n Settings\n --------\n \n NEWS_PAGINATION_AMOUNT\n ++++++++++++++++++++++\n \n Default: 10\n \n Amount of news entries to display in the list view.\n \n \n Contribute\n ----------\n \n If you want to contribute to this project, please perform the following steps\n \n .. code-block:: bash\n \n # Fork this repository\n # Clone your fork\n mkvirtualenv -p python2.7 django-multilingual-news\n make develop\n \n git co -b feature_branch master\n # Implement your feature and tests\n git add . && git commit\n git push -u origin feature_branch\n # Send us a pull request for your feature branch\n \n In order to run the tests, simply execute ``tox``. This will install two new\n environments (for Django 1.8 and Django 1.9) and run the tests against both\n environments.\n \nKeywords: django,news,blog,multilingual,cms\nPlatform: OS Independent\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "django-multilingual-news", "package_url": "https://pypi.org/project/django-multilingual-news/", "platform": "", "project_url": "https://pypi.org/project/django-multilingual-news/", "project_urls": null, "release_url": "https://pypi.org/project/django-multilingual-news/2.6.9/", "requires_dist": null, "requires_python": "", "summary": "A reusable Django app for managing news/blog entries in different languages.", "version": "2.6.9" }, "last_serial": 3778454, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "d2ec345949b396de1972dae4fe45e5dd", "sha256": "fea3de845ba073833750d56b9f9da34687ad4f167d32cd6f6e470de2941d0c68" }, "downloads": -1, "filename": "django-multilingual-news-0.1.tar.gz", "has_sig": false, "md5_digest": "d2ec345949b396de1972dae4fe45e5dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13894, "upload_time": "2013-05-17T14:28:19", "url": "https://files.pythonhosted.org/packages/9c/10/4c9e164dea8e64f1aa267114ab80801dfe3b633a17770fc6ddd956b5d5f5/django-multilingual-news-0.1.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "1d91ce71f0dfc55c9be6cbe2f1aa2f90", "sha256": "a8efc79d5b71a5707f287b01685fbfb74698c691dfc478f29726d70fac73628c" }, "downloads": -1, "filename": "django-multilingual-news-0.1.1.tar.gz", "has_sig": false, "md5_digest": "1d91ce71f0dfc55c9be6cbe2f1aa2f90", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14718, "upload_time": "2013-05-20T08:35:38", "url": "https://files.pythonhosted.org/packages/2a/06/519417dca8bb04cd432fbc78cdc22251d409468c635078a0ac4862a63161/django-multilingual-news-0.1.1.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "05a654c1c73f036d850dd9b915e541b3", "sha256": "0a77a328ad3a0cdfb0cb2e6c06a4171e26b954b68b3bba39fedc41e0c2792960" }, "downloads": -1, "filename": "django-multilingual-news-0.2.tar.gz", "has_sig": false, "md5_digest": "05a654c1c73f036d850dd9b915e541b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15796, "upload_time": "2013-07-17T18:27:27", "url": "https://files.pythonhosted.org/packages/07/60/3930a3d0a1184f1be955a2ad3dc0cfed2e6c6a3f73fa5698111a0e1544e3/django-multilingual-news-0.2.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "e7a2e2a4723d7742841102d9a85f3858", "sha256": "fe14a81926184aaab4d319f43723f2d2b8578157f20c6d73359b2728c749ae07" }, "downloads": -1, "filename": "django-multilingual-news-1.0.tar.gz", "has_sig": false, "md5_digest": "e7a2e2a4723d7742841102d9a85f3858", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19837, "upload_time": "2013-11-01T00:25:17", "url": "https://files.pythonhosted.org/packages/ca/82/1a0dea8a1db35ef5337d9f757e1aa3f8b03719b93e037f6966bb9c740910/django-multilingual-news-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "361cf2f9a6648faa3ff54798b88c3f4c", "sha256": "d49fa8f84bcac9a87f7243eedbead7d7ffe85953879294494027b8d0b35ccb8c" }, "downloads": -1, "filename": "django-multilingual-news-1.1.tar.gz", "has_sig": false, "md5_digest": "361cf2f9a6648faa3ff54798b88c3f4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19870, "upload_time": "2013-11-04T08:32:21", "url": "https://files.pythonhosted.org/packages/1f/ca/248705f381290d35be1379cfb39036bf76e1cabeba3237fcc889c7ad3e3e/django-multilingual-news-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "efb8153cd79b1a0395247c0cf3625765", "sha256": "48a4cff2dd7d4b196c826d19e1711525183634157c5d5a80df6a11d852722f04" }, "downloads": -1, "filename": "django-multilingual-news-1.2.tar.gz", "has_sig": false, "md5_digest": "efb8153cd79b1a0395247c0cf3625765", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19916, "upload_time": "2014-01-11T06:46:47", "url": "https://files.pythonhosted.org/packages/d8/52/299e9d94fb5ade7a34d5abc905676634e3d818375375829cfac71c25c5ec/django-multilingual-news-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "5ce9d044ae80bf884bcabf6a57472bcd", "sha256": "3889846870cda1e6cd26234aa1d9c3097317c3f7134192b6d7f3a1fc69f22c2b" }, "downloads": -1, "filename": "django-multilingual-news-1.3.tar.gz", "has_sig": false, "md5_digest": "5ce9d044ae80bf884bcabf6a57472bcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19812, "upload_time": "2014-01-31T07:45:12", "url": "https://files.pythonhosted.org/packages/cf/49/17c4137b686120c6132afda490fcb5d15835d47e70acafc6b67ad47a4ac9/django-multilingual-news-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "58e0722a7c3da6fe898727df3aadac80", "sha256": "ed6a9b9ba598b39642f26d8393ea351f873d5e80805bade7b8d50584cf3ff2f8" }, "downloads": -1, "filename": "django-multilingual-news-1.3.1.tar.gz", "has_sig": false, "md5_digest": "58e0722a7c3da6fe898727df3aadac80", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19241, "upload_time": "2014-03-03T05:36:22", "url": "https://files.pythonhosted.org/packages/1d/52/0a5056ab044872e7c60390a88bf4dbf0a1b3ab52cff7ff159abec43fbcf6/django-multilingual-news-1.3.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "d724a3625487260e2463a9618413e908", "sha256": "70b6bb8128930d71f032894babcbb3a19cd2a0fa38bfa69d86b56055d6b6e0d5" }, "downloads": -1, "filename": "django-multilingual-news-2.0.tar.gz", "has_sig": false, "md5_digest": "d724a3625487260e2463a9618413e908", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27570, "upload_time": "2014-03-11T08:41:48", "url": "https://files.pythonhosted.org/packages/7e/c9/8447c3e50905dfbbbf560b8477d85044cf821e34791a7d87fcb8518802a0/django-multilingual-news-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "2202f812820c77fd167add4045795fc4", "sha256": "72c32c41aa8a6f46504a1cafca63961adcd07facb562e3abc5d5e3977f9a9a53" }, "downloads": -1, "filename": "django-multilingual-news-2.0.1.tar.gz", "has_sig": false, "md5_digest": "2202f812820c77fd167add4045795fc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27807, "upload_time": "2014-03-17T06:08:13", "url": "https://files.pythonhosted.org/packages/08/18/789617b5124e4dda936e5114acd70a39ee4ea97038d8a3f47ff25ebb8bf1/django-multilingual-news-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "c15b81fe8488c82daad72d0369012f2a", "sha256": "339d46a5c809040a72bb4c387fb7b589eba9290f838a3ec23fb3ad2e141602a2" }, "downloads": -1, "filename": "django-multilingual-news-2.0.2.tar.gz", "has_sig": false, "md5_digest": "c15b81fe8488c82daad72d0369012f2a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29590, "upload_time": "2014-03-25T08:56:41", "url": "https://files.pythonhosted.org/packages/c0/03/b89d67a2155ecdb0873dffde7597ba21002ebb7dd8091aa09caf3e9b0327/django-multilingual-news-2.0.2.tar.gz" } ], "2.0.3": [ { "comment_text": "", "digests": { "md5": "9957c6e2bc33b0844484eb94ccbfe23b", "sha256": "d48b207ad1f092c04b203a33964c60f0e31ba9d0553fd11d752ae79fba400cce" }, "downloads": -1, "filename": "django-multilingual-news-2.0.3.tar.gz", "has_sig": false, "md5_digest": "9957c6e2bc33b0844484eb94ccbfe23b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 29664, "upload_time": "2014-06-01T11:54:23", "url": "https://files.pythonhosted.org/packages/33/11/d6bbccf9565df0787c42635e47e0daa992758ee430fff2c15070a89afb5c/django-multilingual-news-2.0.3.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "ca412777ee5b1679ac14dc18dceace8b", "sha256": "0f3db43de82dfbc441a6361014863b306d6ed72a2a9a0c7cdba6307a0247efa4" }, "downloads": -1, "filename": "django-multilingual-news-2.1.tar.gz", "has_sig": false, "md5_digest": "ca412777ee5b1679ac14dc18dceace8b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33241, "upload_time": "2014-06-02T15:27:34", "url": "https://files.pythonhosted.org/packages/4c/72/037cc81cb9069116226ee5e36357a888ec2be193c63fefe69657c6b93320/django-multilingual-news-2.1.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "d8d31fb6f61bbb1c600dc07b18fcb10d", "sha256": "c2914f3377177be74fc2abf15f24a6f0ef48892f4d059512d09250c174e375d5" }, "downloads": -1, "filename": "django-multilingual-news-2.1.1.tar.gz", "has_sig": false, "md5_digest": "d8d31fb6f61bbb1c600dc07b18fcb10d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30508, "upload_time": "2014-06-04T14:07:20", "url": "https://files.pythonhosted.org/packages/55/8d/8747dc509b6589d08269914a55cd0395c98546cf9af53ead3096fd549b17/django-multilingual-news-2.1.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "ef68ce16845111bd125eb54d6593d3a6", "sha256": "0599ea9a70287d5f1f222a1ae923dfa69fc1a7742a3be150956fcf1cfdd03533" }, "downloads": -1, "filename": "django-multilingual-news-2.2.tar.gz", "has_sig": false, "md5_digest": "ef68ce16845111bd125eb54d6593d3a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31341, "upload_time": "2014-06-25T18:54:09", "url": "https://files.pythonhosted.org/packages/3e/f6/ada7b960077938cbfb14dac2505065a4fb89e78a0f1892a707014cd97440/django-multilingual-news-2.2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "bf2712a7956f59ff20c57695ce0f438c", "sha256": "5fb8296f69ad5cc802e194c9c32b5962bb6e9f7e67db2086a79f4d3d81fe97c1" }, "downloads": -1, "filename": "django-multilingual-news-2.3.tar.gz", "has_sig": false, "md5_digest": "bf2712a7956f59ff20c57695ce0f438c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32170, "upload_time": "2014-07-08T14:55:42", "url": "https://files.pythonhosted.org/packages/11/5a/6f3ef8d5c9d015abe74c2b2614fe11541d6177056dc714184afe71c28117/django-multilingual-news-2.3.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "b9c898810a0f4e9f2cdb9481e5cd7627", "sha256": "a77a7395ef9612fb263374c12ed56c489fc0437adf848e5edb78027dd66a147c" }, "downloads": -1, "filename": "django-multilingual-news-2.3.1.tar.gz", "has_sig": false, "md5_digest": "b9c898810a0f4e9f2cdb9481e5cd7627", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32190, "upload_time": "2014-07-11T06:08:42", "url": "https://files.pythonhosted.org/packages/29/38/d4244689aca9dee11c878125909cce27108f57f8b1795a74ef82a1a89c0b/django-multilingual-news-2.3.1.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "baa3e3f5667837b4b34cdc60a282d7c3", "sha256": "f254e32aefed21769089318a0ce1314dac905fc1520faab89555e1cdc8d5b4de" }, "downloads": -1, "filename": "django-multilingual-news-2.4.tar.gz", "has_sig": false, "md5_digest": "baa3e3f5667837b4b34cdc60a282d7c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32858, "upload_time": "2014-07-11T14:15:17", "url": "https://files.pythonhosted.org/packages/53/14/2936fcd8b3f224b4a2e563f52b47a94bb88df153da3358f39985204d07b3/django-multilingual-news-2.4.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "29fa51a53066429d163053939d033d94", "sha256": "0d42f4dfc8280e3d6629494e54da460ce267a3028bd48ee6ccae4f6daf907e81" }, "downloads": -1, "filename": "django-multilingual-news-2.4.1.tar.gz", "has_sig": false, "md5_digest": "29fa51a53066429d163053939d033d94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32972, "upload_time": "2014-07-28T08:29:27", "url": "https://files.pythonhosted.org/packages/25/df/db487a18286d895b0daf3b9384434a0b0521439a0a7ab1e8a69a0d3fe354/django-multilingual-news-2.4.1.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "37d964228851d78f9cce44dd4eddfdff", "sha256": "545eb58ac98b573052be41ee637811349dbe2ea7ceee78e23b1925dfd01b73f0" }, "downloads": -1, "filename": "django-multilingual-news-2.5.tar.gz", "has_sig": false, "md5_digest": "37d964228851d78f9cce44dd4eddfdff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34354, "upload_time": "2014-08-06T15:08:45", "url": "https://files.pythonhosted.org/packages/ce/df/e47543f4a0303869a35a5a2d629b3199ef34ad3fee9c1b7483531e8bad1c/django-multilingual-news-2.5.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "5a8f57bcdf17c3b61201594d6a2e9e58", "sha256": "83a5efa0f31c1e3e4e58b82fced63be5fd0c462025769718741c0662d3dbc9ae" }, "downloads": -1, "filename": "django-multilingual-news-2.5.1.tar.gz", "has_sig": false, "md5_digest": "5a8f57bcdf17c3b61201594d6a2e9e58", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36132, "upload_time": "2014-08-15T14:35:53", "url": "https://files.pythonhosted.org/packages/b3/4e/3afea83300e2294df98329be1a22728496f424a75cc1f1337819dc1f2f68/django-multilingual-news-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "d524e5e40bad3d648ced192983a212a1", "sha256": "2caf366b6fe9e74efaa5405ddc8cceb2a9b7b033ff7a4b1b3355c24c94c7fe0e" }, "downloads": -1, "filename": "django-multilingual-news-2.5.2.tar.gz", "has_sig": false, "md5_digest": "d524e5e40bad3d648ced192983a212a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36210, "upload_time": "2014-12-16T08:27:27", "url": "https://files.pythonhosted.org/packages/9b/79/9fc4733c674ded0b9036cba77a02071b8efc7ddfaae2c1af4d120768627b/django-multilingual-news-2.5.2.tar.gz" } ], "2.5.3": [ { "comment_text": "", "digests": { "md5": "e605d3c731aa9608ab397366dd80ff9b", "sha256": "9570a15480064182e2f29be7b472338b1f989bab06983fbed69ce0055cb37d26" }, "downloads": -1, "filename": "django-multilingual-news-2.5.3.tar.gz", "has_sig": false, "md5_digest": "e605d3c731aa9608ab397366dd80ff9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38926, "upload_time": "2015-08-18T08:31:43", "url": "https://files.pythonhosted.org/packages/25/2e/74989f8849eee8fdebc9e5ef5b541410876c6d04b992da10bf2f0b1c4eb7/django-multilingual-news-2.5.3.tar.gz" } ], "2.6": [ { "comment_text": "", "digests": { "md5": "f1940e1b2d14952a68e708c5db67c2e2", "sha256": "ccb5de2cdbec45e09210f9f48711865ed6357df83d9dd591a5f08545a98c1962" }, "downloads": -1, "filename": "django-multilingual-news-2.6.tar.gz", "has_sig": false, "md5_digest": "f1940e1b2d14952a68e708c5db67c2e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39497, "upload_time": "2016-02-22T16:14:08", "url": "https://files.pythonhosted.org/packages/16/1e/6310cdfd8a8fc82e1856d8395d9d4d1c01ede7d49db89d7fad4dad4943ff/django-multilingual-news-2.6.tar.gz" } ], "2.6.1": [ { "comment_text": "", "digests": { "md5": "a389bf1e45ef2974b9fdc00a6abb8adc", "sha256": "4557e3e4f86c631f6ef1b74d9c7dc4abbcc6c0d90154fab26ccdf9818034a831" }, "downloads": -1, "filename": "django-multilingual-news-2.6.1.tar.gz", "has_sig": false, "md5_digest": "a389bf1e45ef2974b9fdc00a6abb8adc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39489, "upload_time": "2016-02-23T00:00:08", "url": "https://files.pythonhosted.org/packages/3a/40/26798cb6b2e3d46c519477bc349a9898c2f4111292ae64738930cadbfc34/django-multilingual-news-2.6.1.tar.gz" } ], "2.6.2": [ { "comment_text": "", "digests": { "md5": "4b6d3147525a1bd6501e5bf124b8a259", "sha256": "d9152a5238ad3155bfcaeb5310dd1630d387639ab50b80e18142336c052cad70" }, "downloads": -1, "filename": "django-multilingual-news-2.6.2.tar.gz", "has_sig": false, "md5_digest": "4b6d3147525a1bd6501e5bf124b8a259", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39519, "upload_time": "2016-04-07T06:09:19", "url": "https://files.pythonhosted.org/packages/ab/f7/ded350a8e56887624d32444ee0d7e0f51f7fe82dee6c5e61d1f317da90f9/django-multilingual-news-2.6.2.tar.gz" } ], "2.6.3": [ { "comment_text": "", "digests": { "md5": "c02760ebfb3df24bd7f20d927b94e5ef", "sha256": "6565194deb641b9006eb83e2e830ba72c616005e30f86560dbc4cbb4643b9064" }, "downloads": -1, "filename": "django-multilingual-news-2.6.3.tar.gz", "has_sig": false, "md5_digest": "c02760ebfb3df24bd7f20d927b94e5ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39516, "upload_time": "2016-04-07T06:20:08", "url": "https://files.pythonhosted.org/packages/e1/31/7e53115c9fcc9ad4fa56103263b517ab722b14209a62bce8eee300b5a58c/django-multilingual-news-2.6.3.tar.gz" } ], "2.6.4": [ { "comment_text": "", "digests": { "md5": "786a6f9e838a8e965378b72968f5e629", "sha256": "bee41fddfef2bde50a03110d7953aaa7405aeade3985903addef94e132f1a0d6" }, "downloads": -1, "filename": "django-multilingual-news-2.6.4.tar.gz", "has_sig": false, "md5_digest": "786a6f9e838a8e965378b72968f5e629", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39730, "upload_time": "2016-04-18T17:48:17", "url": "https://files.pythonhosted.org/packages/72/39/ece6b4d30796e07c2a02404d995dab2083943f666713f5f14db3bce3bd0b/django-multilingual-news-2.6.4.tar.gz" } ], "2.6.5": [ { "comment_text": "", "digests": { "md5": "24014f90b2e3a20c47961ffcc78c2ce4", "sha256": "015eb9f40db77c283f76925466571ef82f9bc1b870413e94d754f3909cb8b059" }, "downloads": -1, "filename": "django-multilingual-news-2.6.5.tar.gz", "has_sig": false, "md5_digest": "24014f90b2e3a20c47961ffcc78c2ce4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40092, "upload_time": "2016-07-28T14:05:55", "url": "https://files.pythonhosted.org/packages/54/08/f5ec66d8c369e58c545bb820eb4c8fabba5bdc54a4826c7d01f68cc92bd7/django-multilingual-news-2.6.5.tar.gz" } ], "2.6.6": [ { "comment_text": "", "digests": { "md5": "5905ab770ca2d93b7892b9143d9fc1b0", "sha256": "da081176422d4fa4781576409746e73a30595e0ecac72c7f568ad8f9014c69f2" }, "downloads": -1, "filename": "django-multilingual-news-2.6.6.tar.gz", "has_sig": false, "md5_digest": "5905ab770ca2d93b7892b9143d9fc1b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40236, "upload_time": "2016-11-13T12:28:05", "url": "https://files.pythonhosted.org/packages/61/5a/64a998ec18e931dbb99c67ff9c813a91f35d355a251b4cf4fa56606fa86a/django-multilingual-news-2.6.6.tar.gz" } ], "2.6.7": [ { "comment_text": "", "digests": { "md5": "f0fe109ce61e21272fa7e6ecc2321d94", "sha256": "a25ff22874dfe51cf98fd0c2868006e7e58cb41432d54dbee86de65b8c2b0ce4" }, "downloads": -1, "filename": "django-multilingual-news-2.6.7.tar.gz", "has_sig": false, "md5_digest": "f0fe109ce61e21272fa7e6ecc2321d94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39941, "upload_time": "2017-02-01T14:16:11", "url": "https://files.pythonhosted.org/packages/8a/44/1202f0ebbbbf088e69fc505b9a1a3612464ca6424a14d9fb8928e4581371/django-multilingual-news-2.6.7.tar.gz" } ], "2.6.8": [ { "comment_text": "", "digests": { "md5": "d292cdef72d8e0e7e3514ac94b2b84ed", "sha256": "5a9f50a87407ac9a3f4dec0651cbe963782bee6381ca5f26af9ac2d05f5bc705" }, "downloads": -1, "filename": "django-multilingual-news-2.6.8.tar.gz", "has_sig": false, "md5_digest": "d292cdef72d8e0e7e3514ac94b2b84ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 40055, "upload_time": "2017-06-07T16:28:11", "url": "https://files.pythonhosted.org/packages/e6/b1/b25c6ecfe7d0c06c049cd07a31f55ee273b0e89e528176d27a7e9f7b3ec7/django-multilingual-news-2.6.8.tar.gz" } ], "2.6.9": [ { "comment_text": "", "digests": { "md5": "4efed9e27ebe0c3d83a48e4f1b52ffa3", "sha256": "10b58230ff61c37e4b4ea44021e149a1f369bfc471289c93c7b9f41215ba15c9" }, "downloads": -1, "filename": "django-multilingual-news-2.6.9.tar.gz", "has_sig": false, "md5_digest": "4efed9e27ebe0c3d83a48e4f1b52ffa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41838, "upload_time": "2018-04-18T20:38:21", "url": "https://files.pythonhosted.org/packages/e2/b5/d0055c5fb0bb2605090122a1822de7f3a592af3e430a61ce04f2ff3140f2/django-multilingual-news-2.6.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4efed9e27ebe0c3d83a48e4f1b52ffa3", "sha256": "10b58230ff61c37e4b4ea44021e149a1f369bfc471289c93c7b9f41215ba15c9" }, "downloads": -1, "filename": "django-multilingual-news-2.6.9.tar.gz", "has_sig": false, "md5_digest": "4efed9e27ebe0c3d83a48e4f1b52ffa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41838, "upload_time": "2018-04-18T20:38:21", "url": "https://files.pythonhosted.org/packages/e2/b5/d0055c5fb0bb2605090122a1822de7f3a592af3e430a61ce04f2ff3140f2/django-multilingual-news-2.6.9.tar.gz" } ] }