{
"info": {
"author": "Luc Jean",
"author_email": "ljean@apidev.fr",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Natural Language :: French",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application"
],
"description": "Coop-cms, a really pluggable CMS\n===============================================\n* `Yet another CMS ?`_\n* `Quick start`_\n\n.. _Yet another CMS?: #yacms\n.. _Quick start?: #quick-start\n\n\n.. _yacms:\n\nYet another CMS ?\n------------------------------------\n\n#. Coop-cms is built around Articles. It defines a basic abstract model so you can define your own model.\n#. It has a website tree in a nice admin widget, to let you order Articles and *any other standard django model* you've defined in your project.\n#. Based on the tree, you get templatetags for menu navigation, siblings links, breadcrumb, etc\n\nCoop-cms has some sister apps to make it more usable:\n\n* `coop_bar `_, an extensible toolbar (same concept : any app you create can add links in the toolbar)\n* `djaloha `_, a great in-site editor based on `Aloha Editor `_\n* `colorbox `_, make easy integration of jquery colorbox library.\n\n.. _quick-start:\n\nQuick start\n-----------\n\nPython 2.6+, Django 1.3+ required\n\nInstall it with ``pip install coop-cms``\n\nurls.py\n~~~~~~~\n\nAt *the very end* of your urls.py file, add::\n\n urlpatterns += patterns('',\n (r'^djaloha/', include('djaloha.urls')),\n (r'^', include('coop_cms.urls')),\n (r'^coop_bar/', include('coop_bar.urls')),\n )\n\nPlease note that coop-cms will handle any page slug, except the ones you will have defined before.\n\nsettings.py\n~~~~~~~~~~~\nIn settings.py::\n\n MIDDLEWARE_CLASSES = (\n 'django.middleware.common.CommonMiddleware',\n 'django.contrib.sessions.middleware.SessionMiddleware',\n 'django.middleware.csrf.CsrfViewMiddleware',\n 'django.contrib.auth.middleware.AuthenticationMiddleware',\n 'django.contrib.messages.middleware.MessageMiddleware',\n 'pagination.middleware.PaginationMiddleware',\n ...\n )\n\n TEMPLATE_CONTEXT_PROCESSORS = (\n \"django.contrib.auth.context_processors.auth\",\n \"django.core.context_processors.debug\",\n \"django.core.context_processors.i18n\",\n 'django.core.context_processors.request',\n \"django.core.context_processors.media\",\n \"django.core.context_processors.static\",\n \"django.contrib.messages.context_processors.messages\",\n ...\n )\n\n AUTHENTICATION_BACKENDS = (\n 'coop_cms.perms_backends.ArticlePermissionBackend',\n 'django.contrib.auth.backends.ModelBackend', # Django's default auth backend\n )\n\n INSTALLED_APPS = (\n # Contribs\n 'django.contrib.auth',\n 'django.contrib.contenttypes',\n 'django.contrib.sessions',\n 'django.contrib.sites',\n 'django.contrib.messages',\n 'django.contrib.staticfiles',\n 'django.contrib.admin',\n 'django.contrib.admindocs',\n\n #3rd parties\n 'south',\n 'django_extensions',\n 'sorl.thumbnail',\n 'floppyforms',\n 'pagination',\n 'chosen', #optional but recommended. You must install it separately\n\n #apps\n 'coop_bar',\n 'djaloha',\n 'colorbox',\n 'coop_cms',\n\n #The coop_cms Article is an abstract model, you must define an Article in one of your app\n #We provide 2 apps that can be used if needed. Choose one or the other\n #'coop_cms.apps.basic_cms', #Nothing else than a concrete Article model.\n 'coop_cms.apps.demo_cms', #A ready-to-use example app.\n\n #The app below make possible to create articles from a RSS feed. Add it if needed\n 'coop_cms.apps.rss_sync',\n )\n\n #These are settings to customize the CMS behavior. The values are just examples and correspond to the demo_cms app.\n\n #Define the Concrete Article to use. Not required if basic_cms is used\n COOP_CMS_ARTICLE_CLASS = 'coop_cms.apps.demo_cms.models.Article'\n\n #Define a custom form for Article editing. Not required if basic_cms is used\n COOP_CMS_ARTICLE_FORM = 'coop_cms.apps.demo_cms.forms.ArticleForm'\n\n #Make possible to customize the menus in the admin bar. Optional.\n #If not defined, the tuple is build with the coop_bar_cfg modules of all INSTALLED_APPS\n COOPBAR_MODULES = (\n 'coop_cms.apps.demo_cms.my_coop_bar',\n )\n\n #Populate the urls when editing tag in Aloha editor\n DJALOHA_LINK_MODELS = (\n 'demo_cms.Article',\n )\n\n # Optional: you can overload the aloha plugins used by coop_cms --> see djaloha docs for details\n DJALOHA_PLUGINS = (\n \"common/format\",\n \"common/highlighteditables\",\n )\n\n # Optional: you can change the jquery version used by aloha --> see djaloha docs for details\n DJALOHA_JQUERY = 'js/jquery.1.7.2.js'\n\n # Optional : you can customize the whole behavior of aloha by proving the url of config file.\n # It will overload the config provided by djaloha --> see djaloha for details\n DJALOHA_INIT_URL = '/static/js/my_aloha_config.js'\n\n #Default size of the article logo. Can be changed in template\n COOP_CMS_ARTICLE_LOGO_SIZE = \"128x128\"\n\n #Templates that can be used for an article\n #It can be a tuple or a function returning a tuple\n COOP_CMS_ARTICLE_TEMPLATES = 'coop_cms.apps.demo_cms.get_article_templates'\n #COOP_CMS_ARTICLE_TEMPLATES = (\n # ('standard.html', 'Standard'),\n # ('homepage.html', 'Homepage'),\n # ('blog.html', 'Blog'),\n #)\n\n #Prefix for making absolute links\n COOP_CMS_SITE_PREFIX = 'http://127.0.0.1:8000'\n\n #from email : the domain of this address should allow the IP of your SMTP server : See SPF\n COOP_CMS_FROM_EMAIL = '\"Your name\" '\n\n #TODO : REPLY-TO\n COOP_CMS_REPLY_TO = '\"Your name\" '\n\n # Email address to send a newsletter test\n COOP_CMS_TEST_EMAILS = (\n '\"Your name\" ',\n )\n\n #tuples of templates that can be used for a newsletter.\n COOP_CMS_NEWSLETTER_TEMPLATES = (\n ('basic_newsletter.html', 'Basic'),\n ('special_newsletter.html', 'With sections'),\n ('sortable_newsletter.html', 'Sortable sections'),\n )\n #optional : A custom form for editing the newsletter\n COOP_CMS_NEWSLETTER_FORM = 'coop_cms.apps.demo_cms.forms.SortableNewsletterForm'\n\nBase template\n~~~~~~~~~~~~~\nYou need to create a base template ``base.html`` in one of your template folders. The ``article.html`` will inherit from this base template.\n\nYou need the following templatetags libs::\n\n {% load coop_navigation coop_bar_tags %}\n\nIn the of the document::\n\n {% coop_bar_headers %}\n {% block jquery_declaration %}{% endblock %}\n {% block extra_head %}{% endblock %}\n\nIn the of the document::\n\n {% block document %}...{% endblock %}\n {% coop_bar %}\n\nJust before at the end of the document::\n\n {% coop_bar_footer %}\n\nYou can also put some navigations in the ::\n\n {% navigation_as_nested_ul %}\n\nThe navigation_as_nested_ul templatetag accepts several args\n * tree=\"english\" --> The name of the navigation_tree to use. \"default\" if missing\n * li_template=\"dropdown_li.html\" --> a template for every tags\n * ul_template=\"dropdown_ul.html\" --> a template for every tags\n * li_args=\"dropdown_li_class.html\" ---> args to be used for any - tags\n\nThere are others templatetags for navigation : ``navigation_breadcrumb``, ``navigation_children``, ``navigation_siblings`` with similar behavior\n\nNavigation configuration\n~~~~~~~~~~~~~~~~~~~~~~~~\nDon't forget to register the navigable types. In order to be accessible from the navigation, Model classes must be registered.\n * In the django admin, go to coop_cms - Navigable types\n * Add a new object and choose the model class you want to make accessible in navigation\n * Define how to get the label in navigation for a given object : use the __unicode__, use the search field or use a custom get_label method\n * If search_field is choosed, define the name of this field.\n * The search field make possible to define which field to use when the navigation tree ask for matching objects.\n\n * Then Go to a Navigation object in admin, the admin page propose to configure it thanks to a tree view\n * Type some text in the text field at the top\n * The field autocomplete propose all the objects of a NavigableType matching the text you entered\n * Select one object and click 'Add a new item'\n * The object is now part of the current navigation\n\n\nGoing further\n-------------\n\nYou can look at the demo_app in apps folder to see how to customize the behavior of coop_cms:\n * Editable \"pieces of HTML\" in your page : A editable block that can be shared by several pages.\n * Custom templates for articles and newsletters\n * Custom fields in article\n * Custom admin bar\n * Configuration values\n\nLicense\n=======\n\ncoop-cms uses the same license as Django (BSD).\n\ncoop-cms development was funded by `CREDIS `_, FSE (European Social Fund) and Conseil Regional d'Auvergne.",
"description_content_type": null,
"docs_url": null,
"download_url": "https://github.com/quinode/coop_cms/tarball/master",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/quinode/coop_cms/",
"keywords": null,
"license": "BSD",
"maintainer": null,
"maintainer_email": null,
"name": "coop-cms",
"package_url": "https://pypi.org/project/coop-cms/",
"platform": "UNKNOWN",
"project_url": "https://pypi.org/project/coop-cms/",
"project_urls": {
"Download": "https://github.com/quinode/coop_cms/tarball/master",
"Homepage": "https://github.com/quinode/coop_cms/"
},
"release_url": "https://pypi.org/project/coop-cms/0.7.0/",
"requires_dist": null,
"requires_python": null,
"summary": "Small CMS built around a tree navigation open to any django models",
"version": "0.7.0"
},
"last_serial": 788421,
"releases": {
"0.3": [
{
"comment_text": "",
"digests": {
"md5": "0d8ac9100df11c404609bfc97ced9d87",
"sha256": "8f49f9711fd385fded3ecb23ede677b711055a5bf3b9cd2ac910180fa713d5e9"
},
"downloads": -1,
"filename": "coop-cms-0.3.tar.gz",
"has_sig": false,
"md5_digest": "0d8ac9100df11c404609bfc97ced9d87",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 294671,
"upload_time": "2012-01-19T18:32:02",
"url": "https://files.pythonhosted.org/packages/68/31/8ebec6aaa336f7f33db22874d6b3a716e5957a29a3944558e8410c2509b3/coop-cms-0.3.tar.gz"
}
],
"0.3.1": [
{
"comment_text": "",
"digests": {
"md5": "3f0d7bec2c2640ba68a0620c69ea9313",
"sha256": "e44ea235d565a6d50d79f96b60c6815c9fa6c3860143679374ea46b31654c520"
},
"downloads": -1,
"filename": "coop-cms-0.3.1.tar.gz",
"has_sig": false,
"md5_digest": "3f0d7bec2c2640ba68a0620c69ea9313",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 295201,
"upload_time": "2012-01-25T08:54:00",
"url": "https://files.pythonhosted.org/packages/b8/2f/76c7310f8f526dfb579834d9238bf86afd42378754bf5239cdee597ecd09/coop-cms-0.3.1.tar.gz"
}
],
"0.3.2": [
{
"comment_text": "",
"digests": {
"md5": "ff3b86a85aa549ef69325a62d02234a4",
"sha256": "7ec1bc1ac247bf94902156666586e9f91f320e57ca8f0c5d7663d197d64967a5"
},
"downloads": -1,
"filename": "coop-cms-0.3.2.tar.gz",
"has_sig": false,
"md5_digest": "ff3b86a85aa549ef69325a62d02234a4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 295548,
"upload_time": "2012-01-25T17:11:56",
"url": "https://files.pythonhosted.org/packages/74/71/2ec57e37813f1508947e34560b7b9b458039d4d9018a81793078e5a89e2c/coop-cms-0.3.2.tar.gz"
}
],
"0.4.10": [
{
"comment_text": "",
"digests": {
"md5": "415ebcd498fe74a3e7691255712950b2",
"sha256": "0cc7c8dccfbe0d32ab7b220c4f485fd599a0a3490f991f6bb692c709dfa6b642"
},
"downloads": -1,
"filename": "coop-cms-0.4.10.tar.gz",
"has_sig": false,
"md5_digest": "415ebcd498fe74a3e7691255712950b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 391550,
"upload_time": "2012-04-07T22:45:31",
"url": "https://files.pythonhosted.org/packages/a2/57/07851a42fc387048f899d1cd5b9f851d7ec03eff355dabec354a4717312e/coop-cms-0.4.10.tar.gz"
}
],
"0.4.11": [
{
"comment_text": "",
"digests": {
"md5": "3dc11356c119382d787fec5da4f0258e",
"sha256": "877df2645d95ea3709a41e6a4770dac0302babc09c5afdab3e2cd7a9106326f4"
},
"downloads": -1,
"filename": "coop-cms-0.4.11.tar.gz",
"has_sig": false,
"md5_digest": "3dc11356c119382d787fec5da4f0258e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 400496,
"upload_time": "2012-05-09T22:05:02",
"url": "https://files.pythonhosted.org/packages/5a/12/d2c3a6aae29e203666b5764b5eaab1274490c6bef542ad5d0511605e9c3c/coop-cms-0.4.11.tar.gz"
}
],
"0.4.2": [
{
"comment_text": "",
"digests": {
"md5": "885013cc7025981543dab5d6a9a5e914",
"sha256": "98f1401ccc32fcde163064878f6459944a60dc3262545ab5714a7d18de9aa75f"
},
"downloads": -1,
"filename": "coop-cms-0.4.2.tar.gz",
"has_sig": false,
"md5_digest": "885013cc7025981543dab5d6a9a5e914",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 296309,
"upload_time": "2012-03-02T10:57:33",
"url": "https://files.pythonhosted.org/packages/99/18/73ff8ac970a4cbab83d4454144fd6f3bd3c5d04cc1bc38379fbfef7ee594/coop-cms-0.4.2.tar.gz"
}
],
"0.4.4": [
{
"comment_text": "",
"digests": {
"md5": "4a787af7983ca1a04807d432a0ea96e5",
"sha256": "63d8630ff4c763e4167d70cefd4cc86e6631ea5a63d2e1422441f27390fe7998"
},
"downloads": -1,
"filename": "coop-cms-0.4.4.tar.gz",
"has_sig": false,
"md5_digest": "4a787af7983ca1a04807d432a0ea96e5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 297355,
"upload_time": "2012-03-07T12:53:06",
"url": "https://files.pythonhosted.org/packages/17/1e/76d3778238fd09457ade5667b756690ce3f810aa363f506cb7144801b624/coop-cms-0.4.4.tar.gz"
}
],
"0.4.6": [
{
"comment_text": "",
"digests": {
"md5": "de33aba41d4370696ef8973e28d3e1c8",
"sha256": "f9d83e11148934c95e37c440e362a08fbd0c89385c16372f859bae9c21cda683"
},
"downloads": -1,
"filename": "coop-cms-0.4.6.zip",
"has_sig": false,
"md5_digest": "de33aba41d4370696ef8973e28d3e1c8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 403801,
"upload_time": "2012-03-15T16:21:04",
"url": "https://files.pythonhosted.org/packages/75/6a/2e068b11e27b519368d207b2c3cbfed4ce6021d2404260919f9ee0651d7a/coop-cms-0.4.6.zip"
}
],
"0.4.7": [
{
"comment_text": "",
"digests": {
"md5": "7d5fe58559f0a324ea0629fb663f47bb",
"sha256": "eb4a19800ddae2ede739db5f0f3e39d94eb9d85bd8b5ec46119afb5af80777c9"
},
"downloads": -1,
"filename": "coop-cms-0.4.7.zip",
"has_sig": false,
"md5_digest": "7d5fe58559f0a324ea0629fb663f47bb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 405996,
"upload_time": "2012-03-21T13:02:52",
"url": "https://files.pythonhosted.org/packages/bc/32/3fdf2da9d36cb400327a6c805734eefbf530e0b17c9b2b1e85eabfdeac64/coop-cms-0.4.7.zip"
}
],
"0.4.8": [
{
"comment_text": "",
"digests": {
"md5": "7733944ed27ffb60c99bf66a73cd8a1f",
"sha256": "4a07d76bc53051dc573aec40c08b1510e138e26adb8e33661a0388602c1c4768"
},
"downloads": -1,
"filename": "coop-cms-0.4.8.zip",
"has_sig": false,
"md5_digest": "7733944ed27ffb60c99bf66a73cd8a1f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 407128,
"upload_time": "2012-04-02T12:18:07",
"url": "https://files.pythonhosted.org/packages/c4/6c/7e4ca716967c85a8376a3baa3e89955b7b5ad2528839cf179148c8e90cab/coop-cms-0.4.8.zip"
}
],
"0.4.9": [
{
"comment_text": "",
"digests": {
"md5": "d0d7f4c396336ebe1121d066b8f9020e",
"sha256": "82b6c7724944ef1aaa3fc1718f5c49d4589350c9a70f0622d7ecfea1fa1dbe2e"
},
"downloads": -1,
"filename": "coop-cms-0.4.9.tar.gz",
"has_sig": false,
"md5_digest": "d0d7f4c396336ebe1121d066b8f9020e",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 404477,
"upload_time": "2012-04-04T21:14:54",
"url": "https://files.pythonhosted.org/packages/9f/b1/e218d69cee4757cb93ccebea6ecc980e73239cd5649fee6425e8e648e570/coop-cms-0.4.9.tar.gz"
}
],
"0.5.0": [
{
"comment_text": "",
"digests": {
"md5": "90983691603f1fd6f308c057cc53db07",
"sha256": "226701f557015f4a54e15c0b0c145edd836bc989264380ae5049757f3ff18904"
},
"downloads": -1,
"filename": "coop-cms-0.5.0.zip",
"has_sig": false,
"md5_digest": "90983691603f1fd6f308c057cc53db07",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 582329,
"upload_time": "2012-05-10T12:58:46",
"url": "https://files.pythonhosted.org/packages/2b/1e/14a6c8d577e2f4907fcca0dd99c6af626a114c90c850a6be6cfd9ffd596e/coop-cms-0.5.0.zip"
}
],
"0.5.1": [
{
"comment_text": "",
"digests": {
"md5": "fb0eeb6905cff7fb34240245b17c19b2",
"sha256": "ab7245cb1e8953216adaf1f06485119ace7c1d72fa153e085a63a5472c89633a"
},
"downloads": -1,
"filename": "coop-cms-0.5.1.tar.gz",
"has_sig": false,
"md5_digest": "fb0eeb6905cff7fb34240245b17c19b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 405968,
"upload_time": "2012-06-12T09:59:59",
"url": "https://files.pythonhosted.org/packages/a5/ec/0e00044be67a65aec43d607b828e86bec393eccf662cc5ef5bd692be51a1/coop-cms-0.5.1.tar.gz"
}
],
"0.5.2": [
{
"comment_text": "",
"digests": {
"md5": "e1e2f0901e6f94ba865cf635ad500bb1",
"sha256": "6ad3c19af195e2a5171e7f09b0f9d8a1a90492fbf9b2d73559002f99ab8faa13"
},
"downloads": -1,
"filename": "coop-cms-0.5.2.tar.gz",
"has_sig": false,
"md5_digest": "e1e2f0901e6f94ba865cf635ad500bb1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 406083,
"upload_time": "2012-06-14T13:14:41",
"url": "https://files.pythonhosted.org/packages/23/42/dd8e50e6e1e131ccf18f9f1af4aebedb5d9084f2310cafca3d49a68b52ec/coop-cms-0.5.2.tar.gz"
}
],
"0.5.3": [
{
"comment_text": "",
"digests": {
"md5": "2e72db587f69953e18d7b1f086459022",
"sha256": "5889f9ee382b2b25de42b541e057257387496f7b8ce39d987dabe8b8c2f97da5"
},
"downloads": -1,
"filename": "coop-cms-0.5.3.tar.gz",
"has_sig": false,
"md5_digest": "2e72db587f69953e18d7b1f086459022",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 406549,
"upload_time": "2012-06-27T15:17:25",
"url": "https://files.pythonhosted.org/packages/9f/bb/d81b4df7b7a0fd936367b16f32cc61af3d82ae6ff7242609ed48c85dcb1d/coop-cms-0.5.3.tar.gz"
}
],
"0.5.4": [
{
"comment_text": "",
"digests": {
"md5": "f5aa7b5ae85e3d494d18f04f3f743816",
"sha256": "6b88a60d4a54bde84bb9ceeda5493176ffd6c41a42d5c2b3f0f3a6fe9e13c39f"
},
"downloads": -1,
"filename": "coop-cms-0.5.4.tar.gz",
"has_sig": false,
"md5_digest": "f5aa7b5ae85e3d494d18f04f3f743816",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 407214,
"upload_time": "2012-06-27T19:09:48",
"url": "https://files.pythonhosted.org/packages/ef/24/be6b4ffdc4377e4bcc3705ca9c60be37adac110653d7c2fc65c1fd591b74/coop-cms-0.5.4.tar.gz"
}
],
"0.5.5": [
{
"comment_text": "",
"digests": {
"md5": "017e99172d45b4f189a1fff34ddb5996",
"sha256": "9ec4af5f98cf96c3e91908c6410bc6ec317cee94c1f31855f610ca2a94eb9846"
},
"downloads": -1,
"filename": "coop-cms-0.5.5.zip",
"has_sig": false,
"md5_digest": "017e99172d45b4f189a1fff34ddb5996",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 589387,
"upload_time": "2012-06-27T22:04:29",
"url": "https://files.pythonhosted.org/packages/03/3a/b2fb20f110cf8c5224d639e2ae25e1fa90fde345a1e73550812eb4e30292/coop-cms-0.5.5.zip"
}
],
"0.5.6": [
{
"comment_text": "",
"digests": {
"md5": "0ec6fd69f1dee0560ffc7711a37b81cd",
"sha256": "a381bc6a0b0f211d0dac67ffd2ba9a66171cd5a11a45f4d71a688f735e3a881b"
},
"downloads": -1,
"filename": "coop-cms-0.5.6.zip",
"has_sig": false,
"md5_digest": "0ec6fd69f1dee0560ffc7711a37b81cd",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 590046,
"upload_time": "2012-06-27T23:08:55",
"url": "https://files.pythonhosted.org/packages/38/45/52a7500f1e81ba264a76c473c2704efc1d09dc912a7dffaa081506eb354f/coop-cms-0.5.6.zip"
}
],
"0.6.0": [
{
"comment_text": "",
"digests": {
"md5": "afd538d844d075eb1cf85bddf811c1be",
"sha256": "2a65edc9776e22273706a5337f3ba1937abe53ec5bdad58ca3e884e0a9e45fcd"
},
"downloads": -1,
"filename": "coop-cms-0.6.0.tar.gz",
"has_sig": false,
"md5_digest": "afd538d844d075eb1cf85bddf811c1be",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 410116,
"upload_time": "2012-09-17T18:42:34",
"url": "https://files.pythonhosted.org/packages/66/15/aaadcb3d041d4ac601c0f00bee588957e6eba37848922fb68ac402fdfcdf/coop-cms-0.6.0.tar.gz"
}
],
"0.6.1": [
{
"comment_text": "",
"digests": {
"md5": "16df3a9b5f56a466672a3fa5bebc9e2f",
"sha256": "41e8dc718b91e43621f5b04e638968508398718cb76bd2c8d3097eb67c8b742f"
},
"downloads": -1,
"filename": "coop-cms-0.6.1.tar.gz",
"has_sig": false,
"md5_digest": "16df3a9b5f56a466672a3fa5bebc9e2f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 409689,
"upload_time": "2012-09-18T14:15:58",
"url": "https://files.pythonhosted.org/packages/f4/96/14e1bc197aa7f2e8bb4d33e025fa27b94532c459f337b6d01891c581fc96/coop-cms-0.6.1.tar.gz"
}
],
"0.6.2": [
{
"comment_text": "",
"digests": {
"md5": "40a6850f103dbc0288eaf006b2afd6da",
"sha256": "85ca378f8292b5e5bab3c29eec72ba0fc6f36e5b36f859d4c090318b61e73c93"
},
"downloads": -1,
"filename": "coop-cms-0.6.2.tar.gz",
"has_sig": false,
"md5_digest": "40a6850f103dbc0288eaf006b2afd6da",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 409758,
"upload_time": "2012-09-19T13:42:50",
"url": "https://files.pythonhosted.org/packages/78/bb/601628dba965bae266ea657291111c093f1589c99c39009d1946a7044c55/coop-cms-0.6.2.tar.gz"
}
],
"0.6.3": [
{
"comment_text": "",
"digests": {
"md5": "3581c55494735d129f54615eeed54758",
"sha256": "bd44c62d49a63f56e493b9a985ab38bd47fc8a1c2acf589c42ad0a029ecad0bf"
},
"downloads": -1,
"filename": "coop-cms-0.6.3.tar.gz",
"has_sig": false,
"md5_digest": "3581c55494735d129f54615eeed54758",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 409066,
"upload_time": "2012-09-20T15:09:37",
"url": "https://files.pythonhosted.org/packages/b0/d4/e62bbbb25b86319642d33e0367b80e7267db15710e3678630b317190b7bc/coop-cms-0.6.3.tar.gz"
}
],
"0.7.0": [
{
"comment_text": "",
"digests": {
"md5": "dcb40ea11650a72fc3a850ee887d4ad2",
"sha256": "7dd277e152349ad992ba2c6ea355567e99b741d89dfe30a406cc44dace0719c0"
},
"downloads": -1,
"filename": "coop-cms-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "dcb40ea11650a72fc3a850ee887d4ad2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 444543,
"upload_time": "2013-04-26T09:22:22",
"url": "https://files.pythonhosted.org/packages/4c/6d/b8f393ab911c2d6ab1545b3471396e6bfcff7bc14749232915cf949db1dc/coop-cms-0.7.0.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "dcb40ea11650a72fc3a850ee887d4ad2",
"sha256": "7dd277e152349ad992ba2c6ea355567e99b741d89dfe30a406cc44dace0719c0"
},
"downloads": -1,
"filename": "coop-cms-0.7.0.tar.gz",
"has_sig": false,
"md5_digest": "dcb40ea11650a72fc3a850ee887d4ad2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 444543,
"upload_time": "2013-04-26T09:22:22",
"url": "https://files.pythonhosted.org/packages/4c/6d/b8f393ab911c2d6ab1545b3471396e6bfcff7bc14749232915cf949db1dc/coop-cms-0.7.0.tar.gz"
}
]
}