gunnar: server/php-kolab/Kolab_Webadmin .cvsignore, NONE, 1.1 AUTHORS, NONE, 1.1 ChangeLog, NONE, 1.1 package.xml.in, NONE, 1.1

cvs at kolab.org cvs at kolab.org
Thu Aug 16 14:16:53 CEST 2007


Author: gunnar

Update of /kolabrepository/server/php-kolab/Kolab_Webadmin
In directory doto:/tmp/cvs-serv6190/Kolab_Webadmin

Added Files:
	.cvsignore AUTHORS ChangeLog package.xml.in 
Log Message:
Add the draft for the webadmin pear library. Add AUTHORS files to the pear packages.

--- NEW FILE: .cvsignore ---
package.xml

--- NEW FILE: AUTHORS ---
Originally written by Steffen Hansen <steffen at klaralvdalens-datakonsult.se>

  Copyright (c) 2004 - 2007  Steffen Hansen
  Copyright (c) 2004 - 2007  Klaraelvdalens Datakonsult AB

Portions based on work by the following people:

  (c) 2004 - 2006  Martin Konold        <martin.konold at erfrakon.de>
  (c) 2005 - 2006  Richard Bos          <richard at radoeka.nl>
  (c) 2005 - 2007  Marcus Hüwe          <suse-tux at gmx.de>
  (c) 2006 - 2007  Gunnar Wrobel        <wrobel at pardus.de>

Portions based on work by the following companies:

  (c) 2004 - 2006  erfrakon Partnerschaftsgesellschaft
  (c) 2006 - 2007  p at rdus


Contributions by the following people:

  Stuart Bingë         <s.binge at codefusion.co.za>
  Thomas Arendsen Hein <thomas at intevation.de>
  Bernhard Reiter      <bernhard at intevation.de>
  Sascha Wilde         <wilde at intevation.de>  

(Established based on the following guidlines:

 People with CVS access and more than two commits are being listed in
 the first list, their corresponding company in the second list. The
 order of appearences is sorted by date of last contribution, longest
 period of contributions and finally based on alphabetical order. The
 listed contributors comitted less than three patches or do not have
 CVS access.)
--- NEW FILE: ChangeLog ---

--- NEW FILE: package.xml.in ---
<?xml version="1.0"?>
<package version="2.0" xmlns="http://pear.php.net/dtd/package-2.0"
    xmlns:tasks="http://pear.php.net/dtd/tasks-1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0
http://pear.php.net/dtd/tasks-1.0.xsd
http://pear.php.net/dtd/package-2.0
http://pear.php.net/dtd/package-2.0.xsd">
 <name>Kolab_Webadmin</name>
 <!-- FIXME: How does this work? 
 <channel>pear.kolab.org</channel>-->
 <uri>http://www.kolab.org</uri>
 <summary>Library methods for the Kolab web administration frontend.</summary>
 <description>
   Classes and methods for the web administration frontend of the Kolab Groupware server
 </description>
 <!--
     Developer list established based on the following guidlines:

     People with CVS access and more than two commits are being listed
     as developers. The order of appearences is sorted based on
     alphabetical order. Contributors are listed in the AUTHORS file.

     Developers are marked inactive if they did not commit during both
     last and this year.
   -->
 <lead>
  <name>Steffen Hansen</name>
  <user>steffen</user>
  <email>steffen at klaralvdalens-datakonsult.se</email>
  <active>yes</active>
 </lead>
 <developer>
  <name>Richard Bos</name>
  <user>richard</user>
  <email>richard at radoeka.nl</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Marcus Huewe</name>
  <user>marcus</user>
  <email>suse-tux at gmx.de</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Martin Konold</name>
  <user>martin</user>
  <email>martin.konold at erfrakon.de</email>
  <active>yes</active>
 </developer>
 <developer>
  <name>Gunnar Wrobel</name>
  <user>gunnar</user>
  <email>wrobel at pardus.de</email>
  <active>yes</active>
 </developer>
 <date>@DATE@</date>
 <version>
  <release>@FULL_VERSION@</release>
  <api>@API_VERSION@</api>
 </version>
 <stability>
  <release>stable</release>
  <api>stable</api>
 </stability>
 <license uri="http://www.gnu.org/licenses/gpl.html">GPL</license>
 <notes>
 Put release notes here.
 They can be multi-line
 </notes>
 <contents>
  <dir name="/" baseinstalldir="Kolab">
   <dir name="Webadmin">
     <file name="auth.class.php" role="php" />
     <file name="authenticate.php" role="php" />
     <file name="debug.php" role="php" />
     <file name="form.class.php" role="php" />
     <file name="headers.php" role="php" />
     <file name="ldap.class.php" role="php" />
     <file name="locale.php" role="php" />
     <file name="menu.php" role="php" />
     <file name="passwd.php" role="php" />
     <file name="sieveutils.class.php" role="php" />
   </dir> <!-- /Webadmin -->
  </dir> <!-- / -->
 </contents>
 <dependencies>
  <required>
   <php>
    <min>4.2</min>
   </php>
   <pearinstaller>
    <min>1.4.0</min>
   </pearinstaller>
<!--   <package>
    <name>Horde_iCalendar</name>
    <channel>pear.horde.org</channel>
    <min>0.0.3</min>
   </package>-->
  </required>
  <optional>
  </optional>
 </dependencies>
 <phprelease>
 </phprelease>
 <!-- 
      Copy the changelog here once a new version is being released.
   -->
 <changelog>
  <release>
   <version>
    <release>2.1.0</release>
    <api>2.1.0</api>
   </version>
   <stability>
    <release>stable</release>
    <api>stable</api>
   </stability>
   <date>2007-08-08</date>
   <license uri="http://www.gnu.org/licenses/gpl.html">GPL</license>
2007-07-13  Gunnar Wrobel  "p at rdus.de"

	* php/admin/include/ldap.class.php: 

	fixed possible PHP notices.

2007-07-10  Gunnar Wrobel  "p at rdus.de"

	* php/admin/include/ldap.class.php:

	fixed kolab/issue1845 (incorrect check mailForDn for ldap results)
	https://intevation.de/roundup/kolab/issue1845

2007-05-24  Gunnar Wrobel  "p at rdus.de"

	* php/admin/include/form.class.php: 
	
	Fixed
	kolab/issue1610 (https://intevation.de/roundup/kolab/issue1610)

	* php/admin/include/form.class.php: 

	Fixed
	kolab/issue1620 (https://intevation.de/roundup/kolab/issue1620)

2007-01-10 Marcus Hüwe "suse-tux at gmx.de"
	* php/admin/include/form.class.php: added a __toString() method otherwise
	  it will not work with php 5.2.0 (see issue1558)

2006-03-26 Richard Bos "richard at radoeka.nl"
	Patch from Gunnar Wrobel
	* php/admin/include/mysmarty.php.in: make the Smarty prefix
	  configurable, using variable: kolab_php_smarty_prefix

2004-07-08 13:44  steffen

	* php/admin/include/form.class.php, www/admin/kolabsharedfolder/sf.php:
	  new permissions "read anon" and "read hidden" + allow special
	  usernames anyone and anonymous in ACLs

2004-06-30 22:49  steffen

	* php/admin/include/ldap.class.php: use ldap uri for php to support
	  ldaps

2004-06-17 11:12  steffen

	* php/admin/include/ldap.class.php,
	  www/admin/distributionlist/list.php, www/admin/user/user.php: fix
	  for issue191 + "kolabdelegate"

2004-06-15 03:51  steffen

	* php/admin/include/form.class.php,
	  php/admin/templates/en/service.tpl, www/admin/style.css,
	  www/admin/service/index.php: updated version, added list of
	  kolab-servers to servicepage

2004-06-14 04:13  steffen

	* php/admin/include/form.class.php, www/admin/user/user.php: more
	  group stuff

2004-06-08 00:29  steffen

	* ChangeLog, Makefile.am, bootstrap, configure.ac,
	  php/admin/include/mysmarty.php,
	  php/admin/include/mysmarty.php.in: moved kolab-webadmin to
	  autotools (credits to Richard Bos)

2004-05-28 17:49  steffen

	* php/admin/include/debug.php, www/admin/distributionlist/list.php:
	  anal nameclash checking + bugfixing for dist lists

2004-05-27 17:59  steffen

	* php/admin/include/debug.php, php/admin/include/ldap.class.php,
	  www/admin/user/user.php: thorough duplicate mail address checks
	  for users

2004-05-25 05:25  steffen

	* php/admin/include/debug.php: removed debug output

2004-05-24 13:53  steffen

	* php/admin/include/auth.class.php, www/admin/user/user.php:
	  reasonable default for kolabhomeserver. Check IP address when
	  authenticating to make it more difficult to hijack a session

2004-05-17 17:24  steffen

	* php/admin/include/Sieve.php, php/admin/include/auth.class.php,
	  php/admin/include/authenticate.php, php/admin/include/debug.php,
	  php/admin/include/form.class.php, php/admin/include/headers.php,
	  php/admin/include/ldap.class.php, php/admin/include/menu.php,
	  php/admin/include/mysmarty.php,
	  webinterface for the kolab server

   <notes>
   </notes>
  </release>
 </changelog>
</package>





More information about the commits mailing list