* Perl documentation update

* Makefiles update
This commit is contained in:
Xavier Guimard 2009-06-29 10:12:29 +00:00
parent bfed9a789c
commit e5f83c5ba0
12 changed files with 51 additions and 14 deletions

View File

@ -31,6 +31,7 @@ lemonldap-ng (0.9.4) unstable; urgency=low
* Other :
- Pre-compilation in Apache's configuration files
- Cross-domain now included in core
- handler AuthBasic now uses SOAP
-- Xavier Guimard <x.guimard@free.fr> Mon, 29 Jun 2009 10:28:09 +0200

View File

@ -1,5 +1,15 @@
Revision history for Perl extension Lemonldap::NG::Common.
0.93 Mon Jun 29 11:44:47 2009
- New SOAP wrapper
- WSDL builder
- New Apache2::Log wrapper
- Syslog wrapper
- setApacheUser() sub
- LDAP storage backend for sessions and configuration
- Crypt object in configuration
- Safelib.pm : common subs useable in Lemonldap::NG rules
0.92 Sun Feb 8 08:04:25 2009
- Change CGI SOAP system

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Common
version: 0.92
version: 0.93
abstract: Common files for Lemonldap::NG infrastructure
license: ~
author:

View File

@ -1,5 +1,14 @@
Revision history for Perl extension Lemonldap::NG::Handler.
0.91 Mon Jun 29 11:54:02 2009
- CDA in core
- AuthBasic now use SOAP
- POST requests generation (used to post login/password in non
compatible applications)
- logs written in PerlLogHandler
- Sympa auto login handler
- Double session mechanism (1 secured and the other not)
0.9 Thu Dec 25 8:43:55 2008
- Configuration now managed by Lemonldap::NG::Common::Conf
- Custom functions

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Handler
version: 0.9
version: 0.91
abstract: The Apache protection module part of
license: ~
author:
@ -12,8 +12,9 @@ requires:
Cache::Cache: 0
CGI: 3.08
IO::Pipe: 0
Lemonldap::NG::Common: 0.9
Lemonldap::NG::Common: 0.93
LWP::UserAgent: 0
URI: 0
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.3.html
version: 1.3

View File

@ -10,7 +10,7 @@ WriteMakefile(
'Apache::Session' => 0,
'LWP::UserAgent' => 0,
'Cache::Cache' => 0,
'Lemonldap::NG::Common' => 0.9,
'Lemonldap::NG::Common' => 0.93,
'IO::Pipe' => 0,
'CGI' => 3.08,
'URI' => 0,

View File

@ -1,5 +1,10 @@
Revision history for Perl extension Lemonldap::NG::Manager.
0.89 Mon jun 29 11:58:54 2009
- Doxygen documentation
- Sessions.pm now use $whatToTrace parameter instead of $uid
- SOAP server is now obsolete (replaced by portal)
0.87 Tue dec 25 9:01:21 2008
- New module Sessions.pm and example
- Configuration modules migrates to Lemonldap::NG::Common

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Manager
version: 0.87
version: 0.89
abstract: Perl extension for managing Lemonldap::NG Web-SSO
license: ~
author:
@ -10,8 +10,8 @@ distribution_type: module
requires:
CGI: 3.08
IO::String: 0
Lemonldap::NG::Common: 0.9
Lemonldap::NG::Handler: 0.9
Lemonldap::NG::Common: 0.93
Lemonldap::NG::Handler: 0.91
LWP::UserAgent: 0
XML::Simple: 0
meta-spec:

View File

@ -8,8 +8,8 @@ WriteMakefile(
PREREQ_PM => {
'CGI' => 3.08,
'IO::String' => 0,
'Lemonldap::NG::Common' => 0.9,
'Lemonldap::NG::Handler' => 0.9,
'Lemonldap::NG::Common' => 0.93,
'Lemonldap::NG::Handler' => 0.91,
'LWP::UserAgent' => 0,
'XML::Simple' => 0,
}, # e.g., Module::Name => 1.1

View File

@ -1,5 +1,12 @@
Revision history for Perl extension Lemonldap::NG::Portal.
0.88 Mon jun 29 12:00:15 2009
- New auth and userDB modules : Multi, Remote, Null (userDB only)
- New module system for passwords
- Notification system
- Pre-compilation in Apache's configuration files
- Double session mechanism (1 secured and the other not)
0.87 Sun feb 8 8:05:02 2009
- ldap+tls was broken
- fix security problem when running on Apache with thread support:

View File

@ -1,6 +1,6 @@
--- #YAML:1.0
name: Lemonldap-NG-Portal
version: 0.87
version: 0.88
abstract: The authentication portal part of Lemonldap::NG Web-SSO
license: ~
author:
@ -11,12 +11,16 @@ requires:
Apache::Session: 0
CGI: 3.08
CGI::Session: 0
Email::Date::Format: 0
HTML::Template: 0
IO::String: 0
Lemonldap::NG::Common: 0.9
Lemonldap::NG::Handler: 0.9
Lemonldap::NG::Common: 0.93
Lemonldap::NG::Handler: 0.91
MIME::Lite: 0
Net::LDAP: 0
String::Random: 0
XML::LibXML: 0
XML::LibXSLT: 0
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.3.html
version: 1.3

View File

@ -12,8 +12,8 @@ WriteMakefile(
'CGI::Session' => 0,
'HTML::Template' => 0,
'IO::String' => 0,
'Lemonldap::NG::Common' => 0.9,
'Lemonldap::NG::Handler' => 0.9,
'Lemonldap::NG::Common' => 0.93,
'Lemonldap::NG::Handler' => 0.91,
'XML::LibXML' => 0,
'XML::LibXSLT' => 0,
'MIME::Lite' => 0,