Version 0.1.3 0.1.3
authorThierry Florac <thierry.florac@onf.fr>
Tue, 06 Jun 2017 18:12:04 +0200
changeset 21 e431d2f1671f
parent 20 68b5251b9687
child 22 216ba0fca6c5
Version 0.1.3
buildout.cfg
docs/HISTORY.txt
setup.py
src/pyams_ldap.egg-info/PKG-INFO
src/pyams_ldap.egg-info/requires.txt
--- a/buildout.cfg	Tue Jun 06 18:11:52 2017 +0200
+++ b/buildout.cfg	Tue Jun 06 18:12:04 2017 +0200
@@ -1,5 +1,7 @@
 [buildout]
 eggs-directory = /var/local/env/pyams/eggs
+extends = http://download.ztfy.org/pyams/pyams-dev.cfg
+find-links = http://download.ztfy.org/pyams
 
 socket-timeout = 3
 show-picked-versions = true
@@ -11,22 +13,23 @@
     *.sourceforge.net
     github.com
 
-#extends = http://download.ztfy.org/webapp/ztfy.webapp.dev.cfg
 versions = versions
 newest = false
 #allow-picked-versions = false
 
 src = src
-develop = .
-          ../pyams_form
-          ../pyams_file
-          ../pyams_pagelet
-          ../pyams_security
-          ../pyams_skin
-          ../pyams_template
-          ../pyams_utils
-          ../pyams_viewlet
-          ../ext/lingua
+develop =
+    .
+    ../pyams_form
+    ../pyams_file
+    ../pyams_mail
+    ../pyams_pagelet
+    ../pyams_security
+    ../pyams_skin
+    ../pyams_template
+    ../pyams_utils
+    ../pyams_viewlet
+    ../ext/lingua
 
 parts =
     package
@@ -37,9 +40,9 @@
 [package]
 recipe = zc.recipe.egg
 eggs =
+    ldap3
     pyams_ldap
     pyramid
-    python3-ldap
     zope.component
     zope.interface
 
@@ -66,4 +69,4 @@
 eggs = pyams_ldap [test]
 
 [versions]
-pyams_ldap = 0.1.2
+pyams_ldap = 0.1.3
--- a/docs/HISTORY.txt	Tue Jun 06 18:11:52 2017 +0200
+++ b/docs/HISTORY.txt	Tue Jun 06 18:12:04 2017 +0200
@@ -1,6 +1,12 @@
 History
 =======
 
+0.1.3
+-----
+ - switch from python3-ldap package to ldap3
+ - updated forms CSS class
+ - added features for better handling of LDAP groups
+
 0.1.2
 -----
  - updated inner forms base class
--- a/setup.py	Tue Jun 06 18:11:52 2017 +0200
+++ b/setup.py	Tue Jun 06 18:12:04 2017 +0200
@@ -22,7 +22,7 @@
 README = os.path.join(DOCS, 'README.txt')
 HISTORY = os.path.join(DOCS, 'HISTORY.txt')
 
-version = '0.1.2'
+version = '0.1.3'
 long_description = open(README).read() + '\n\n' + open(HISTORY).read()
 
 tests_require = []
@@ -57,15 +57,24 @@
       install_requires=[
           'setuptools',
           # -*- Extra requirements: -*-
+          'Beaker',
+          'ldap3',
+          'pyams_form',
+          'pyams_mail',
           'pyams_pagelet',
           'pyams_security',
           'pyams_skin',
+          'pyams_template',
           'pyams_utils',
           'pyams_viewlet',
           'pyramid',
-          'python3-ldap',
+          'z3c.form',
+          'z3c.table',
           'zope.component',
+          'zope.container',
           'zope.interface',
+          'zope.intid',
+          'zope.schema',
       ],
       entry_points="""
       # -*- Entry points: -*-
--- a/src/pyams_ldap.egg-info/PKG-INFO	Tue Jun 06 18:11:52 2017 +0200
+++ b/src/pyams_ldap.egg-info/PKG-INFO	Tue Jun 06 18:12:04 2017 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pyams-ldap
-Version: 0.1.2
+Version: 0.1.3
 Summary: PyAMS interfaces and classes for LDAP authentication
 Home-page: http://hg.ztfy.org/pyams/pyams_ldap
 Author: Thierry Florac
@@ -11,6 +11,12 @@
         History
         =======
         
+        0.1.3
+        -----
+         - switch from python3-ldap package to ldap3
+         - updated forms CSS class
+         - added features for better handling of LDAP groups
+        
         0.1.2
         -----
          - updated inner forms base class
--- a/src/pyams_ldap.egg-info/requires.txt	Tue Jun 06 18:11:52 2017 +0200
+++ b/src/pyams_ldap.egg-info/requires.txt	Tue Jun 06 18:12:04 2017 +0200
@@ -1,12 +1,21 @@
-setuptools
+Beaker
+ldap3
+pyams_form
+pyams_mail
 pyams_pagelet
 pyams_security
 pyams_skin
+pyams_template
 pyams_utils
 pyams_viewlet
 pyramid
-python3-ldap
+setuptools
+z3c.form
+z3c.table
 zope.component
+zope.container
 zope.interface
+zope.intid
+zope.schema
 
 [test]