{ "info": { "author": "Simples Consultoria", "author_email": "products@simplesconsultoria.com.br", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Plone", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "Intended Audience :: System Administrators", "License :: OSI Approved :: GNU General Public License v2 (GPLv2)", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "******************************************************\nContent Rules: Group by date\n******************************************************\n\n.. contents:: Table of Contents\n :depth: 2\n\nOverview\n--------\n\nsc.contentrules.groupbydate is a content rule action used to organize content\nunder a chronological-based hierarchy on a web site.\n\nThe 2.0 series introduces a major refactoring of the code base and **is not\nbackwards compatible** with previous versions.\n\nBase use case\n-------------\n\nA news portal with a few dozen new content items per day needs to organize its\ninformation in a chronological, yet human-readable, hierarchy.\n\nTo do so, this package is installed in a Plone Site and a new content rule is\ncreated. This content rule will be triggered by the publication of an News\nItem and will initialize a '''Move an item to a date-based folder\nstructure'''.\n\nThis action has a *Base folder* (/news), a *Hierarchy Structure* ('%Y/%m/%d')\nand a Container ('Folder'), so as our News Item, with id hello-world, is\npublished on the site, it will be moved to a a new folder structure under /news.\nSupposing it's March 29th, 2012, the item will end in\n/news/2012/03/29/hello-world.\n\n.. note:: The containers **2012**, **03** and **29** will be created using the\n Folder content type -- as specified in Container field.\n\nInstallation\n------------\n\nInclude this package in eggs and zcml section of your buildout. For further reference please refer to the `official guide`_.\n\nUsing the action\n-------------------\n\nWe will explain step by step how to config this case through plone user\ninterface.\n\n * In a Plone site go to **Site Setup** and then click on \"Content Rules\".\n\n * Click on \"Add content rule\".\n\n * Set the title to something meaninful -- 'Organize published News Items'\n --, select \"Workflow State Changed\" in **Triggered Event** and save.\n\n * You will be redirected to the previous view but you will see the rule\n you added listed. Click on the title of the rule to edit it's properties.\n\n * Ok, in here you will note that you have two settable categories. Conditions\n and actions. To make this happen, you need to add two conditions and one\n action.\n\n * The first condition must be related to the content type. Select\n \"News item\" and save.\n\n * The second one to the workflow state of the object. Select\n \"Publish\".\n\n * Now is turn of the action. Select \"Move an item to a date-based folder\n structure\" and click add.\n\n * You are now in the add form for the action. You will see three required\n fields:\n\n * \"Base folder\" is the base folder for the date hierarchy. For this\n you have different ways to set it. You can search a folder in the text\n input field or select one of the dropdown menu. In the last one you will note\n and option called \"One level up\". This means that the folder structure date\n hierarchy will be done one level up of the content selected in which the rule\n will be applied. This will be useful when we have it to multiple types of\n contents in which each one are added in different folders. Also, we have the\n option \"Same folder of content\" which is obvious to understand. In this case\n select \"News\".\n\n * \"Container\" allows you to select the folderish content to be used to create\n the group by date structure. We suggest you to use \"Folder\", the default option.\n\n * \"Hierarchy structure\" allows you to choose the way the structure will be\n created. Use strftime formating. e.g.: '%Y/%m/%d' to have 2011/11/17 or '%Y/%m'\n to have 2011/11. Leave this field with default value.\n\n * Now you just need to apply this rule in the right place of the site. If you\n don't know how to do this, follow this `link`_.\n\n\nMostly Harmless\n---------------\n\n.. image:: https://secure.travis-ci.org/collective/sc.contentrules.groupbydate.png\n :target: http://travis-ci.org/collective/sc.contentrules.groupbydate\n\n.. image:: https://coveralls.io/repos/collective/sc.contentrules.groupbydate/badge.png :target: https://coveralls.io/r/collective/sc.contentrules.groupbydate\n\n\nHave an idea? Found a bug? Let us know by `opening a support ticket`_.\n\n.. _`opening a support ticket`: https://github.com/collective/sc.contentrules.groupbydate/issues\n\n.. _`link`: http://plone.org/documentation/kb/using-content-rules/applying-a-content-rule\n\n.. _`official guide`: http://plone.org/documentation/manual/developer-manual/managing-projects-with-buildout/installing-a-third-party-product\n\nContributors\n------------\n\n- \u00c9rico Andrei\n- Cleber J Santos\n- Gustavo Lepri\n- H\u00e9ctor Velarde\n- Alejandro Pereira\n- Simone Orsi\n\nYou can find an updated list of package contributors on `GitHub`_.\n\nDevelopment sponsored by Simples Consultoria.\n\n.. _`GitHub`: https://github.com/collective/sc.contentrules.groupbydate/contributors\n\nChangelog\n---------\n\n2.0.1 (unreleased)\n^^^^^^^^^^^^^^^^^^\n\n- Dexterity content types are now listed as options to folder creation\n [ericof]\n\n- Code cleanup\n [ericof]\n\n\n2.0 (2013-04-13)\n^^^^^^^^^^^^^^^^^^^\n\n- Plone 4.3 supported\n [ericof]\n\n- Update translations, add italian traslation\n [simahawk]\n\n- Update README and move to rst\n [simahawk] \n\n\n2.0b2 (2012-11-30)\n^^^^^^^^^^^^^^^^^^\n\n- Execute IRuleExecutor for each folder created. This enables cascading content rules\n to be applied to newly created folders.\n [ericof]\n\n\n2.0b1 (2012-11-27)\n^^^^^^^^^^^^^^^^^^\n\n- This package no longer needs to be installed in the site's control panel.\n [ericof]\n\n- Removed the option to set the default layout for newly created folders.\n We suggest using sc.contentrules.layout for that.\n [ericof]\n\n- Improved test coverage\n [ericof]\n\n- PEP8 all over the code\n [ericof]\n\n1.3b4 (2012-07-24)\n^^^^^^^^^^^^^^^^^^\n\n- Fix a performance issue with updating role mappings in portals with a huge\n amount of content already created [ericof]\n\n\n1.3b3 (2012-07-10)\n^^^^^^^^^^^^^^^^^^\n\n- Removed dependency on plone.directives.form introduced on previous release.\n [aleGpereira]\n\n\n1.3b2 (2012-07-03)\n^^^^^^^^^^^^^^^^^^\n\n- Default value for container field in schema was creating problems. Updating\n this value. [aleGpereira]\n\n- Fix a little bug for container searcher vocabulary class. [aleGpereira]\n\n\n1.3b1 (2012-06-21)\n^^^^^^^^^^^^^^^^^^\n\n- Added Spanish and updated Brazilian Portuguese translations. [hvelarde]\n\n- Tested Plone 4.2 compatibility (fixes `#1`_). [hvelarde]\n\n- Fixed package declaration and updated documentation. [hvelarde]\n\n- Adding option so user can select the content type used as container.\n [aleGpereira]\n\n- Adding a field to set a prefer view method for container. [aleGpereira]\n\n- Adding integrational and functional test for view validator and container\n object creation. [aleGpereira]\n\n- Update README documentation. [aleGpereira]\n\n\n1.2 (2011-12-06)\n^^^^^^^^^^^^^^^^\n\n- Move testing to plone.app.testing [ericof]\n\n- Fix Dublin Core support [ericof]\n\n- Fix permissions for pt-br [lepri]\n\n\n1.1.1 (2011-08-22)\n^^^^^^^^^^^^^^^^^^\n\n- Fix permission for Plone 4.x [cleberjsantos]\n\n\n1.1 (2011-06-23)\n^^^^^^^^^^^^^^^^\n\n- Added z3c.autoinclude entry point to mark this as a Plone plugin\n [erico_andrei]\n\n- Support for Plone 4.1.x [erico_andrei]\n\n\n1.0 (2010-07-02)\n^^^^^^^^^^^^^^^^\n\n- Allow relative paths as base_folder [erico_andrei]\n\n- Allow inputing of strftime formatting for structure field [erico_andrei]\n\n- Add dependency of placeful workflow as we need it to avoid publishing\n content in an unpublished structure [erico_andrei]\n\n\n0.5 (2009-07-28)\n^^^^^^^^^^^^^^^^\n\n- Very earlier i18n support [erico_andrei]\n\n- Initial release\n\n.. _`#1`: https://github.com/collective/sc.contentrules.groupbydate/issues/1", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://www.simplesconsultoria.com.br/", "keywords": "plone contentrules actions date grouping", "license": "GPLv2", "maintainer": null, "maintainer_email": null, "name": "sc.contentrules.groupbydate", "package_url": "https://pypi.org/project/sc.contentrules.groupbydate/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/sc.contentrules.groupbydate/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://www.simplesconsultoria.com.br/" }, "release_url": "https://pypi.org/project/sc.contentrules.groupbydate/2.0.1/", "requires_dist": null, "requires_python": null, "summary": "A Plone content rules action that creates a chronological archive.", "version": "2.0.1" }, "last_serial": 1024980, "releases": { "0.5": [ { "comment_text": "", "digests": { "md5": "a892d033e0f93b57975451c84915d6b5", "sha256": "2b1a4e0b0c01bf51ecb9ee3cabaa4c10755ee1890696683022d4e1a1bfd6ce6f" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-0.5-py2.4.egg", "has_sig": false, "md5_digest": "a892d033e0f93b57975451c84915d6b5", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 22980, "upload_time": "2009-07-28T07:07:23", "url": "https://files.pythonhosted.org/packages/4c/a2/b00949b0e9c5cbca37385b69960a9aeabfc2a0809b481f7222af9884c1fb/sc.contentrules.groupbydate-0.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "f003cd9d059a1c39d724c698540765fd", "sha256": "d2776edc9b13468f287b4925cd43ceae9765d987811c39a36e3f9e0a7a72b2dc" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-0.5.tar.gz", "has_sig": false, "md5_digest": "f003cd9d059a1c39d724c698540765fd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14601, "upload_time": "2009-07-28T07:07:21", "url": "https://files.pythonhosted.org/packages/7f/3c/dea5b43523503b851ee84a27cb7b7202019b38e59c3be2b20548ac99c2da/sc.contentrules.groupbydate-0.5.tar.gz" } ], "1.0": [ { "comment_text": "", "digests": { "md5": "f2ee929755c904943196d49b96a49d8c", "sha256": "e8e5630e53ba713f0d67b11c9f7f52aa6b802ba12f3fb33bb04dae8467dba352" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.0-py2.4.egg", "has_sig": false, "md5_digest": "f2ee929755c904943196d49b96a49d8c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 38136, "upload_time": "2010-07-02T14:46:26", "url": "https://files.pythonhosted.org/packages/4c/7b/9e2a2b7dc13f27d00154ee6facfa2d2c7364545c4ac497cbb910ad422f66/sc.contentrules.groupbydate-1.0-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "68d71868dfdb7704b228e81c4f89908c", "sha256": "674859cebbbdf25dd65f7b06df6d8df2e14f420995ad544d29d6e6afd8ea5ada" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.0.tar.gz", "has_sig": false, "md5_digest": "68d71868dfdb7704b228e81c4f89908c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19320, "upload_time": "2010-07-02T14:46:24", "url": "https://files.pythonhosted.org/packages/12/d4/44dc677ffd6b2b0903770d13225fc42b47750c9973846cab5b11ea1ec674/sc.contentrules.groupbydate-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "285a3e0cd1d1f048f56cbacd5e27f332", "sha256": "bb5cfd50b6f588e8562fecae867bf8eba0f0f83c1f08dd8511cf5e664455523f" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.1.tar.gz", "has_sig": false, "md5_digest": "285a3e0cd1d1f048f56cbacd5e27f332", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21443, "upload_time": "2011-06-23T18:42:21", "url": "https://files.pythonhosted.org/packages/ba/88/3b7d1f83ea4b1929217571f5d8f212b4687028fbec28081b8bd97c665deb/sc.contentrules.groupbydate-1.1.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "c10966feaafe93f0b4c1427c24e778ff", "sha256": "2a6726222bcc642c4ee01550f6cbf048db9871479e731e3bb683fe3e71575d0d" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.1.1.tar.gz", "has_sig": false, "md5_digest": "c10966feaafe93f0b4c1427c24e778ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21601, "upload_time": "2011-08-22T21:47:08", "url": "https://files.pythonhosted.org/packages/54/03/d7a2a4519e6464936edd2115e6fc24c2809f954f490b0f391cba5c918c4c/sc.contentrules.groupbydate-1.1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "a8b73769a5b7fe1de8a3dedd8105dd49", "sha256": "d7929bdddb93282c459525be8eb0caf363b19d0f63c930ffdbaa9de119543c46" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.2.tar.gz", "has_sig": false, "md5_digest": "a8b73769a5b7fe1de8a3dedd8105dd49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22483, "upload_time": "2011-12-06T14:38:16", "url": "https://files.pythonhosted.org/packages/d3/2a/5d8e79ff8e5560cc3b75b04cc31ee2f5ce562a3925fed7e838a26323635a/sc.contentrules.groupbydate-1.2.tar.gz" } ], "1.3b1": [ { "comment_text": "", "digests": { "md5": "c6966978eeea7d8e837eec81ebafead9", "sha256": "150fe0a71db813e1ac3916a19dd49de1e4d24265743e6d5133da6c32d8fcf1da" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.3b1.zip", "has_sig": false, "md5_digest": "c6966978eeea7d8e837eec81ebafead9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49751, "upload_time": "2012-06-21T20:24:47", "url": "https://files.pythonhosted.org/packages/98/23/512f06735accc2a3a03d51f1e8206ef472b9831209d45092dfd295f1f697/sc.contentrules.groupbydate-1.3b1.zip" } ], "1.3b2": [ { "comment_text": "", "digests": { "md5": "ac140fdd95ebed375d9c3dbc0897ee38", "sha256": "bcd4e1033cfc830646d1188d2399c07050aefe503272dc6c2d9b8d4035fbc1db" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.3b2.zip", "has_sig": false, "md5_digest": "ac140fdd95ebed375d9c3dbc0897ee38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 50955, "upload_time": "2012-07-03T18:03:06", "url": "https://files.pythonhosted.org/packages/de/02/3b7bf273321414f87cb38fd0a743c72b403a5d072e6362efe30054d16a3b/sc.contentrules.groupbydate-1.3b2.zip" } ], "1.3b3": [ { "comment_text": "", "digests": { "md5": "1e3a7ed7122193951777b9991a5c9ffb", "sha256": "39e4790e5a48aed3de368ddacacba8e4e36bdab59a819da5fdfda9b1ac6329ef" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.3b3.zip", "has_sig": false, "md5_digest": "1e3a7ed7122193951777b9991a5c9ffb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51063, "upload_time": "2012-07-10T21:39:56", "url": "https://files.pythonhosted.org/packages/fa/8b/da015bd138671fbf1c11214f0b563c2a3ad5e7049181d3589b3e78325e17/sc.contentrules.groupbydate-1.3b3.zip" } ], "1.3b4": [ { "comment_text": "", "digests": { "md5": "29453f542b2c30839c93007bb4dd657c", "sha256": "62e0672cc17450d051cde17e3b8b31c217697f0a0c19c0b332d8cda1fc2203a9" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-1.3b4.zip", "has_sig": false, "md5_digest": "29453f542b2c30839c93007bb4dd657c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 51765, "upload_time": "2012-07-24T21:16:38", "url": "https://files.pythonhosted.org/packages/47/f6/01b818c6e9278f699d80de444aceccc3c566b99cdc40258bb45a9ba010c7/sc.contentrules.groupbydate-1.3b4.zip" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "a63bbd7658f8c9505c45daf70ece6b84", "sha256": "08f6cf41a58e2fbec4cc3a5f78d3f00772e73320963cdb4483c8ecb9bdb3048c" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-2.0.zip", "has_sig": false, "md5_digest": "a63bbd7658f8c9505c45daf70ece6b84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48720, "upload_time": "2013-04-13T14:27:39", "url": "https://files.pythonhosted.org/packages/27/f1/42e6b44a3581c019bc7d319f3f3326258e339c28ccdc106f30f2deb15a9e/sc.contentrules.groupbydate-2.0.zip" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "a90ac272b80f85597aafbce0440976d2", "sha256": "624cf9144d4cd284ba4b56138e6c653d2a06551e6cff9f4e3aacb908df66a91e" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-2.0.1.zip", "has_sig": false, "md5_digest": "a90ac272b80f85597aafbce0440976d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49221, "upload_time": "2014-03-10T14:22:56", "url": "https://files.pythonhosted.org/packages/b1/3d/8fa41f00150f27e4a71037aed638cab8b5bc169e5735e0abd8f71dac09bb/sc.contentrules.groupbydate-2.0.1.zip" } ], "2.0b1": [ { "comment_text": "", "digests": { "md5": "7e475e48154fc056480f448a229d74e7", "sha256": "44dcf5f9f6bfb10d25af79e9481abbc54c4ff376c858284ecb8db388242aabb7" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-2.0b1.zip", "has_sig": false, "md5_digest": "7e475e48154fc056480f448a229d74e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 47544, "upload_time": "2012-11-27T16:12:58", "url": "https://files.pythonhosted.org/packages/58/c1/6cd4a1e9da2a3118e9234e882be1f1cbab49c0b74fcaef8fe0a8c01a8795/sc.contentrules.groupbydate-2.0b1.zip" } ], "2.0b2": [ { "comment_text": "", "digests": { "md5": "87a9cfe97b66cf5ae00bd6ba39dd5cec", "sha256": "883656062a959acf81bcf0f2f247ec3207f7358a64594bce2e1ec6d718d05990" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-2.0b2.zip", "has_sig": false, "md5_digest": "87a9cfe97b66cf5ae00bd6ba39dd5cec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48081, "upload_time": "2012-11-30T18:13:40", "url": "https://files.pythonhosted.org/packages/3a/38/d72e2ef4a47f84b67afe26808670348321d99acaefe603a228312ca2c4b8/sc.contentrules.groupbydate-2.0b2.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "a90ac272b80f85597aafbce0440976d2", "sha256": "624cf9144d4cd284ba4b56138e6c653d2a06551e6cff9f4e3aacb908df66a91e" }, "downloads": -1, "filename": "sc.contentrules.groupbydate-2.0.1.zip", "has_sig": false, "md5_digest": "a90ac272b80f85597aafbce0440976d2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 49221, "upload_time": "2014-03-10T14:22:56", "url": "https://files.pythonhosted.org/packages/b1/3d/8fa41f00150f27e4a71037aed638cab8b5bc169e5735e0abd8f71dac09bb/sc.contentrules.groupbydate-2.0.1.zip" } ] }