{ "info": { "author": "Wichert Akkerman - Simplon", "author_email": "wichert@simplon.biz", "bugtrack_url": null, "classifiers": [ "Development Status :: 6 - Mature", "Framework :: Plone", "Framework :: Plone :: 4.2", "Framework :: Plone :: 4.3", "License :: OSI Approved :: GNU General Public License (GPL)", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP" ], "description": "LDAP control panel for Plone\n============================\n\n.. image:: https://travis-ci.org/plone/plone.app.ldap.svg?branch=master\n :target: https://travis-ci.org/plone/plone.app.ldap\n\n.. image:: https://coveralls.io/repos/github/plone/plone.app.ldap/badge.svg?branch=master\n :target: https://coveralls.io/github/plone/plone.app.ldap?branch=master\n\nOverview\n--------\n\nplone.app.ldap provides a user interface in a Plone site to manage\nLDAP and Active Directory servers.\n\nThis package succeeds the simplon.plone.ldap package.\n\nIt builds on the functionality provided by LDAPMultiPlugins_, LDAPUserFolder_\nand PloneLDAP_.\n\n\nActive Directory\n----------------\n\nActive Directory provides an LDAP interface to its data. Using this interface\nPlone can use both users and groups from an Active Directory system. Writing\nto Active Directory is not supported.\n\nWith Active Directory you can use two different properties as login name:\n``userPrincipalName`` and ``sAMAccountName``. ``sAMAccountName`` is the plain\naccount name without any domain information and is only unique within a single\ndomain. If your environment only uses a single AD domain this option is the\nbest choice. For environments with multiple names the ``userPrincipalName``\nattribute can be used since this includes both account name and domain\ninformation.\n\nSince Plone does not support binary user ids it is not possible to use the\n``objectGUID`` attribute as user ids. Instead you can use either\n``sAMAccountName`` or ``userPrincipalName``. The same criteria for choosing a\nlogin name also apply to selecting the user id attribute.\n\nNewer versions of Active Directory may also work using the standard LDAP\nplugin, which supports limited writing to AD, including modifying group\nmemberships. If your group objects have ``member`` attributes containing the\nuser's full DN, the standard LDAP plugin should work for you. Note that this\nwill not support nested groups.\n\n\nStandard LDAP\n-------------\n\nLDAP directory servers are fully supported. LDAP users and groups are usable\nas standard Plone users and groups can be me managed normally. Creating and\ndeleting users and groups is supported.\n\n\nInstalling\n----------\n\nThis package works with Plone 3 and Plone 4. Plone 3 and Plone 4.0\nusers should install a version in the 1.2.* series\n(e.g. plone.app.ldap < 1.3, the latest current release is 1.3.2), as\nrelease 1.3 will only work with Plone 4.1 or higher.\n\nThis package depends on ``python-ldap``. In order to build it correctly you\nneed to have some development libraries included in your system. On a typical\nDebian-based installation use::\n\n sudo apt-get install python-dev libldap2-dev libsasl2-dev libssl-dev\n\nOnce the package is installed, it will be available as an add-on named\n\"LDAP support\", and this add-on can be activated in a Plone instance\nusing the Add-ons section of the Plone Control Panel. Be careful, as this\npackage also currently installs LDAPUserFolder as a dependency, which makes\nthe add-on \"LDAPUserFolder CMF Tools\" available. Do not install this add-on!\nIt will replace the portal_membership tool and make your Plone site\nunusable.\n\nInstall without buildout\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nFirst you need to install this package in the python path for your\nZope instance. This can be done by installing it in either your system\npath packages (usually with ``pip`` or ``easy_install``) or in the\nlib/python directory in your Zope instance.\n\nAfter installing the package it needs to be registered in your Zope instance.\nThis can be done by putting a plone.app.ldap-configure.zcml file in the\netc/pakage-includes directory with this content::\n\n \n\nor, alternatively, you can add that line to the configure.zcml in a\npackage or Product that is already registered.\n\nInstalling with buildout\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nIf you are using `buildout`_ to manage your instance installing plone.app.ldap\nis even simpler. You can install it by adding it to the eggs line for your\nzope instance::\n\n [instance]\n eggs =\n ...\n plone.app.ldap\n\n.. _buildout: http://pypi.python.org/pypi/zc.buildout\n\n\nInstalling the development version\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nTo specify the current development version you may use::\n\n [buildout]\n find-links =\n ...\n http://github.com/plone/plone.app.ldap/tarball/master#egg=plone.app.ldap-dev\n\n [instance]\n eggs =\n ...\n plone.app.ldap==dev\n\nWith ``pip`` that would be this::\n\n pip install -f http://github.com/plone/plone.app.ldap/tarball/master#egg=plone.app.ldap-dev plone.app.ldap==dev\n\nWith ``easy_install``::\n\n easy_install -f http://github.com/plone/plone.app.ldap/tarball/master#egg=plone.app.ldap-dev plone.app.ldap==dev\n\n\nCopyright and credits\n---------------------\n\nCopyright\n plone.app.ldap is Copyright 2007, 2008 by the Plone Foundation.\n Simplon_ donated the simplon.plone.ldap code to the Plone Foundation.\n\nCredits\n Wichert Akkerman \n\nFunding\n CentrePoint_\n\n\n.. _simplon: http://www.simplon.biz/\n.. _python-ldap: http://python-ldap.sourceforge.net/\n.. _LDAPUserFolder: http://www.dataflake.org/software/ldapuserfolder/\n.. _LDAPMultiPlugins: http://www.dataflake.org/software/ldapmultiplugins/\n.. _PloneLDAP: http://plone.org/products/ploneldap/\n.. _CentrePoint: http://centrepoint.org.uk/\n\nChangelog\n=========\n\n1.4.4 (2019-09-19)\n------------------\n\nBreaking changes:\n\n- *add item here*\n\nNew features:\n\n- *add item here*\n\nBug fixes:\n\n- Added uninstall profile.\n This requires Products.GenericSetup 1.8.2+,\n (available by default in Plone 4.3.8+ and 5.0.3+).\n [maurits]\n\n- Added dependencies so Plone 5 can start.\n Removed the Plone 5 classifiers, because there is a test failure,\n and it can't have worked before. [maurits]\n\n\n1.4.3 (2018-04-08)\n------------------\n\nBug fixes:\n\n- Require in the setup.py Products.CMFDefault\n [ale-rt]\n\n\n1.4.2 (2017-11-26)\n------------------\n\nBug fixes:\n\n- Imports are Python3 compatible\n [ale-rt]\n\n\n1.4.1 (2017-08-27)\n------------------\n\nBug fixes:\n\n- Add coding header on python files.\n [gforcada]\n\n- Remove deprecated __of__ calls on BrowserViews\n [MrTango]\n\n1.4.0 (2016-08-19)\n------------------\n\nNew:\n\n- Dropped support for Plone 4.1.\n [hvelarde]\n\n- Added some more fields to portal_setup import/export, including\n extra_user_filter, group mappings, and plugin type (AD/non-AD).\n [adaugherity]\n\nFixes:\n\n- Fix Travis CI build by pinning ``coverage`` and by ensuring different\n Plone versions are actually tested.\n [davidjb]\n\n- Added ``metadata.xml`` to profile, plus empty upgrade step, so the\n add-ons control panel does not complain that we have no upgrade\n procedure.\n [maurits]\n\n- Fixed plugin activation for AD; correctly add mandatory schema items; activate\n group management plugin for non-AD (to allow modifying group memberships via\n Plone).\n [adaugherity]\n\n- Properly store settings made via control panel so that the control panel,\n ZMI, and portal_setup export all show the same data.\n [adaugherity]\n\n- Miscellaneous minor bugfixes and documentation improvements.\n [adaugherity]\n\n- Use zope.interface decorator.\n [gforcada]\n\n1.3.2 (2015-03-02)\n------------------\n\n- Fix GS import : _user_objclasses and _roles should not be imported as unicode strings\n [gotcha]\n\n- Update package dependencies.\n [hvelarde]\n\n- Update installation documentation.\n [hvelarde]\n\n\n1.3.1 (2013-10-01)\n------------------\n\n- Use ``.png`` file, not ``.gif``. Fixes ``KeyError:\n confirm_icon.gif`` from\n https://github.com/plone/plone.app.ldap/issues/11\n [maurits]\n\n\n1.3.0 (2012-09-28)\n------------------\n\n- Add Plone 4.3 compatibility, and break compatibility with Plone 4.0\n and Plone 3, by not importing from zope.app anymore.\n [maurits]\n\n- Fix the exporter as GS 1.7 and higher now explicitly only\n understands strings. Still works for older GS too.\n [sneridagh]\n\n\n1.2.8 (2012-03-02)\n------------------\n\n- Added a z3c.autoinclude entry point to mark this as a Plone add-on.\n [WouterVH]\n\n\n1.2.7 (2011-10-19)\n------------------\n\n- Expose the 'Read Only' attribute of LDAP plugins for modification with\n plone.app.ldap (http://dev.plone.org/ticket/12292)\n [kteague]\n\n- Fix bug where changes to the Default User Roles option were being\n discarded (http://dev.plone.org/ticket/12293)\n [kteague]\n\n\n1.2.6 (2011-07-17)\n------------------\n\n- Add Plone 4.1 compatibility when importing IVocabularyFactory.\n [fvandijk]\n\n- Include Products.CMFCore for Plone 4.1 compatibility.\n [WouterVH]\n\n\n1.2.5 (2011-05-02)\n------------------\n\n- Added import-support for activated interfaces, user_default_roles\n and password_encryption [awello]\n\n- Update imports for zope.formlib bump in Plone 4.1\n [eleddy]\n\n- Update GS import to support plugin id, and update parameter\n [eleddy]\n\n- Update GS import to read interfaces config for AD plugins,\n apply cache parameter\n [eleddy]\n\n\n1.2.4 (2010-12-07)\n------------------\n\n- Fix bug where generic setup exports were exporting boolean values\n as type int.\n [kteague]\n\n- Fix bug where generic setup imports weren't choosing names correctly.\n [kteague]\n\n\n1.2.3 (2010-10-07)\n------------------\n\n- Fix: Login Name, User ID and RDN attributes were not set correctly on creation.\n [elro]\n\n\n1.2.2 (2010-08-18)\n------------------\n\n- LDAPProperty fields can now be marked as a Binary property.\n [kteague]\n\n- Ability to import/export an LDAP configuration using generic setup.\n This feature is the same as the one provided by collective.genericsetup.ldap\n and exports made with that product can be imported into plone.app.ldap.\n During import all existing servers, general settings and schema\n will be overwritten from config file - but no interfaces or cache\n settings are changed.\n [kteague]\n\n- Removed locales directory. You can translate this package\n in the plone.app.locales package now.\n [vincentfretin]\n\n- Cleaned templates to work with cmf.pt\n [pilz]\n\n\n1.2.1 (2010-04-19)\n------------------\n\n- Fallback to Plone 3 compatible imports. Fix display of cache tab in Plone 3.\n [kteague]\n\n\n1.2 (2010-03-25)\n----------------\n\n- Added a tab for display and modifying the cache settings.\n [kteague]\n\n- Send out notification events for all object additions/modifications/removals\n so that configuration always gets propogated to the LDAPUserFolder object.\n [kteague]\n\n- Changed the base class for LDAPConfiguration so that it gets properly\n rooted in the site (otherwise LDAPConfiguration.__parent__ goes into\n an infinite loop, pointing to a fresh PersistenComponents instance who's\n parent is in turn LDAPConfiguration).\n [kteague]\n\n- Updated the HTML to wrap all control panel forms in a form tag so that\n tabs are properly displayed in Plone 4.\n [kteague]\n\n- Fixed i18n domain changes from Vincent. The message factory was defined in\n the wrong ``__init__.py``.\n [hannosch]\n\n- Changed i18n domain from plone to plone.app.ldap.\n Registered locales directory.\n [vincentfretin]\n\n\n1.1 (2008-08-16)\n----------------\n\n- Fix ldap schema config for Active Directory\n [elro]\n\n\nsimplon.plone.ldap - 1.0\n------------------------\n\n- Initial package structure.\n [zopeskel]", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/plone/plone.app.ldap", "keywords": "plone ldap", "license": "GPL", "maintainer": "Kevin Teague", "maintainer_email": "kevin@bud.ca", "name": "plone.app.ldap", "package_url": "https://pypi.org/project/plone.app.ldap/", "platform": "", "project_url": "https://pypi.org/project/plone.app.ldap/", "project_urls": { "Homepage": "https://github.com/plone/plone.app.ldap" }, "release_url": "https://pypi.org/project/plone.app.ldap/1.4.4/", "requires_dist": null, "requires_python": "", "summary": "LDAP control panel for Plone 4.2 and higher", "version": "1.4.4" }, "last_serial": 5856891, "releases": { "1.1": [ { "comment_text": "", "digests": { "md5": "53f2cf6e5d81604dcdf25db1442a8d0a", "sha256": "81dd0367ad9423f2d2ba7c09a80f218b2bc111aaf90620ff3afd56491fc14fd7" }, "downloads": -1, "filename": "plone.app.ldap-1.1.tar.gz", "has_sig": false, "md5_digest": "53f2cf6e5d81604dcdf25db1442a8d0a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22343, "upload_time": "2008-08-16T11:11:22", "url": "https://files.pythonhosted.org/packages/d8/0e/41567e493f469dedab4c006d013adbd7519b247152c289836b7df6e88552/plone.app.ldap-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "3a11cb6f30105bdb7593ddb5efbc9369", "sha256": "8e80d7e0abd5ba09508550b8f19e6cc5636265a05d9a9f00a82c89cd51caa6b0" }, "downloads": -1, "filename": "plone.app.ldap-1.2.tar.gz", "has_sig": false, "md5_digest": "3a11cb6f30105bdb7593ddb5efbc9369", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27890, "upload_time": "2010-03-25T22:19:05", "url": "https://files.pythonhosted.org/packages/22/30/0361abe6e383a5904af728d3d95faf5e8470749c3c5d5d871a7fc38c5ef2/plone.app.ldap-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "16f1e61084c429b596b2e4db37cd7af0", "sha256": "cda4e2c3b63cf42571f3e5682f16a1cb57acc4fd2b4a827ff6831fb10a848c89" }, "downloads": -1, "filename": "plone.app.ldap-1.2.1.tar.gz", "has_sig": false, "md5_digest": "16f1e61084c429b596b2e4db37cd7af0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25956, "upload_time": "2010-04-19T20:18:47", "url": "https://files.pythonhosted.org/packages/09/cd/e779332ff86b3eb67a4b2e4967e3158b768cf697539c98633468114ee12e/plone.app.ldap-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "025fb383e66fc011905b81aa2724749b", "sha256": "ac65fb7a52e1980d5359fb1a6589c1f686ebc9eaaaaab3f6068170f6e4857369" }, "downloads": -1, "filename": "plone.app.ldap-1.2.2.tar.gz", "has_sig": false, "md5_digest": "025fb383e66fc011905b81aa2724749b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26866, "upload_time": "2010-08-19T02:17:07", "url": "https://files.pythonhosted.org/packages/ba/86/28db4c11dd3080cec46bd1feb7245accab71f5ab75bd80ea9ae24878beca/plone.app.ldap-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "0e0e24f679e54726a6be57b0b1f42065", "sha256": "75a443c868ba22fa349f75955a0276799ed520b85d53e8fd7b0a9c0739368bcf" }, "downloads": -1, "filename": "plone.app.ldap-1.2.3.tar.gz", "has_sig": false, "md5_digest": "0e0e24f679e54726a6be57b0b1f42065", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27362, "upload_time": "2010-10-07T20:45:48", "url": "https://files.pythonhosted.org/packages/b9/af/81c133aec81cb3ae1131b75e48a97b6d0eec031eb26e0aa14229f44c23f4/plone.app.ldap-1.2.3.tar.gz" } ], "1.2.4": [ { "comment_text": "", "digests": { "md5": "1e5060b1db31a592a10768112281054f", "sha256": "eae3cc7df256b75e2b3023889dd289ad1476d16a81aafc104a1a816731a2b738" }, "downloads": -1, "filename": "plone.app.ldap-1.2.4.tar.gz", "has_sig": false, "md5_digest": "1e5060b1db31a592a10768112281054f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27061, "upload_time": "2010-12-08T01:51:12", "url": "https://files.pythonhosted.org/packages/92/28/7965361d9bf120e694e6edcf4b8beeb61d2960053ec59b01240f7a578378/plone.app.ldap-1.2.4.tar.gz" } ], "1.2.5": [ { "comment_text": "", "digests": { "md5": "7d3d990a3fefe589e45fe393837b4164", "sha256": "602fd5cdfc62b40d7f4a96a1be52d5b3403142415125bfa2372fb647eba5a006" }, "downloads": -1, "filename": "plone.app.ldap-1.2.5.zip", "has_sig": false, "md5_digest": "7d3d990a3fefe589e45fe393837b4164", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46636, "upload_time": "2011-05-02T22:20:14", "url": "https://files.pythonhosted.org/packages/dd/e7/f1aaf8d008c574e903325ff7dc8f4d07de5e71d7d1298cda4d67d9de50a4/plone.app.ldap-1.2.5.zip" } ], "1.2.6": [ { "comment_text": "", "digests": { "md5": "98e2c82b98b6e0926cc3e6afb0d292b3", "sha256": "099e69ce99ceb5e522f0c85a7706c4b73224a945af6857e81e9a06477d7de783" }, "downloads": -1, "filename": "plone.app.ldap-1.2.6.zip", "has_sig": false, "md5_digest": "98e2c82b98b6e0926cc3e6afb0d292b3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 46925, "upload_time": "2011-07-18T00:55:18", "url": "https://files.pythonhosted.org/packages/57/80/2a305cc139c4abe40c75b9fe6cf134d2a58c617326051c74da3045ffaf81/plone.app.ldap-1.2.6.zip" } ], "1.2.7": [ { "comment_text": "", "digests": { "md5": "28d43138450bc65d8019d5a6ce4231ba", "sha256": "df294e4e0cb3b7c47e205b91abeaf3cd4c3f8857b88537c3b4a48bcbcc295cc3" }, "downloads": -1, "filename": "plone.app.ldap-1.2.7.tar.gz", "has_sig": false, "md5_digest": "28d43138450bc65d8019d5a6ce4231ba", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28602, "upload_time": "2011-10-20T02:15:56", "url": "https://files.pythonhosted.org/packages/72/50/90b1baeaf75ba11e26675a984799b88e49f8d02e5557f735f90e608e2866/plone.app.ldap-1.2.7.tar.gz" } ], "1.2.8": [ { "comment_text": "", "digests": { "md5": "20654e77c719d869b83e0089407d8acb", "sha256": "58b1c33695366dfd6f93b0e54ac5e55ad657f59ed1c0b96833295a881ecdda5e" }, "downloads": -1, "filename": "plone.app.ldap-1.2.8.tar.gz", "has_sig": false, "md5_digest": "20654e77c719d869b83e0089407d8acb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23436, "upload_time": "2012-03-03T03:51:56", "url": "https://files.pythonhosted.org/packages/2d/1a/fe007a95c78d062351de4752a2797f2a11559ef6292f593a8b291193a90d/plone.app.ldap-1.2.8.tar.gz" } ], "1.2.9": [ { "comment_text": "", "digests": { "md5": "ea47938db6dc4c2f6efa68c00bf5f849", "sha256": "aea8fdbfc74296cb459058c63f35c698ee9192a5a4471a554c1916c53bfd4740" }, "downloads": -1, "filename": "plone.app.ldap-1.2.9.zip", "has_sig": false, "md5_digest": "ea47938db6dc4c2f6efa68c00bf5f849", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 45011, "upload_time": "2012-09-28T10:41:01", "url": "https://files.pythonhosted.org/packages/6a/ad/d79b591d59bf103b723cf8cf0de848a52774f6fc4462487b5b328bfa0ebe/plone.app.ldap-1.2.9.zip" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "0d1a376a150bb172ba79e28de180dd09", "sha256": "b66553d8521f464990559b603027aa33e73b3ac08e4e5673d0c837e81b585f84" }, "downloads": -1, "filename": "plone.app.ldap-1.3.0.zip", "has_sig": false, "md5_digest": "0d1a376a150bb172ba79e28de180dd09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44271, "upload_time": "2012-09-28T10:41:54", "url": "https://files.pythonhosted.org/packages/6d/67/2ae950d959c67c8bc48a747c7b973e6ccd6ec2b50afa81b63ed28df85399/plone.app.ldap-1.3.0.zip" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "8efb6ea0c2c8d2a43771b446a0375f7e", "sha256": "f258b7ad2146048e4d52a1b411c2311a72f0578b2860376a5cca6510c3f133b6" }, "downloads": -1, "filename": "plone.app.ldap-1.3.1.zip", "has_sig": false, "md5_digest": "8efb6ea0c2c8d2a43771b446a0375f7e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 44690, "upload_time": "2013-10-01T10:03:44", "url": "https://files.pythonhosted.org/packages/bd/2c/75f43d67ac029064048085ce5418c8e5b1042571a65e1fd12cccb7d19399/plone.app.ldap-1.3.1.zip" } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "79bd36c04b4448bd8d382e839d9a9ea6", "sha256": "2ef27ec5e1a09b7969c7b269cd1bbd2688b9430ba4650d9b0b3ae05ca12d944b" }, "downloads": -1, "filename": "plone.app.ldap-1.3.2.zip", "has_sig": false, "md5_digest": "79bd36c04b4448bd8d382e839d9a9ea6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48249, "upload_time": "2015-03-02T19:40:25", "url": "https://files.pythonhosted.org/packages/f0/f2/913e2d6a98d191621ffff4a76edb441b00316c280d049c766a65ac425a47/plone.app.ldap-1.3.2.zip" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "c2692949d74068b500cb2591720779b6", "sha256": "a859ebab33d8c72832f144c5e96bbc43b528ac6abbe6b5e1452c9b9f7cbb6fcf" }, "downloads": -1, "filename": "plone.app.ldap-1.4.0.tar.gz", "has_sig": false, "md5_digest": "c2692949d74068b500cb2591720779b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38844, "upload_time": "2016-08-19T18:23:50", "url": "https://files.pythonhosted.org/packages/fd/23/57d371199d4d5d88a280a32f361625b17e1eb1317ca77c63d42227e866cc/plone.app.ldap-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "0f7fbeffb3392fde8846c4ae12dc40fe", "sha256": "23bafeea576d64ccc9efa4f5045c8b3846324d28eba9b8170cb12cba78af7f3a" }, "downloads": -1, "filename": "plone.app.ldap-1.4.1.tar.gz", "has_sig": false, "md5_digest": "0f7fbeffb3392fde8846c4ae12dc40fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35560, "upload_time": "2017-08-27T23:59:39", "url": "https://files.pythonhosted.org/packages/c1/66/13e20a8ee12eebe67bf3a9d7c8d41b2be1c468fd43e9c3d40d4d13497973/plone.app.ldap-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "c93732a7c701c629da3663f3551fe183", "sha256": "0645398f5f6a79e97cf07327aafe31d64431b2648cea2bd8a5fce648671f738b" }, "downloads": -1, "filename": "plone.app.ldap-1.4.2.tar.gz", "has_sig": false, "md5_digest": "c93732a7c701c629da3663f3551fe183", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38378, "upload_time": "2017-11-26T18:23:10", "url": "https://files.pythonhosted.org/packages/28/7a/57452aab4643d450621833ff570a009a843866422d182e748d79bfde15bc/plone.app.ldap-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "7e1de26b609d0acb1e731f6e129ff1e1", "sha256": "a750bb52e3b69ca5de9c08451eb4a5f99b7e3504c06702d375034b917da7472c" }, "downloads": -1, "filename": "plone.app.ldap-1.4.3.tar.gz", "has_sig": false, "md5_digest": "7e1de26b609d0acb1e731f6e129ff1e1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 42109, "upload_time": "2018-04-08T18:23:22", "url": "https://files.pythonhosted.org/packages/93/86/153c50f4587c40083d231d7d5b03a91bf4c3b648dbc1c6c26c1ce7c3ce7e/plone.app.ldap-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "4de3b9c995aee32109c1d5eafdbec39a", "sha256": "fcb6567ab99d67b7f2766292faf49c3336164075d48dab0a7b362dc7066316e4" }, "downloads": -1, "filename": "plone.app.ldap-1.4.4.tar.gz", "has_sig": false, "md5_digest": "4de3b9c995aee32109c1d5eafdbec39a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39727, "upload_time": "2019-09-19T14:42:38", "url": "https://files.pythonhosted.org/packages/a7/07/048ec976041492bfdb5ccaf3e01beb4c3c59955373b8301ce4a32aef7345/plone.app.ldap-1.4.4.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "4de3b9c995aee32109c1d5eafdbec39a", "sha256": "fcb6567ab99d67b7f2766292faf49c3336164075d48dab0a7b362dc7066316e4" }, "downloads": -1, "filename": "plone.app.ldap-1.4.4.tar.gz", "has_sig": false, "md5_digest": "4de3b9c995aee32109c1d5eafdbec39a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 39727, "upload_time": "2019-09-19T14:42:38", "url": "https://files.pythonhosted.org/packages/a7/07/048ec976041492bfdb5ccaf3e01beb4c3c59955373b8301ce4a32aef7345/plone.app.ldap-1.4.4.tar.gz" } ] }