{ "info": { "author": "Andreas Jung", "author_email": "info@zopyx.com", "bugtrack_url": null, "classifiers": [ "Framework :: Plone", "Framework :: Zope2", "Framework :: Zope3", "Programming Language :: Python", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "=================\nCMFBibliographyAT\n=================\n\nCMFBibliographyAT is the Archetypes based version of CMFBibliograhy. It\nenables handling of references to (scientific) publications in Plone. It\nprovides a 'Bibliography Folder' content type dedicated to holding reference\nobjects of various kinds, like for 'articles', 'books', 'preprints',\n'techreports', contributions to collections, ... The folder supports\nimport/export of BibTeX formated files.\n\nIn addition the package adds a 'bibliography' action to the portal tabs and it\nprovides a BibliographyTool called 'portal_bibliography' through which you can\nmanage the renderers and parsers for the import/export functionality.\n\nWarning\n=======\n\n1.1.x is only to be used with Plone 3.x and 1.2.x is only to be used with Plone 4.x and up.\n\n\nInstallation\n============\n\n* Add ``Products.CMFBibliographyAT`` to the ``eggs`` option of your\n buildout.cfg file and re-run buildout.\n\n* Either choose the ``CMFBibliographyAT`` extension profile while\n creating a new Plone site or install it through the add-on \n control panel within the Plone UI.\n\n\nWhat it does\n============\n\nCMFBibliography provides various new content types:\n\n* Bibliography Entries: Highly structured content objects to\n hold bibliographic data referencing a publication. The schema\n is derived from BibTeX (LaTeX's bibliography handling module).\n\n* Bibliography Folder: Enhanced 'Skinned Folder' with some\n import/import functionality (available through the 'import' tab).\n\nAllowed content types are restricted to reference types.\n\nCurrently supported import formats are 'BibTeX', 'Endnote', 'RIS', 'Medline'\nand XML/MODS. Check out the accompanying files in 'import_samples' to see this\nin action.\n\nCurrently supported export formats: BibTeX (but see below), 'Endnote', 'RIS'\nand 'XML/MODS'.\n\n\nUnder the folder's 'defaults' tab you can (i) specify default\nlinks for authors of references with the folder and (ii) define\na ranking for the references within the folder. Through the\nranking it is possible to control which references will be\nreturned when \"asking\" the folder for its 'Top(n)' references\n(see the bibliography folder's source code for more).\n\nIn addition CMFBibliographyAT adds two field indexes ('Authors'\nand 'publication_year') and three meta data fields ('Authors',\n'publication_year', and 'Source') to the portal catalog (if not\npresent) to provide the 'bibliography' action which is added\nto the portal tabs (if you don't want this, go to\n'portal_bibliography > Actions' and tick off its visibility).\n\n\nDependencies\n============\n\n* Bibutils (optional) http://www.scripps.edu/~cdputnam/software/bibutils\n to extend the range of supported import/output formats. Bibutils is\n mandatory for any kind of export/import. Minimum version is Bibutils 4.6.\n\n* Plone 3 or Plone 4\n\nResources\n=========\n\n* Bugtracker: http://plone.org/products/cmfbibliographyat/issues\n* For questions or for giving feedback: please ask on the plone-biblio\n mailing list: https://mail.das-netzwerkteam.de/mailman/listinfo/plone-biblio\n\nAuthors\n=======\n\n* Raphael Ritz (original author)\n* Andreas Jung (current maintainer)\n* Jens Klein (contributions)\n\nCredits\n=======\n\n* The CMFBiblibgraphyAT 1.0/1.1 releases were made possible with \n funding of the Humboldt University, Berlin\n\n\n\nChangelog\n=========\n\n1.2.1 (2016-09-28)\n------------------\n\n* Include all the files with MANIFEST.in\n\n1.2.0 (2015-12-14)\n------------------\n\n* Compability with Plone 4. Macro 'relatedItems' is deprecated https://dev.plone.org/ticket/9985\n\n1.1.5 (unreleased)\n------------------\n\n* hedge import case handling\n\n1.1.4 (2013-09-16)\n------------------\n\n* packaging problem with 1.1.3 [jensens]\n\n1.1.3 (2013-09-16)\n------------------\n\n* Added a zope3 vocabulary factory grabbing all reference types\n\n* fix id cooker control panel string parsing issue.\n\n* added way to let subscriber add at least minor info to the log\n and some code formatting\n [jensens]\n\n* fix migration [kiorky]\n\n* fix some broken asumption about month [kiorky]\n\n* handle some utf-8 decode problems [kiorky]\n\n* fix schema access in subclasses (fix conferences atleast) [kiorky]\n\n* Allow PDF Files, in pdf folders [kiorky]\n\n1.1.2 (2011/07/11)\n------------------\n\n* throw an event for each imported entry.\n [jensens]\n\n* fixed import report on write too. Same problem with fullname: it can be \n unicode.\n\n* fixed import report: for some reason the new report might be uniocde, (maybe in\n Plone 4 username or email is unicode?) but merging it with the old report \n before storing it failed: old report is utf8 so convert unicode to utf8 if \n necessary.\n [jensens]\n\n* removed strange (used undefined variables) and superfluos (unused) code. \n [jensens]\n\n* added a formatter view for the single result-item. this can be overruled by a \n layer-bond view if one needs a different view on a result item.\n [jensens] \n\n* moved bibliography_importForm from ControllerPageTemplate to view-class. \n [jensens]\n\n* added self-contained buildout with test setup. [jensens]\n\n* cleanup import code and other parts of content/folder.py to enable \n import into subclassed types. [jensens]\n\n1.1.1 (2010/08/22)\n------------------\n* compatiblity with Plone 4.0rc1\n\n1.1.0 (2010/07/05)\n------------------\n* final 1.1.0 release\n\n1.1.0b8 (2010/07/05)\n--------------------\n* fixed handling of non-ascii characters in author names due to incompatible\n Plone API changes in normalizeString(). Now using the unicodedata.normalize()\n functionality which may result in a slightly different id generation.\n\n1.1.0b7 (2010/07/05)\n--------------------\n* another Plone 3/4 fix incompatibility in transforms/*\n\n1.1.0b6 (2010/06/10)\n--------------------\n* fixed another Plone 3/4 incompatibility in transforms/*\n\n1.1.0b5 (2010/06/10)\n--------------------\n* fixed another Plone 3/4 incompatibility in transforms/*\n\n1.1.0b4 (2010/06/10)\n--------------------\n* fixed Plone 3/4 incompatibility in transforms/*\n\n1.1.0b3 (2010/06/10)\n--------------------\n* fixed import\n\n1.1.0b2 (2010/05/10)\n--------------------\n* fixed missing import\n\n1.1.0b1 (2010/05/10)\n--------------------\n* compatibility with Plone 3 + Plone 4 \n\n1.0.5 (2010-04-22)\n------------------\n* fixed handling of the 'note' field on the export adapter level\n\n1.0.4 (2010-04-12)\n------------------\n* removed stupid filtering from bibliography_view making this view completely \n useless for anonymous visitors\n\n1.0.3 (2010-04-07)\n------------------\n* exposing installed Bibutils version within the Plone UI (import/export tab of the \n bibliography management configlet)\n\n1.0.2 (2010-04-01)\n------------------\n* checking minimum Bibutils version and logging it during the Zope\n startup phase\n\n1.0.1 (2010-03-22)\n------------------\n* removed stupid role check from bibliograph_search.pt which made\n the bibliographic search unusable for anonymous users\n\n1.0.0 (2010-03-19)\n------------------\n* final release\n\n1.0.0c2 (2010-03-09)\n--------------------\n* fixed COINS data for article reference (jtitle -> title)\n\n1.0.0c1 (2010-03-03)\n--------------------\n* release candidate\n\n1.0.0b13 (2010-02-16)\n---------------------\n* suffix for generated Endnote exports must be '.enw', not '.end'\n\n1.0.0b12 (2010-02-09)\n---------------------\n* fix interface decl. for @@export\n\n1.0.0b11 (2010-02-09)\n---------------------\n* #87 - PDF reference popup did not work\n* re-hacked support for support the export of single bibliographic items\n\n1.0.0b10 (2010-02-03)\n---------------------\n* fixed all unittests\n* #81 - fixed strange filtering for anonymous in bibliography_view\n\n1.0.0b9 (2010-01-30)\n--------------------\n* moved encoding checks directly into checkEncoding()\n* handling UTF-8 BOM properly\n* removed encoding guessing code - explicit is better than implicit\n\n1.0.0b8 (2010-01-29)\n--------------------\n* minor but critical bugfix in input encoding checker\n\n1.0.0b7 (2010-01-29)\n--------------------\n* re-added selection for input encoding on the import form\n* added through-the-ZMI property portal_properties -> extensions_properties -> available_input_encodings\n* added strong encoding check for uploaded data\n\n1.0.0b6 (2010-01-28)\n--------------------\n* using UTF-8 output encoding for all renderers except BibTeX (ASCII/LaTeX notation)\n* cleanup (internal/UI) of encoding related issues\n\n1.0.0b5 (2010-01-25)\n--------------------\n* fixed installation/uninstallation issues in setuphandler.py and\n exportimport handler\n\n1.0.0b4 (2010-01-22)\n--------------------\n* fixed issues related to the input encoding of RIS files\n* added note on input encodings related to RIS files to the input form \n\n1.0.0b3 (2010-01-20)\n--------------------\n* fixed API name clash for getProperty()\n\n1.0.0b2 (2010-01-20)\n--------------------\n\n* removed \"docs\" tab from configuration panel (since it was empty)\n* added portal_properties/cmfbibat_properties as replacement for persistent \n perferences for parsers/renderers (#82)\n* added updateProperty(), getProperty(), isParserEnabled(), isRendererEnabled()\n methods to portal_bibliography\n* fixed several forms dealing with the parser/renderer preferences\n\n1.0.0b1 (2010-01-10)\n--------------------\n\n* 1.0.0 beta 1 release\n\n1.0.0a7 (2009-12-19)\n--------------------\n\n* fix for error #36\n\n1.0.0a6 (2009-12-19)\n--------------------\n\n* added support for using portal_factory\n\n\n1.0.0a5 (2009-12-18)\n--------------------\n\n* fixed Amazon link for ISBN-13 numbers\n\n1.0.0a4 (2009-12-18)\n--------------------\n\n* BibTeX export adapter did not provide 'publication_month' \n\n1.0.0a3 (2009-12-18)\n--------------------\n\n* fixed bug in PMI migration code\n* increased the length of some string fields for better usability\n* migration code for PMID\n* relaxed some test due to test failures (XML BOM)\n\n\n1.0.0a1 (2009-12-12)\n--------------------\n\n* added 'pyisbn' dependency\n* added ISBN validation support to the 'identifiers' field\n* made orginal 'isbn' field invisible\n* added 0.9 -> 1.0 migration code for copying the 'isbn' field\n value into the 'identifiers' field\n* the filename generated by the @@export view now ends with\n the proper suffix according to the selected export format\n* the export adapter did work with keywords (using 'subject'\n instead of 'keywords')", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://pypi.python.org/pypi/Products.CMFBibliographyAT", "keywords": "web application server zope zope2 cmf plone bibliography", "license": "GPL", "maintainer": "", "maintainer_email": "", "name": "Products.CMFBibliographyAT", "package_url": "https://pypi.org/project/Products.CMFBibliographyAT/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/Products.CMFBibliographyAT/", "project_urls": { "Homepage": "http://pypi.python.org/pypi/Products.CMFBibliographyAT" }, "release_url": "https://pypi.org/project/Products.CMFBibliographyAT/1.2.1/", "requires_dist": [ "Products.ATExtensions", "bibliograph.core", "bibliograph.parsing", "bibliograph.rendering", "pyisbn", "setuptools", "zope.app.schema" ], "requires_python": "", "summary": "Bibliographic references in Plone", "version": "1.2.1" }, "last_serial": 2368367, "releases": { "0.9": [ { "comment_text": "", "digests": { "md5": "32a7db4457af60ca3ce64a4ceb0385df", "sha256": "f320326d28fb64873c9c2dc2a6bb1428789d0218307bd90c24a1c8e488308a0b" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-0.9.tar.gz", "has_sig": false, "md5_digest": "32a7db4457af60ca3ce64a4ceb0385df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 329611, "upload_time": "2008-10-15T17:54:04", "url": "https://files.pythonhosted.org/packages/a1/66/347e6f263d35208571d69ee294310db67fd44f61a06b9ac679e48952ea28/Products.CMFBibliographyAT-0.9.tar.gz" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "c87f8305c042f56d72c2f54410ea49da", "sha256": "920daa08d0b827754e71503e121bb1e56dc950e66e8475707015a6bfa60492cf" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-0.9.1.tar.gz", "has_sig": false, "md5_digest": "c87f8305c042f56d72c2f54410ea49da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 329850, "upload_time": "2009-03-11T09:11:00", "url": "https://files.pythonhosted.org/packages/72/8e/cef25a0c5668a84669f664742522f6dba9f084a3cef0f56012375e0e53d0/Products.CMFBibliographyAT-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "", "digests": { "md5": "37d8750d2257514a248a95e89f632d3f", "sha256": "118aea76d2c89e1f31d803f7e55c4e4bc5136f228332ce5ea07b3c614d5e9103" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-0.9.2.tar.gz", "has_sig": false, "md5_digest": "37d8750d2257514a248a95e89f632d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 341741, "upload_time": "2009-09-19T16:35:35", "url": "https://files.pythonhosted.org/packages/11/86/d29dad3d638dbac62374ed9353a8480371f4e2184f66449499bb3e165c05/Products.CMFBibliographyAT-0.9.2.tar.gz" } ], "0.9.3": [ { "comment_text": "", "digests": { "md5": "bf2c5a403a8079fcd3b4910158bbf8db", "sha256": "0b0890db7390c4e744120f671d71fddb5e2dec6fd947e30ec78eabd5aa81826d" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-0.9.3.tar.gz", "has_sig": false, "md5_digest": "bf2c5a403a8079fcd3b4910158bbf8db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 341825, "upload_time": "2009-11-16T09:02:26", "url": "https://files.pythonhosted.org/packages/86/b7/ac56f2178e5ce71185cfd59522cffc2f51b665210a7fd796efd3ed9621e6/Products.CMFBibliographyAT-0.9.3.tar.gz" } ], "0.9.3.1": [ { "comment_text": "", "digests": { "md5": "c639a15f708754c101150b6381919ced", "sha256": "5c2216bdb9d540872a215767356c57711b49cb51456dbee01f146d98840530b3" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-0.9.3.1.tar.gz", "has_sig": false, "md5_digest": "c639a15f708754c101150b6381919ced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 341763, "upload_time": "2009-11-27T08:36:08", "url": "https://files.pythonhosted.org/packages/c0/d6/f8d45fe24e26b9e9286ea9d2cb1ee2776d5380418fb3e8733e84150f79e2/Products.CMFBibliographyAT-0.9.3.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "241492f8b3e2a06b61b377b92bf189cc", "sha256": "3a581b5472b628c949bd0c372d178f675ccaf78dacd8f2bf6f49428378a5c8bb" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0.tar.gz", "has_sig": false, "md5_digest": "241492f8b3e2a06b61b377b92bf189cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308333, "upload_time": "2010-03-19T04:48:43", "url": "https://files.pythonhosted.org/packages/92/38/91d7dffa48e593f2c154d969530a4da456ebb182c30ba92280d3d94a4194/Products.CMFBibliographyAT-1.0.0.tar.gz" } ], "1.0.0a1": [ { "comment_text": "", "digests": { "md5": "ef24c9ac8ce3307c2d2eb37d77eca2f0", "sha256": "08849441832282c549af452cd808cb30ed6628c4b65ade5125187560b629dbd9" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a1.tar.gz", "has_sig": false, "md5_digest": "ef24c9ac8ce3307c2d2eb37d77eca2f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305554, "upload_time": "2009-12-04T08:12:26", "url": "https://files.pythonhosted.org/packages/d9/16/5827ae475fe4094c962981e9ffd3def9fb03d07c112b49dca7561e44a4a1/Products.CMFBibliographyAT-1.0.0a1.tar.gz" } ], "1.0.0a2": [ { "comment_text": "", "digests": { "md5": "26cccf9d7f56c924a03e578b3a4578d1", "sha256": "88d921e3f91b57a09f0fd339c4328a54a6de197e5c38d049189c8dc48b4eb008" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a2.tar.gz", "has_sig": false, "md5_digest": "26cccf9d7f56c924a03e578b3a4578d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305292, "upload_time": "2009-12-06T16:00:26", "url": "https://files.pythonhosted.org/packages/5f/b2/1b7609d6e8eff6d07b94b212f2cb435a2b04b501fe9082b9ca452ba42f62/Products.CMFBibliographyAT-1.0.0a2.tar.gz" } ], "1.0.0a3": [ { "comment_text": "", "digests": { "md5": "61225bce5f0ed304273d17208d255944", "sha256": "4e233ed50011eb1590f123cd061f50d43ff5322f9ba8411110cfce849686dd2e" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a3.tar.gz", "has_sig": false, "md5_digest": "61225bce5f0ed304273d17208d255944", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305239, "upload_time": "2009-12-18T09:38:19", "url": "https://files.pythonhosted.org/packages/b8/28/5150725b228b0c49fb732184e4bdf079152fed72abf9c637a758ceb3b282/Products.CMFBibliographyAT-1.0.0a3.tar.gz" } ], "1.0.0a4": [ { "comment_text": "", "digests": { "md5": "de9a15112f6d8e752f38314a7da3faa7", "sha256": "0e2d457347fb0e4a92268394ece26a40134f5097e11c44aa7ba2bef074d3943e" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a4.tar.gz", "has_sig": false, "md5_digest": "de9a15112f6d8e752f38314a7da3faa7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305314, "upload_time": "2009-12-18T13:04:44", "url": "https://files.pythonhosted.org/packages/71/6a/f347a2383022845c4bddf0bd5be7a6538e4cd4976a0f98b7340dcc7f21fe/Products.CMFBibliographyAT-1.0.0a4.tar.gz" } ], "1.0.0a5": [ { "comment_text": "", "digests": { "md5": "cc1681ac9c91558bc6f5cf58ba9a3d86", "sha256": "179e9c4b0bc2cdbfd3d22ba7a5cf781141d84569290303ccff821da2ccd78677" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a5.tar.gz", "has_sig": false, "md5_digest": "cc1681ac9c91558bc6f5cf58ba9a3d86", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305364, "upload_time": "2009-12-18T15:45:42", "url": "https://files.pythonhosted.org/packages/a5/fc/f1fe92c3986cddc01502aa746863a3ba63ab8710ac9bcba289982eedf76a/Products.CMFBibliographyAT-1.0.0a5.tar.gz" } ], "1.0.0a6": [ { "comment_text": "", "digests": { "md5": "d803d9f2ef6a423ddbfa4094df4b1d6a", "sha256": "b4756c06eb36fcecb25d8c432778c06c2a6588d721063912de68fee0561da8c7" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a6.tar.gz", "has_sig": false, "md5_digest": "d803d9f2ef6a423ddbfa4094df4b1d6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307489, "upload_time": "2009-12-19T16:10:34", "url": "https://files.pythonhosted.org/packages/7e/12/629e8b802807cc068f17257d530c19b4cb55c8d87b1ba33bfdc21bde166b/Products.CMFBibliographyAT-1.0.0a6.tar.gz" } ], "1.0.0a7": [ { "comment_text": "", "digests": { "md5": "2bbbfb9b8e73b80ccdc70de9ba1e4b29", "sha256": "e86a897618f94a2d024120a311e703c69039fd8a00171c2eadace5fc702a4c31" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0a7.tar.gz", "has_sig": false, "md5_digest": "2bbbfb9b8e73b80ccdc70de9ba1e4b29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307626, "upload_time": "2009-12-19T18:04:52", "url": "https://files.pythonhosted.org/packages/f6/66/89d495ec7deff4be1bc24958df30121c1ab07e81c735ba90c7499b8fc096/Products.CMFBibliographyAT-1.0.0a7.tar.gz" } ], "1.0.0b1": [ { "comment_text": "", "digests": { "md5": "052cee74fdd42f0c03d32bae4a31e608", "sha256": "e6e6c1d539bffc31ca320b53a88b0e50d268893de31eb77c0feaa9fa39158b1c" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b1.tar.gz", "has_sig": false, "md5_digest": "052cee74fdd42f0c03d32bae4a31e608", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307792, "upload_time": "2010-01-10T10:05:56", "url": "https://files.pythonhosted.org/packages/5e/62/96244dc29c0e2b920afd0ea85c9cdebc8ee533fa69cc80b56167d7b98e68/Products.CMFBibliographyAT-1.0.0b1.tar.gz" } ], "1.0.0b10": [ { "comment_text": "", "digests": { "md5": "48f74bedea679295398e1923a15d597d", "sha256": "0a9db04907452a2ed20efc9624ea1f3da9177c60680c0c73262c722a9cbf7f6e" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b10.tar.gz", "has_sig": false, "md5_digest": "48f74bedea679295398e1923a15d597d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308169, "upload_time": "2010-02-03T10:08:45", "url": "https://files.pythonhosted.org/packages/9f/83/388a60f80d7a9374f030a381b6d624a508229f5f9f7d9fb3d12a26407b10/Products.CMFBibliographyAT-1.0.0b10.tar.gz" } ], "1.0.0b11": [ { "comment_text": "", "digests": { "md5": "57d16778e684784b2104c3f984469067", "sha256": "1efac8519551681313e75e21b7c71627ecab36991c3385f1f1c7de80009bcd66" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b11.tar.gz", "has_sig": false, "md5_digest": "57d16778e684784b2104c3f984469067", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308358, "upload_time": "2010-02-09T06:06:51", "url": "https://files.pythonhosted.org/packages/d3/db/cb6fd06a9ea360bf5115c5ddcc0b2d49f6a7a33825c7efdf84c3447134c5/Products.CMFBibliographyAT-1.0.0b11.tar.gz" } ], "1.0.0b12": [ { "comment_text": "", "digests": { "md5": "de5ec7845457786522962e73c3f29746", "sha256": "85af98ebac440bfb0f0097feaa74dd88e2f20d6329d45370ad2343528374c533" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b12.tar.gz", "has_sig": false, "md5_digest": "de5ec7845457786522962e73c3f29746", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308531, "upload_time": "2010-02-09T18:47:39", "url": "https://files.pythonhosted.org/packages/c7/ae/c1463b2841cd2b2af87123eccf8af619c70e29b5613a29280c4c31248ccd/Products.CMFBibliographyAT-1.0.0b12.tar.gz" } ], "1.0.0b13": [ { "comment_text": "", "digests": { "md5": "84754aa2f47d4b4409507e6d0b4b5101", "sha256": "78193be6f0dae94518b4de8ed0ef7b970900ff75a9c12dae43a7aae370e21e50" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b13.tar.gz", "has_sig": false, "md5_digest": "84754aa2f47d4b4409507e6d0b4b5101", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308489, "upload_time": "2010-02-16T09:11:10", "url": "https://files.pythonhosted.org/packages/0a/8e/460c5c04d10c4ba477a570011993403579051ac7e8998b03b89ec0c1575c/Products.CMFBibliographyAT-1.0.0b13.tar.gz" } ], "1.0.0b2": [ { "comment_text": "", "digests": { "md5": "ec9ffeae8c095b01d25e315c078191da", "sha256": "b64253e08b802c66d260aacf4a9b0425cd5b3a3e7cf107211b1c6187f8a3b0a6" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b2.tar.gz", "has_sig": false, "md5_digest": "ec9ffeae8c095b01d25e315c078191da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307905, "upload_time": "2010-01-20T10:53:47", "url": "https://files.pythonhosted.org/packages/a0/56/b24f3376e917d3c74e0a0f3c49b66e4c740d6863d600ff3d9a3d62fdcea7/Products.CMFBibliographyAT-1.0.0b2.tar.gz" } ], "1.0.0b3": [ { "comment_text": "", "digests": { "md5": "2bba062a7cc0cdccc9ba76dd0745b64f", "sha256": "8edd0bca906919fbf726e6bb2b3ecc9ef3f7788642e0885d20f4bba679d44160" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b3.tar.gz", "has_sig": false, "md5_digest": "2bba062a7cc0cdccc9ba76dd0745b64f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308065, "upload_time": "2010-01-20T11:29:09", "url": "https://files.pythonhosted.org/packages/bf/a9/b80525400db89660a0bb0511d0a0923265f2f8975e182af7cc3a4b36b9ef/Products.CMFBibliographyAT-1.0.0b3.tar.gz" } ], "1.0.0b5": [ { "comment_text": "", "digests": { "md5": "a19a19beee30294f68e405a3ee277f25", "sha256": "f6e655a62985cafca4def01e83d1ebc9f3fe6e62d4121f4bc662a48b02253496" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b5.tar.gz", "has_sig": false, "md5_digest": "a19a19beee30294f68e405a3ee277f25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308163, "upload_time": "2010-01-25T11:00:55", "url": "https://files.pythonhosted.org/packages/c0/78/938146f64a2c4707777eca581b53ede18752ca74bf7af34f8163eca7186d/Products.CMFBibliographyAT-1.0.0b5.tar.gz" } ], "1.0.0b6": [ { "comment_text": "", "digests": { "md5": "086bbf900712eb8a5324933d2ce094aa", "sha256": "dfc37e1ce99198595bf6006624b7f6595ff8f3060072544f72a812fd5bda9fd5" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b6.tar.gz", "has_sig": false, "md5_digest": "086bbf900712eb8a5324933d2ce094aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307673, "upload_time": "2010-01-28T15:48:14", "url": "https://files.pythonhosted.org/packages/62/05/8bbe36bb19387f60ab38f339e384c7d833fe0c3b6b18d8a4b0d6d1d2f776/Products.CMFBibliographyAT-1.0.0b6.tar.gz" } ], "1.0.0b7": [ { "comment_text": "", "digests": { "md5": "77f237443d123816626d8efa3241fca2", "sha256": "3ec919ba2a620e09f8732c645a828df48a09b7ed2966a62e72533fc4c9fc22f2" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b7.tar.gz", "has_sig": false, "md5_digest": "77f237443d123816626d8efa3241fca2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308022, "upload_time": "2010-01-29T14:20:18", "url": "https://files.pythonhosted.org/packages/c0/65/5ea01a4dcd63162bc4002df80af4e0f2b71a7aeb423784016dc9310a8475/Products.CMFBibliographyAT-1.0.0b7.tar.gz" } ], "1.0.0b8": [ { "comment_text": "", "digests": { "md5": "dde4c2c4a9819f94a8d4bda31c8c0f93", "sha256": "c3cce93d784a8d1d8b5ba2332afb645bb3d8e306f84fddff16b03bffc85ae364" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b8.tar.gz", "has_sig": false, "md5_digest": "dde4c2c4a9819f94a8d4bda31c8c0f93", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308093, "upload_time": "2010-01-29T15:09:42", "url": "https://files.pythonhosted.org/packages/93/fb/05ecec8f2eae1cae97873bc0da67f89bdb61a49f67a4cc9fd2df7ff290ac/Products.CMFBibliographyAT-1.0.0b8.tar.gz" } ], "1.0.0b9": [ { "comment_text": "", "digests": { "md5": "5ff47b0e43b1ccd6839dc8f33713a412", "sha256": "8bfac65c1268354299cbab639a0feaa4246574969cce638e1ada30e8c41067ad" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0b9.tar.gz", "has_sig": false, "md5_digest": "5ff47b0e43b1ccd6839dc8f33713a412", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308442, "upload_time": "2010-01-30T16:04:01", "url": "https://files.pythonhosted.org/packages/a4/30/f600883cbe73c2a1ff4bc4dac1ed4d4ef22a7ccc32bb30679b3b3f2114d4/Products.CMFBibliographyAT-1.0.0b9.tar.gz" } ], "1.0.0c1": [ { "comment_text": "", "digests": { "md5": "788390c6846610ac03fbf08a9ed99358", "sha256": "b5f39008b2a87b7b7ef754b5aa8ea7a218f7d278854bd379ba4c0e48764c8335" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0c1.tar.gz", "has_sig": false, "md5_digest": "788390c6846610ac03fbf08a9ed99358", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308337, "upload_time": "2010-03-03T18:43:07", "url": "https://files.pythonhosted.org/packages/ac/1e/1ca1d7988d1787168dde7a969dc3fc8ca41be83d333f695151b19acb81bf/Products.CMFBibliographyAT-1.0.0c1.tar.gz" } ], "1.0.0c2": [ { "comment_text": "", "digests": { "md5": "2f5e26d5eebc2cc4d0dd59e27c797551", "sha256": "7ff22ecf15bdedf8316d01fad7b17f810895ef7e066a4beb50498c324c6157b0" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.0c2.tar.gz", "has_sig": false, "md5_digest": "2f5e26d5eebc2cc4d0dd59e27c797551", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308394, "upload_time": "2010-03-09T10:17:23", "url": "https://files.pythonhosted.org/packages/30/3a/e6e991fe89d14cf757018ac0e1073e29093ec9ba1151e40ce982f4cd8589/Products.CMFBibliographyAT-1.0.0c2.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "33ee85229b08b987e0dca5d62030511b", "sha256": "7205a630a8de66d91781bddecf5629cf04f35a52c36ae0cf7a1a3cb8bff6bb49" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.1.tar.gz", "has_sig": false, "md5_digest": "33ee85229b08b987e0dca5d62030511b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 285947, "upload_time": "2010-03-22T19:58:14", "url": "https://files.pythonhosted.org/packages/47/3e/d8233ff39de3b638b561f51cfc0735d4db3b0395ae85f4bc077200be9448/Products.CMFBibliographyAT-1.0.1.tar.gz" } ], "1.0.1.1": [ { "comment_text": "", "digests": { "md5": "ceb2a229e17470b1edd9b7f8ce9809b2", "sha256": "c69b31deb8ea34f1333f4ea4f563f1900b64c432225a7f1be7c51f96e4f12ead" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.1.1.tar.gz", "has_sig": false, "md5_digest": "ceb2a229e17470b1edd9b7f8ce9809b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308610, "upload_time": "2010-03-29T07:35:10", "url": "https://files.pythonhosted.org/packages/d2/ec/11c4406f79a4da0b940a626429487d10a87f3c4f49bde2b3faa07b9aa473/Products.CMFBibliographyAT-1.0.1.1.tar.gz" } ], "1.0.1.2": [ { "comment_text": "", "digests": { "md5": "958f17ffffd9e4dffd2410b76d29486b", "sha256": "8f35a190fad6f9b1363c37c9a92d7cbb1718f60e4ab47157b7399a0af76798e9" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.1.2.tar.gz", "has_sig": false, "md5_digest": "958f17ffffd9e4dffd2410b76d29486b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308604, "upload_time": "2010-03-29T07:42:02", "url": "https://files.pythonhosted.org/packages/a4/89/d5e9199938d375ca70c9ddb0e8a9046585de88e5154a604f1871f23bf698/Products.CMFBibliographyAT-1.0.1.2.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "b12058427fa4b3885e9547dc350078aa", "sha256": "2046b67241914f7d350ef43495b7a65643aac697bcf72e71fe123ece4a1dc360" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.2.tar.gz", "has_sig": false, "md5_digest": "b12058427fa4b3885e9547dc350078aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 308724, "upload_time": "2010-04-01T19:19:16", "url": "https://files.pythonhosted.org/packages/93/cf/f33aa4f27358998148d51f784733a3019770ed3269e40a4c56ab2408a328/Products.CMFBibliographyAT-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "5a6408d1a37fece1d44d93b020fa02cd", "sha256": "33e10b8ec6587d2d1d311d19051a4b32e8b8adced7952f0ee109cc0571b05475" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.3.tar.gz", "has_sig": false, "md5_digest": "5a6408d1a37fece1d44d93b020fa02cd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305197, "upload_time": "2010-04-07T08:16:42", "url": "https://files.pythonhosted.org/packages/2c/c1/26501e1f9d839eb622a83c3e00ed62a501d4dbd013f7f66c9db92c1a7afd/Products.CMFBibliographyAT-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "60262947571fe52970a6363805387b2b", "sha256": "f027ee2a84ecb29d3b42fe98b98cc27df79aa43424964f13adc8aee2b1b8742a" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.4.tar.gz", "has_sig": false, "md5_digest": "60262947571fe52970a6363805387b2b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305195, "upload_time": "2010-04-12T12:15:31", "url": "https://files.pythonhosted.org/packages/07/22/64eaed137e00e19f4b7d0f7fb5475ba94b9ad05ab1f6b215c918e7b4d3f1/Products.CMFBibliographyAT-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "ce3c6bcfb9081af2c8dbf7c457688316", "sha256": "e0e2bbc14300980dc6a73f8bb58a59e3d17d52ddc8d9e79bf845eb03cbf18b70" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.0.5.tar.gz", "has_sig": false, "md5_digest": "ce3c6bcfb9081af2c8dbf7c457688316", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301356, "upload_time": "2010-04-25T09:21:07", "url": "https://files.pythonhosted.org/packages/9b/f0/e5095f6645ac6e885b5dae2aed48ce0c3c01e01e700029fb88610bc4107e/Products.CMFBibliographyAT-1.0.5.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "0b4d1a5a398265c9af41cb5c8171e184", "sha256": "8351c364fe05ca678e27d912c383c50dd521657be5bda3484cdf4f4a7ca124fa" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0.tar.gz", "has_sig": false, "md5_digest": "0b4d1a5a398265c9af41cb5c8171e184", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305860, "upload_time": "2010-07-05T09:33:40", "url": "https://files.pythonhosted.org/packages/65/9b/a8341248be210547ae4414394c8d92e07c59963f3a62ea362503886fb487/Products.CMFBibliographyAT-1.1.0.tar.gz" } ], "1.1.0b1": [ { "comment_text": "", "digests": { "md5": "e6dc882660a844e67c811b39761c2dd3", "sha256": "4afdc6fea106507b23ce4561d700fd2a0fe7f6b27cf3194cfc3c8ad9cf43ab0e" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b1.tar.gz", "has_sig": false, "md5_digest": "e6dc882660a844e67c811b39761c2dd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305477, "upload_time": "2010-05-10T13:42:10", "url": "https://files.pythonhosted.org/packages/73/80/fff2e444f1522a3893cb26124d8c51a80650ea3de6cdd6643f0df21cdab3/Products.CMFBibliographyAT-1.1.0b1.tar.gz" } ], "1.1.0b2": [ { "comment_text": "", "digests": { "md5": "7a1d2e0e9ba66e9958e273056cbf00b6", "sha256": "a7bbb4d5e9c39f993245137cd115fce7aa0829ca434981e64ca20b5e31b79f54" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b2.tar.gz", "has_sig": false, "md5_digest": "7a1d2e0e9ba66e9958e273056cbf00b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305544, "upload_time": "2010-05-10T17:33:53", "url": "https://files.pythonhosted.org/packages/09/9f/2cf08e6ac839f36e55b80426563bf8f04c740ddfb25ea1caea3420487f2c/Products.CMFBibliographyAT-1.1.0b2.tar.gz" } ], "1.1.0b3": [ { "comment_text": "", "digests": { "md5": "57732cfd534603a488fdc8a7fd918284", "sha256": "de06a97438731f4f839795273de14b69169570c0cb227a7c1a109855d68a1448" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b3.tar.gz", "has_sig": false, "md5_digest": "57732cfd534603a488fdc8a7fd918284", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305570, "upload_time": "2010-06-10T15:07:56", "url": "https://files.pythonhosted.org/packages/d4/f6/1b1c50eea604d0b14adc15342f1155993a132ffd3ab03c74ece478f74095/Products.CMFBibliographyAT-1.1.0b3.tar.gz" } ], "1.1.0b4": [ { "comment_text": "", "digests": { "md5": "41f5faabb7185173f6ca6294869528be", "sha256": "81801458c9b642a2e4ca1d5c86140b1337c6f010ac2e804efb347160e221ecce" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b4.tar.gz", "has_sig": false, "md5_digest": "41f5faabb7185173f6ca6294869528be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305690, "upload_time": "2010-06-10T16:36:00", "url": "https://files.pythonhosted.org/packages/b0/ba/6f5699f3dcfa223007ddb4c24771dd20c18302172ca964d1e6a137da86d3/Products.CMFBibliographyAT-1.1.0b4.tar.gz" } ], "1.1.0b5": [ { "comment_text": "", "digests": { "md5": "6afd696c48f050dd979edee448abccf2", "sha256": "09d336d0e2ab3b55974c39cba6ef139455f251eb2b1000483a1e7c2a28f67274" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b5.tar.gz", "has_sig": false, "md5_digest": "6afd696c48f050dd979edee448abccf2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305529, "upload_time": "2010-06-11T13:41:36", "url": "https://files.pythonhosted.org/packages/fd/42/bc98a144808153927fee66b41e5de38bc704eb530614255c85e1a6e93a5d/Products.CMFBibliographyAT-1.1.0b5.tar.gz" } ], "1.1.0b6": [ { "comment_text": "", "digests": { "md5": "0e2934941f887dbc9e16393ed7387e20", "sha256": "5f364eba9a29db57e178c933c0683f10131bbc834c8be65015ad0190532503c0" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b6.tar.gz", "has_sig": false, "md5_digest": "0e2934941f887dbc9e16393ed7387e20", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305708, "upload_time": "2010-06-11T14:10:59", "url": "https://files.pythonhosted.org/packages/fe/3d/6a4f3363c4bc55effaa7fb5f2e6d8119227fba8284ac0832934d7ec883e9/Products.CMFBibliographyAT-1.1.0b6.tar.gz" } ], "1.1.0b7": [ { "comment_text": "", "digests": { "md5": "27fe03c9791093f16ad1c94bcb670303", "sha256": "afbc5e3503d08b95c1019a40406c335419956461f5fce945619ab36e0d398d90" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b7.tar.gz", "has_sig": false, "md5_digest": "27fe03c9791093f16ad1c94bcb670303", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305608, "upload_time": "2010-07-05T08:53:18", "url": "https://files.pythonhosted.org/packages/f7/87/c561046996f25c3ef5b6a1100722db08d08d328e09e8bb8645a47dbbbd84/Products.CMFBibliographyAT-1.1.0b7.tar.gz" } ], "1.1.0b8": [ { "comment_text": "", "digests": { "md5": "8da8b3020373d9103a28796b8b5d8748", "sha256": "9c965b6eb849c2e0a1015a2be41b42c5b38a78dd45dbff64a432586f115f5726" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.0b8.tar.gz", "has_sig": false, "md5_digest": "8da8b3020373d9103a28796b8b5d8748", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 306012, "upload_time": "2010-07-05T09:31:15", "url": "https://files.pythonhosted.org/packages/1d/e7/6f362209e30bb6ee9da11eddcf0e5de18e7b21ceb058299d2b1468574600/Products.CMFBibliographyAT-1.1.0b8.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "11d5e8b492349579e6dc73d12a18fc6d", "sha256": "ac0fe00a3735ded22aa4da840236245d82553b0fa296770f75b678f14b40a54f" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.1.tar.gz", "has_sig": false, "md5_digest": "11d5e8b492349579e6dc73d12a18fc6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277812, "upload_time": "2010-08-23T07:50:07", "url": "https://files.pythonhosted.org/packages/c9/2d/3460b19b187982a3def770f691ec052a92d2255b63a30de6dc7a3e4babdf/Products.CMFBibliographyAT-1.1.1.tar.gz" } ], "1.1.1.1": [ { "comment_text": "", "digests": { "md5": "de15a08b0ec2498c6a2f1e3cb838d06f", "sha256": "7680c1e2e119d06dc98679e227e1a6a8db67569c72b9cfb18b9bf1ba0e992c49" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.1.1.tar.gz", "has_sig": false, "md5_digest": "de15a08b0ec2498c6a2f1e3cb838d06f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 277932, "upload_time": "2010-08-23T08:03:11", "url": "https://files.pythonhosted.org/packages/3b/b2/786cbba55944b00c2a3c3e888b4e5f1ff51f8f7a6991b0e434e01cff8ac2/Products.CMFBibliographyAT-1.1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "b8644331744cb143cfbf72c56f05c1aa", "sha256": "809ce86c8ecb12288c5bed202bc4679a044df6e5e49e725a84f7bb914f9c7f12" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.2.zip", "has_sig": false, "md5_digest": "b8644331744cb143cfbf72c56f05c1aa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 429170, "upload_time": "2011-07-11T08:06:46", "url": "https://files.pythonhosted.org/packages/e3/5d/9d34224336e6f8a6a16dbd5a453a1f08b3ab0b3b366bad1c8ec8ba0de1b5/Products.CMFBibliographyAT-1.1.2.zip" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "1bc38b567796f31b03db9abc031562ae", "sha256": "c3e2ad5c9551dfd8bbbd7f3f1650ea750f0f84f7c7e26e387b4dc78f466c888f" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.3.tar.gz", "has_sig": false, "md5_digest": "1bc38b567796f31b03db9abc031562ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 94421, "upload_time": "2013-09-06T07:35:48", "url": "https://files.pythonhosted.org/packages/b2/47/5348fdda9d5c38c76c9107be8c1e532906a0f1fe5021ce3009556a038722/Products.CMFBibliographyAT-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "6c6d277317f7713e3b7943394ea42bcf", "sha256": "f9044f18c54b374b56e0d2bfe44c1eea9b0937d4fd6341c70c2cf89098c0f283" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.4.tar.gz", "has_sig": false, "md5_digest": "6c6d277317f7713e3b7943394ea42bcf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 103421, "upload_time": "2013-09-06T11:54:11", "url": "https://files.pythonhosted.org/packages/c3/ee/3ef962143d3c3bf8ba1f33d1c193c05daecd9bc345b86bc0ffcac945651b/Products.CMFBibliographyAT-1.1.4.tar.gz" } ], "1.1.4.1": [ { "comment_text": "", "digests": { "md5": "3bed9642d06611a27740eaaf5dc3adb6", "sha256": "23b8a4c7252571a8f728cf0d45f7e0e6ae2f44179c2f9980b2de24432178cf83" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.1.4.1.tar.gz", "has_sig": false, "md5_digest": "3bed9642d06611a27740eaaf5dc3adb6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321906, "upload_time": "2013-09-06T12:18:46", "url": "https://files.pythonhosted.org/packages/18/9f/ef2e513abdfa0ee325fb10a9b85ee7508a1782f116d96775b4f8171c7380/Products.CMFBibliographyAT-1.1.4.1.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "2f4400258b8aba873390436deaf4ab6f", "sha256": "c6a89bc096760aae612923b2806a8edf6501540ba7301129fe516279e1e7957d" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2f4400258b8aba873390436deaf4ab6f", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 146040, "upload_time": "2015-12-14T15:08:45", "url": "https://files.pythonhosted.org/packages/27/b3/679f1dcd9cb3fc9200405688519214a2f26db1cc3126ef661122c8b98743/Products.CMFBibliographyAT-1.2.0-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cb094d6eb1233147c9657b6e8b7ed630", "sha256": "7e2d1415ecaf2d2ef6311f539381d55c3d6ecc75897e7e51e8d5f8b7962e8a45" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.0.tar.gz", "has_sig": false, "md5_digest": "cb094d6eb1233147c9657b6e8b7ed630", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 105210, "upload_time": "2015-12-14T15:08:34", "url": "https://files.pythonhosted.org/packages/e3/df/53b0b376068a74723be1bf8db55a3d313bf4014b76cb9597769432373923/Products.CMFBibliographyAT-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "47c9bba6f86dc2a87b9e4e539dd26761", "sha256": "9f3e574c5d8370cbfdaf6050e18c916c1a2cf1bd37aa54c38abf8e139bece8e3" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "47c9bba6f86dc2a87b9e4e539dd26761", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 409273, "upload_time": "2016-09-28T11:53:28", "url": "https://files.pythonhosted.org/packages/ba/5e/711a1f3602ffa0794c4f69cbf23e2a7c6a0ba19225bff67285824325e36b/Products.CMFBibliographyAT-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a8ffbb226cfe21e2aa46ad62b1a7dad", "sha256": "48e6cb0b1512d044f5fcbffac47d72ccf087c1db4dd1893c33d8c3afb88c1979" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6a8ffbb226cfe21e2aa46ad62b1a7dad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 279719, "upload_time": "2016-09-28T11:53:31", "url": "https://files.pythonhosted.org/packages/40/ce/08692a17b84a9a9d79ce5d3d2a6e292c120da11d1cb1bebb09fd2072c19a/Products.CMFBibliographyAT-1.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "47c9bba6f86dc2a87b9e4e539dd26761", "sha256": "9f3e574c5d8370cbfdaf6050e18c916c1a2cf1bd37aa54c38abf8e139bece8e3" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "47c9bba6f86dc2a87b9e4e539dd26761", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 409273, "upload_time": "2016-09-28T11:53:28", "url": "https://files.pythonhosted.org/packages/ba/5e/711a1f3602ffa0794c4f69cbf23e2a7c6a0ba19225bff67285824325e36b/Products.CMFBibliographyAT-1.2.1-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6a8ffbb226cfe21e2aa46ad62b1a7dad", "sha256": "48e6cb0b1512d044f5fcbffac47d72ccf087c1db4dd1893c33d8c3afb88c1979" }, "downloads": -1, "filename": "Products.CMFBibliographyAT-1.2.1.tar.gz", "has_sig": false, "md5_digest": "6a8ffbb226cfe21e2aa46ad62b1a7dad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 279719, "upload_time": "2016-09-28T11:53:31", "url": "https://files.pythonhosted.org/packages/40/ce/08692a17b84a9a9d79ce5d3d2a6e292c120da11d1cb1bebb09fd2072c19a/Products.CMFBibliographyAT-1.2.1.tar.gz" } ] }