{ "info": { "author": "Alex Clark", "author_email": "aclark@aclark.net", "bugtrack_url": null, "classifiers": [ "Framework :: Buildout", "Framework :: Plone" ], "description": ".. contents:: :depth: 2\n\nParse2Plone\n===========\n\nEasily import static websites into Plone\n\nIntroduction\n------------\n\n``Parse2Plone`` is a \"one off\" HTML parser (in the form of a Buildout recipe that\ncreates a script for you) to easily get content from static HTML websites\n(on the file system) into Plone.\n\nIt is designed to satisfy only the most trivial of use cases (e.g. a simple static\nsite in /var/www/html); for more serious deployments, you might enjoy\n`funnelweb`_.\n\n.. _`funnelweb`: http://pypi.python.org/pypi/funnelweb\n\nWarning\n-------\n\nThis is a **Buildout** recipe for use with **Plone**; by itself it does nothing. If you\ndon't know what Plone is, please see: http://plone.org. If you don't know\nwhat Buildout is, please see: http://www.buildout.org/.\n\nGetting started\n---------------\n\nBecause it drives the author nuts whenever he has to dig for a recipe's options,\nhere are this recipe's options::\n\n [import]\n recipe = parse2plone\n\n # core features\n path = /Plone\n illegal_chars = _ .\n html_extensions = html\n image_extensions = gif jpg jpeg png\n file_extensions = mp3\n target_tags = a div h1 h2 p\n \n # additional bells & whistles\n force = false\n publish = false\n collapse = false\n replacetypes =\n rename =\n match =\n paths =\n\n.. Note::\n The parameters listed above are configured with their default values. Edit these\n values if you would like to change the default behavior; they are (mostly)\n self-explanatory. Now you can just cut and paste to get started or keep reading if\n you would like to know more.\n\nJustification\n-------------\n\nWhy did you create ``Parse2Plone`` when `collective.transmogrifier`_ already\nexists?\n\nHere are some reasons:\n\n* Because ``Parse2Plone`` is aimed at lowering the bar for folks who don't already\n know (or want to know) what a \"transmogrifier blueprint\" is but are able to update\n their ``buildout.cfg`` file; run ``Buildout``; then run a single command; all\n without having to think too much.\n\n* collective.transmogrify provides a framework for creating reusable pipes\n (whose definitions are called blueprints). ``Parse2Plone`` provides \n a single, non-reusable script.\n\n* Transmogrifier and friends appear to be \"developer's tools\", while the author wants\n ``Parse2Plone`` to be an \"end user's tool\".\n\nIf you are a developer looking to create repeatable migrations, you probably want to be\nusing ``collective.transmogrifier``. If you are an end user that just wants to see your\nstatic website in Plone, then you might want to give ``Parse2Plone`` a try.\n\nThere is also this user/contributor comment, which captures the author's sentiment::\n\n Parse2Plone's release was very timely as I need either this or something very\n similar - and while I've no doubt I could make transmogrify do the job, it's a\n lot of work for a one-shot loading of legacy pages.\n\n -Derek Broughton, Pointer\n Stop Consulting, Inc.\n\nThat's great, but why didn't you try to improve `collective.transmogrifier`_\nand make it more user friendly?\n\nHere are some reasons:\n\n* The author is a minimalist. One of the design aims of ``Parse2Plone`` was to\n have as few dependencies as possible. There are two \"big\" dependencies,\n ``zc.buildout`` and ``lxml``. Using Buildout was a design compromise, and\n using ``lxml`` is pretty much a must if you want to \"parse\". Oh, and \n ``BeautifulSoup`` was thrown in after the author read this:\n http://codespeak.net/lxml/elementsoup.html\n\n* ``parse2plone`` in addition to its primary role as a content importer, is\n intended to serve as an educational tool; both for the author and consumer.\n Python coding best practices, and demonstrating how to script tasks in Plone\n with \"bin/instance run\" are the aim. Forking and pull requests are encouraged.\n\n* The author had an itch to scratch; it will be nice for him to be able to say\n \"just go write a script\" and then point to an example.\n\nAll of that said, the author understands that reusability and conservation of\ndeveloper resources are important goals, especially for the Plone project.\nBut for better or worse, these were not the goals of ``Parse2Plone``. However,\nyou can be sure that the lessons learned while developing ``Parse2Plone`` will \nbe applied outside of it, particularly with regard to the conservation of developer\nresources within the Plone project.\n\n.. _`collective.transmogrifier`: http://pypi.python.org/pypi/collective.transmogrifier\n\nInstallation\n------------\n\nYou can install ``Parse2Plone`` by editing your ``buildout.cfg`` file like\nso. First add an ``import`` section::\n\n [import]\n recipe = parse2plone\n\nThen add the ``import`` section to the list of parts::\n\n [buildout]\n ...\n parts =\n ...\n import\n\nNow run ``bin/buildout`` as usual.\n\n.. Note::\n The section name ``import`` is arbitrary, you can call it whatever you\n want. Just keep in mind that the section name corresponds directly to the\n script name. In other words, whatever you name the section - that's what\n the script will be called.\n\n\nExecution\n---------\n\nNow you can run ``Parse2Plone`` like this::\n\n $ bin/plone run bin/import /path/to/files\n\n.. Note:: \n In the example above and examples below, ``bin/plone`` refers to a *Zope 2\n instance* script created by `plone.recipe.zope2instance`_.\n\n Your ``bin/plone`` script may be called ``bin/instance`` or\n ``bin/client``, etc. instead.\n\n.. _`plone.recipe.zope2instance`: http://pypi.python.org/pypi/plone.recipe.zope2instance\n\nExample\n-------\n\nIf you have a site in /var/www/html that contains the following::\n\n /var/www/html/index.html\n /var/www/html/about/index.html\n\nYou should run::\n\n $ bin/plone run bin/import /var/www/html\n\nAnd the following will be created:\n\n* http://localhost:8080/Plone/index.html\n* http://localhost:8080/Plone/about/index.html\n\nCustomization\n-------------\n\nModifying the default behavior of ``parse2plone`` is easy; just use the command\nline options or add parameters to your ``buildout.cfg`` file. Both approaches\nallow customization of the exact same set of options, but the command line\narguments will trump any settings found in your ``buildout.cfg`` file.\n\nBuildout options\n~~~~~~~~~~~~~~~~\n\nYou can configure the following parameters in your ``buildout.cfg`` file in\nthe ``parse2plone`` recipe section.\n\nOptions\n'''''''\n+---------------------+-------------+----------------------------------------+\n| **Parameter** | **Default** | **Description** |\n| | **value** | |\n+---------------------+-------------+----------------------------------------+\n| ``path`` | /Plone | Specify an alternate location in the |\n| | | database for the import to occur. |\n+---------------------+-------------+----------------------------------------+\n| ``illegal_chars`` | _ . | Specify illegal characters. |\n| | | ``parse2plone`` will ignore files that |\n| | | contain these characters. |\n+---------------------+-------------+----------------------------------------+\n| ``html_extensions`` | html | Specify HTML file extensions. |\n| | | ``parse2plone`` will import HTML files |\n| | | with these extensions |\n+---------------------+-------------+----------------------------------------+\n| ``image_extensions``| png, gif, | Specify image file extensions. |\n| | jpg, jpeg, | ``parse2plone`` will import image files|\n| | | with these extensions. |\n+---------------------+-------------+----------------------------------------+\n| ``file_extensions`` | mp3 | Specify image file extensions. |\n| | | ``parse2plone`` will import files with |\n| | | with these extensions. |\n+---------------------+-------------+----------------------------------------+\n| ``target_tags`` | a h1 h2 p | Specify target tags. ``parse2plone`` |\n| | | will parse the contents of HTML tags |\n| | | listed. If any tag is provided as an |\n| | | XPath expression (any expression |\n| | | begining with /) the matching elements |\n| | | will first be extracted from the root |\n| | | document. Selections for the contents |\n| | | of other tags will then be performed |\n| | | only on the document subset. |\n| | | If only XPath expressions are given, |\n| | | then the entire subtree of the matched |\n| | | elements are returned (including HTML) |\n+---------------------+-------------+----------------------------------------+\n| ``force`` | false | Force create folders that do not exist.|\n| | | For example, if you do |\n| | | --path=/Plone/foo and foo does not |\n| | | exist, you will get an error message. |\n| | | Use --force to tell ``parse2plone`` to |\n| | | create it. |\n+---------------------+-------------+----------------------------------------+\n| ``publish`` | false | Publish newly created content. |\n+---------------------+-------------+----------------------------------------+\n| ``collapse`` | false | \"collapse\" content. (see |\n| | | collapse_parts() in parse2plone.py) |\n+---------------------+-------------+----------------------------------------+\n| ``rename`` | | Rename content. (see rename_parts() |\n| | | in parse2plone.py | \n+---------------------+-------------+----------------------------------------+\n| ``replacetypes`` | | Use custom types. (see replace_types())|\n+---------------------+-------------+----------------------------------------+\n| ``match`` | | Match files. (see match_files()) |\n+---------------------+-------------+----------------------------------------+\n| ``paths`` | | Specify a series of locations on the |\n| | | filesystem, with corresponding |\n| | | locations in the database for imports, |\n| | | with syntax: |\n| | | --paths=import_dirs:object_paths |\n| | | (--path will be ignored) |\n+---------------------+-------------+----------------------------------------+\n\nExample\n'''''''\n\nInstead of accepting the default ``parse2plone`` behaviour, in your\n``buildout.cfg`` file you may specify the following::\n\n [import]\n recipe = parse2plone\n path = /Plone/foo\n html_extensions = htm\n image_extensions = png\n target_tags = p\n\nThis will configure ``parse2plone`` to (only) import content *from*:\n\n* Images ending in ``.png``\n* HTML files ending in ``.htm``\n* Text within ``p`` tags\n\n*to*: \n\n* A folder named ``/Plone/foo``.\n\nCommand line options\n~~~~~~~~~~~~~~~~~~~~\n\nThe following ``parse2plone`` command line options are supported.\n\nOptions\n'''''''\n\n``'--path'``, ``'-p'``\n**********************\n\nYou can specify an alternate import path ('/Plone' by default)\nwith ``--path`` or ``-p``::\n\n $ bin/plone run bin/import /path/to/files --path=/Plone/foo\n\n``'--html-extensions'``\n***********************\n\nYou can specify HTML file extensions with the ``--html-extensions`` option::\n\n $ bin/plone run bin/import /path/to/files --html-extensions=htm\n\n``'--image-extensions'``\n************************\n\nYou can specify image file extensions with the ``--image-extensions`` option::\n\n $ bin/plone run bin/import /path/to/files --image-extensions=png\n\n``'--file-extensions'``\n***********************\n\nYou can specify generic file extensions with the ``--file-extensions`` option::\n\n $ bin/plone run bin/import /path/to/files --file-extensions=pdf\n\n``'--target-tags'``\n*******************\n\nYou can specify the target tags to parse with the ``--target-tags`` option::\n\n $ bin/plone run bin/import /path/to/files --target-tags=p\n\n``'--force'``\n*************\n\nForce create folders that do not exist.\n\n``'--publish'``\n***************\n\nPublish newly created content.\n\n``'--collapse'``\n****************\n\n\"collapse\" content (see collapse_parts()).\n\n``'--rename'``\n***************\n\nRename content (see rename_files()).\n\n``'--replacetypes'``\n********************\n\nCustomize types (see replace_types() in parse2plone.py).\n\n``'--match'``\n****************\n\nMatch files (see match_files()).\n\n``'--paths'``\n*************\n\nYou can specify a series of import paths and corresponding object paths::\n\n $ bin/plone run bin/import --paths=sample:Plone/sample,sample2:Plone/sample2\n\n``'--help'``\n************\n\nAnd lastly, you can always ask ``parse2plone`` to tell you about its available options with\nthe ``--help`` or ``-h`` option::\n\n $ bin/plone run bin/import -h\n\nExample\n'''''''\n\nInstead of accepting the default ``parse2plone`` behaviour, on the command line you\nmay specify the following::\n\n $ bin/plone run bin/import /path/to/files -p /Plone/foo --html-extensions=html \\\n --image-extensions=png --target-tags=p\n\nThis will configure ``parse2plone`` to (only) import content *from*:\n\n* Images ending in ``.png``\n* HTML files ending in ``.htm``\n* Text within ``p`` tags\n\n*to*: \n\n* A Plone site folder named ``/Plone/foo``.\n\nTroubleshooting\n---------------\n\nHere are some trouble-shooting comments/tips.\n\nCompiling lxml\n~~~~~~~~~~~~~~\n\n``Parse2Plone`` requires ``lxml`` which in turn requires ``libxml2`` and\n``libxslt``. If you do not have ``lxml`` installed \"globally\" (i.e. in your\nsystem Python's site-packages directory) then Buildout will try to install it\nfor you. At this point ``lxml`` will look for the libxml2/libxslt2 development\nlibraries to build against, and if you don't have them installed on your system\nalready *your mileage may vary* (i.e. Buildout will fail).\n\nDatabase access\n~~~~~~~~~~~~~~~\n\nBefore running ``parse2plone``, you must either stop your Plone site or\nuse ZEO. Otherwise ``parse2plone`` will not be able to access the\ndatabase.\n\nContact\n-------\n\nQuestions, comments, or concerns? Please e-mail: aclark@aclark.net.\n\nCredits\n-------\n\nDevelopment sponsored by Radio Free Asia \n\nHistory\n-------\n\n0.9.9 (11/16/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Added a large number of tests; performed associated refactoring; 50% test coverage\n\n0.9.8 (11/12/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Add \"paths\" feature to allow multi-import dirs (on the\n file system), and corresponding object paths (in Plone)\n to be specified.\n\n0.9.7 (11/08/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Fix import error\n* Add file handler to logger; saves output to a file called \"parse2plone.log\"\n\n0.9.6 (11/08/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Fixes to \"match\" feature\n* Combine all modules into one\n* Remove a stray pdb (!)\n* Add tests (we're at 20% test coverage people!)\n* Update docs\n\n0.9.5 (11/08/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Add match feature\n* Add more project justifications to the docs\n\n0.9.4 (11/06/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Remove ``bin/import`` script whenever recipe is uninstalled [aclark4life]\n* Add support for XPath syntax in target_tags [derek]\n* Add \"typeswap\" feature [aclark4life]\n* Update docs [aclark4life]\n\n0.9.3 (11/04/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Add Plone 2.5 compat\n* Bug fixes\n\n * Better handling of file system path; better base dir calculation\n\n0.9.2 (11/03/2010)\n~~~~~~~~~~~~~~~~~~\n\n* More doc fixes\n\n0.9.1 (11/03/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Doc fixes\n\n0.9.0 (11/03/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Fix regressions introduced (or unresolved as of) 0.8.2. Thanks Derek\n Broughton for the bug report(s)\n\n * Many fixes to convert_parameter_values() method which converts\n recipe parameters to arguments passed to main()\n * Fix \"slugify\" feature\n\n0.8.2 (11/02/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Add rename feature\n* Fix regressions introduced in 0.8.1\n\n0.8.1 (10/29/2010)\n~~~~~~~~~~~~~~~~~~\n\n* Refactor options/parameters functionality to universally support _SETTINGS dict\n* Add \"slugify\" feature\n* Doc fixes\n* Add support to optionally publish content after creation\n* Add support for generic file import\n\n0.8 (10/27/2010)\n~~~~~~~~~~~~~~~~\n\n* Support the importing of content to folders within the Plone site object\n\n0.7 (10/25/2010)\n~~~~~~~~~~~~~~~~\n\n* Documentation fixes\n\n0.6 (10/25/2010)\n~~~~~~~~~~~~~~~~\n\n* Support customization via recipe parameters and command line arguments\n\n0.5 (10/22/2010)\n~~~~~~~~~~~~~~~~\n\n* Revert 'Add Plone to install_requires'\n\n0.4 (10/22/2010)\n~~~~~~~~~~~~~~~~\n\n* Add 'Plone' to install_requires\n\n0.3 (10/22/2010)\n~~~~~~~~~~~~~~~~\n\n* Another setuptools fix\n\n0.2 (10/22/2010)\n~~~~~~~~~~~~~~~~\n\n* Setuptools fix\n\n0.1 (10/21/2010)\n~~~~~~~~~~~~~~~~\n\n* Initial release", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://aclark4life.github.com/Parse2Plone", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "parse2plone", "package_url": "https://pypi.org/project/parse2plone/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/parse2plone/", "project_urls": { "Download": "UNKNOWN", "Homepage": "http://aclark4life.github.com/Parse2Plone" }, "release_url": "https://pypi.org/project/parse2plone/0.9.9/", "requires_dist": null, "requires_python": null, "summary": "Easily import static HTML websites into Plone.", "version": "0.9.9" }, "last_serial": 796021, "releases": { "0.1": [ { "comment_text": "", "digests": { "md5": "6d3040c09ed322c6fb233c74aca3acc4", "sha256": "4e5c9582c74dc706f725b95c76d3d52e29c9aef9424da2c202eacf5e3a8e5346" }, "downloads": -1, "filename": "parse2plone-0.1.zip", "has_sig": false, "md5_digest": "6d3040c09ed322c6fb233c74aca3acc4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12650, "upload_time": "2010-10-22T03:41:36", "url": "https://files.pythonhosted.org/packages/15/b4/9ae7bca4013194266064e56bf956dfcee52c4e0ecaeecc035a0912053be3/parse2plone-0.1.zip" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "fe6c827d07861572b98d7d5a4e40e749", "sha256": "bccaf6402c17a0da6bb4072461782c1aa0b818b99344814e28790ed1c51231ee" }, "downloads": -1, "filename": "parse2plone-0.2.zip", "has_sig": false, "md5_digest": "fe6c827d07861572b98d7d5a4e40e749", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9961, "upload_time": "2010-10-22T15:16:14", "url": "https://files.pythonhosted.org/packages/bc/01/488c94ee36c347080ec7e8d1871081da4da547a04d0a556c6e3a870ed043/parse2plone-0.2.zip" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "25a22bdfd9005c9a00f9208bb7ac4bfb", "sha256": "0cbe28a0e91e1a4540dbfcc33f1dc265553fb535a6630f248e392884ec59ea26" }, "downloads": -1, "filename": "parse2plone-0.3.zip", "has_sig": false, "md5_digest": "25a22bdfd9005c9a00f9208bb7ac4bfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12492, "upload_time": "2010-10-22T15:18:49", "url": "https://files.pythonhosted.org/packages/bf/1e/3d0f1c16ce361e576dd023502e825c93ce3c57ea058c6c78c298f549747d/parse2plone-0.3.zip" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "45933094608562f488452ef284d0c977", "sha256": "2737f9f119c06d36a77871bfe2e2e618927f49cdeb61df99dd4ee0aecb880db5" }, "downloads": -1, "filename": "parse2plone-0.4.zip", "has_sig": false, "md5_digest": "45933094608562f488452ef284d0c977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12966, "upload_time": "2010-10-22T15:26:49", "url": "https://files.pythonhosted.org/packages/ab/98/32c2cd99a9c1d9f24dbc7484c2e76209d6134ca85ef53bab3eac1939e97b/parse2plone-0.4.zip" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "c820d15916fce6c49281d97ec9e6a0ea", "sha256": "165f34e68c17e5b8b4c0dcd85d85cfbdfff3917478ee0bfd5b95b35a01facf01" }, "downloads": -1, "filename": "parse2plone-0.5.zip", "has_sig": false, "md5_digest": "c820d15916fce6c49281d97ec9e6a0ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12781, "upload_time": "2010-10-22T15:30:08", "url": "https://files.pythonhosted.org/packages/2f/06/afc20ecea171b29dffbde8ab21d187a1565cce826dfa5940ceeb0117dfc9/parse2plone-0.5.zip" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "9283d0f4c18f53f4abeb3b874b258e3c", "sha256": "fd7874973461ce6bdbc323df6ba6e44e08864ee7f59385ed49fb0449bd8826a4" }, "downloads": -1, "filename": "parse2plone-0.6.zip", "has_sig": false, "md5_digest": "9283d0f4c18f53f4abeb3b874b258e3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17811, "upload_time": "2010-10-25T20:33:31", "url": "https://files.pythonhosted.org/packages/73/41/23dd0172003f59ccf2bb6306216eac5cdea53d9e3a7cfe24ba9eec722080/parse2plone-0.6.zip" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "799564c58bb1b5cb4260fd1052d2128e", "sha256": "919319950aa27bd9b012dd7f5009d63e401c0aec52cd79d36cb4ee81e912a8fd" }, "downloads": -1, "filename": "parse2plone-0.7.zip", "has_sig": false, "md5_digest": "799564c58bb1b5cb4260fd1052d2128e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18321, "upload_time": "2010-10-25T22:30:13", "url": "https://files.pythonhosted.org/packages/db/a4/3d2ef509fff6f681b3f55d6f0eb00d42ee0cc9f1d30cea8240c6ac968f11/parse2plone-0.7.zip" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "8c302e2b3d881417554d923f424d9aec", "sha256": "6f999624c2315e40f15cef7d8c23f1d9ec18902c9e099037bab2faa5378634aa" }, "downloads": -1, "filename": "parse2plone-0.8.zip", "has_sig": false, "md5_digest": "8c302e2b3d881417554d923f424d9aec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22695, "upload_time": "2010-10-27T21:34:53", "url": "https://files.pythonhosted.org/packages/75/df/e9571e9226db3a4963e7ef5a985f4f97f63c559c688e651f9db8743fc014/parse2plone-0.8.zip" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "69dc8395a9960c7b320bcf3bed83b4e3", "sha256": "fe7619a776c85d988dd95f02feb46191886aed729849a42094196451c7ea6a7c" }, "downloads": -1, "filename": "parse2plone-0.8.1.zip", "has_sig": false, "md5_digest": "69dc8395a9960c7b320bcf3bed83b4e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26075, "upload_time": "2010-10-30T05:00:18", "url": "https://files.pythonhosted.org/packages/6a/6f/195bf35728f3e6e54a47cf2a608d5b4bce2e0421647e1c0ade1238f52837/parse2plone-0.8.1.zip" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "a16577b5972e38b798759cfa035dc636", "sha256": "cbc44840e2c3b7aa0f45081a4d1ea71c2aedd65e925d173a2706bf2836002744" }, "downloads": -1, "filename": "parse2plone-0.8.2.zip", "has_sig": false, "md5_digest": "a16577b5972e38b798759cfa035dc636", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32967, "upload_time": "2010-11-02T15:30:09", "url": "https://files.pythonhosted.org/packages/e2/66/58421b332577b8f260250bde1e6f7e192703587d0a71d44f8bc3eb734333/parse2plone-0.8.2.zip" } ], "0.9.0": [ { "comment_text": "", "digests": { "md5": "e885667a6cccaad9e5f4d23c766f89f0", "sha256": "59fb2c4b81ba1c69e4515b4c05ed0d6104c327e2170e2b8c079febc1bd4c3716" }, "downloads": -1, "filename": "parse2plone-0.9.0.zip", "has_sig": false, "md5_digest": "e885667a6cccaad9e5f4d23c766f89f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35627, "upload_time": "2010-11-03T23:35:28", "url": "https://files.pythonhosted.org/packages/d3/be/f8b1322b6b436c932d24ab0b1c3d423fe9e18963ff5eec87cd02a07d7eeb/parse2plone-0.9.0.zip" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "2e9d5c35c08957741f2e2070aabf2e48", "sha256": "7a90fc5e52958a043a784d07ef88ca1efb50c87e3f491fdccbb34e4d398f6ebf" }, "downloads": -1, "filename": "parse2plone-0.9.1.zip", "has_sig": false, "md5_digest": "2e9d5c35c08957741f2e2070aabf2e48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35627, "upload_time": "2010-11-03T23:40:13", "url": "https://files.pythonhosted.org/packages/28/f2/3a34491ded1bd30a60e18746c54bcf0918d30a17075d4fbe9b66791c4d75/parse2plone-0.9.1.zip" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "78d1daba633d2058ed59a2d25881983a", "sha256": "654af6606a7ce50630ab2a30f7231612c16e98c1ab9a72a47e3e83cb0d0da39e" }, "downloads": -1, "filename": "parse2plone-0.9.2.zip", "has_sig": false, "md5_digest": "78d1daba633d2058ed59a2d25881983a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35677, "upload_time": "2010-11-03T23:42:59", "url": "https://files.pythonhosted.org/packages/2b/29/f189e4ce4b874137ba13a05cbbe4dc2cf72f36bbe85f41a682e938b8f8e5/parse2plone-0.9.2.zip" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "ec36f24867026c224c472dabaf16ef6f", "sha256": "e278dc4258ceccbb7293a61ea96133689aac32a0e885b3cfc1491085f32e00fc" }, "downloads": -1, "filename": "parse2plone-0.9.3.zip", "has_sig": false, "md5_digest": "ec36f24867026c224c472dabaf16ef6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36449, "upload_time": "2010-11-05T02:51:51", "url": "https://files.pythonhosted.org/packages/9f/40/5d412d5a4db96b74c255a16e7fb08cb715e315619e9fb338faecf154e81d/parse2plone-0.9.3.zip" } ], "0.9.4": [ { "comment_text": "", "digests": { "md5": "35df575831074e496de8fa798bb61834", "sha256": "53df6b8bd9f880e7acf05bb2f310eff34b3d5a90dae861e3833ae60fb17b2dae" }, "downloads": -1, "filename": "parse2plone-0.9.4.zip", "has_sig": false, "md5_digest": "35df575831074e496de8fa798bb61834", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39832, "upload_time": "2010-11-06T13:56:23", "url": "https://files.pythonhosted.org/packages/55/81/5e2d2a9948076aab4a19db5c2dc0485ac25cf83174c0fc1cbd9c1a5d395d/parse2plone-0.9.4.zip" } ], "0.9.5": [ { "comment_text": "", "digests": { "md5": "11e99c99002017a956d0e9f7cec5d136", "sha256": "eb7b944ad0123a258ca64bd04d4244dee1f2761907541f17e37244a4bdac35c3" }, "downloads": -1, "filename": "parse2plone-0.9.5.zip", "has_sig": false, "md5_digest": "11e99c99002017a956d0e9f7cec5d136", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41954, "upload_time": "2010-11-09T15:19:10", "url": "https://files.pythonhosted.org/packages/19/ac/c79dd24c105762c028d7b95c27de76e9e63d7d4561010448900aa275807d/parse2plone-0.9.5.zip" } ], "0.9.6": [ { "comment_text": "", "digests": { "md5": "e3765c0a61138f0adda74fc3ab7cf07e", "sha256": "475152e8c0c0badc3d0b7e9d61b54fc24577972d485bdf4cc72cc7c2f422f11d" }, "downloads": -1, "filename": "parse2plone-0.9.6.zip", "has_sig": false, "md5_digest": "e3765c0a61138f0adda74fc3ab7cf07e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48061, "upload_time": "2010-11-10T05:16:20", "url": "https://files.pythonhosted.org/packages/82/81/d4381eab08df8ecaa25015b14823012bd0b46f5a94eb6b638c68eaf1d541/parse2plone-0.9.6.zip" } ], "0.9.7": [ { "comment_text": "", "digests": { "md5": "354fbe0b9c4b6e29edef9176ca4d3bdc", "sha256": "410971d802ebe47b37d18bcc31a097941e5469b8450172d8ec273c5e0096aea2" }, "downloads": -1, "filename": "parse2plone-0.9.7.zip", "has_sig": false, "md5_digest": "354fbe0b9c4b6e29edef9176ca4d3bdc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48350, "upload_time": "2010-11-10T06:03:23", "url": "https://files.pythonhosted.org/packages/1d/60/0d9de5544f4baee19ef5c814065cafb183c43a17157d3da0201f2243dd88/parse2plone-0.9.7.zip" } ], "0.9.8": [ { "comment_text": "", "digests": { "md5": "842c52bab194c623f89ca90d5d8709a7", "sha256": "113d0727b4325824f4afd6e51bfbc676c8f77fb2f9b6eb9b177947e8be10f0eb" }, "downloads": -1, "filename": "parse2plone-0.9.8.zip", "has_sig": false, "md5_digest": "842c52bab194c623f89ca90d5d8709a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 61353, "upload_time": "2010-11-13T04:38:48", "url": "https://files.pythonhosted.org/packages/46/45/b11adbedd99db705661890cafc2a26d8f19d31ff0637f13f3e3a2ac19934/parse2plone-0.9.8.zip" } ], "0.9.9": [ { "comment_text": "", "digests": { "md5": "73ab880033513672db3347e1ed5cd6ea", "sha256": "a1f2bad273fdfd20e3153f988674c117851ab577ad7149fc16bd705680b9fa06" }, "downloads": -1, "filename": "parse2plone-0.9.9.zip", "has_sig": false, "md5_digest": "73ab880033513672db3347e1ed5cd6ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64205, "upload_time": "2010-11-16T09:42:41", "url": "https://files.pythonhosted.org/packages/9a/6e/9b02294a7f02805f79c2b67311e5e2da19eec92df38dc7becef0ebea0656/parse2plone-0.9.9.zip" } ], "1.0a1": [ { "comment_text": "", "digests": { "md5": "78fe79460cc9b6df6a8f68f8df5907ba", "sha256": "b1266ec42555e128c0563c547cf8e149e19dc7f36aca5209ac2851e0764e579f" }, "downloads": -1, "filename": "parse2plone-1.0a1.zip", "has_sig": false, "md5_digest": "78fe79460cc9b6df6a8f68f8df5907ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69348, "upload_time": "2010-11-17T14:51:20", "url": "https://files.pythonhosted.org/packages/3c/3b/b2b4f1d130475926b06994666176388ca45eb0497a94bdc08c9b6ac4f65f/parse2plone-1.0a1.zip" } ], "1.0a2": [ { "comment_text": "", "digests": { "md5": "22303d570ea949c3b69aae3aaddade49", "sha256": "ab642239cd707d01481c51bc8a25130b9f19d37ba42162ce6537159c88f7b31d" }, "downloads": -1, "filename": "parse2plone-1.0a2.zip", "has_sig": false, "md5_digest": "22303d570ea949c3b69aae3aaddade49", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69396, "upload_time": "2010-11-17T14:56:12", "url": "https://files.pythonhosted.org/packages/10/fb/67248c3c086b028e993fbd92394e71ffc92b083ce1fdcbdf253c5ddb22b3/parse2plone-1.0a2.zip" } ], "1.0a3": [ { "comment_text": "", "digests": { "md5": "d6704818941076808d6bc761523d7570", "sha256": "f4942d38b019be70604dd5b9cdff37103169c4922d512bd5d36c12a4e48b99c4" }, "downloads": -1, "filename": "parse2plone-1.0a3.zip", "has_sig": false, "md5_digest": "d6704818941076808d6bc761523d7570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 69821, "upload_time": "2010-11-17T15:29:56", "url": "https://files.pythonhosted.org/packages/b1/01/623bc47b7402063db3079030082a2396cf2c20b9df42377d597195b00926/parse2plone-1.0a3.zip" } ], "1.0a4": [ { "comment_text": "", "digests": { "md5": "25928e6b0d97212e8638856fbc7df938", "sha256": "94067f27618818483716a093273a4e0485fb6af9f88025f7b4941114482d5974" }, "downloads": -1, "filename": "parse2plone-1.0a4.zip", "has_sig": false, "md5_digest": "25928e6b0d97212e8638856fbc7df938", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 70112, "upload_time": "2011-01-12T15:18:42", "url": "https://files.pythonhosted.org/packages/c7/8d/669a14c5fa967b1466ee5460942e396bb39e09828555e2188b3d3de679ef/parse2plone-1.0a4.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "73ab880033513672db3347e1ed5cd6ea", "sha256": "a1f2bad273fdfd20e3153f988674c117851ab577ad7149fc16bd705680b9fa06" }, "downloads": -1, "filename": "parse2plone-0.9.9.zip", "has_sig": false, "md5_digest": "73ab880033513672db3347e1ed5cd6ea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 64205, "upload_time": "2010-11-16T09:42:41", "url": "https://files.pythonhosted.org/packages/9a/6e/9b02294a7f02805f79c2b67311e5e2da19eec92df38dc7becef0ebea0656/parse2plone-0.9.9.zip" } ] }