steffen: server/kolab/kolab/admin/statistics index.php, 1.5, 1.6 kolab.php, 1.4, 1.5 load.php, 1.4, 1.5 mta.php, 1.4, 1.5

cvs at intevation.de cvs at intevation.de
Fri Apr 16 12:17:31 CEST 2004


Author: steffen

Update of /kolabrepository/server/kolab/kolab/admin/statistics
In directory doto:/tmp/cvs-serv22487/admin/statistics

Modified Files:
	index.php kolab.php load.php mta.php 
Log Message:
Started restructuring the webinterface. New classes:

KolabLdap: Class for accessing the ldap server, API not fully evolved yet
KolabAuth: Class for authenticating a user using the LDAP class
KolabForm: HTML form handling class. This is supposed to replace the many 
	long input forms in the webinterface. Currently it is only used in
	user/ and some error-handling is missing



Index: index.php
===================================================================
RCS file: /kolabrepository/server/kolab/kolab/admin/statistics/index.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- index.php	22 May 2003 17:50:35 -0000	1.5
+++ index.php	16 Apr 2004 10:17:28 -0000	1.6
@@ -5,6 +5,8 @@
  This program is Free Software under the GNU General Public License (>=v2).
  Read the file COPYING that comes with this packages for details.
 */
+require_once('../include/authenticate.php');
+authenticate();
   include("head.php");
   This("statistics/");
   Head();

Index: kolab.php
===================================================================
RCS file: /kolabrepository/server/kolab/kolab/admin/statistics/kolab.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- kolab.php	22 May 2003 17:50:35 -0000	1.4
+++ kolab.php	16 Apr 2004 10:17:28 -0000	1.5
@@ -5,6 +5,8 @@
  This program is Free Software under the GNU General Public License (>=v2).
  Read the file COPYING that comes with this packages for details.
 */
+require_once('../include/authenticate.php');
+authenticate();
     include("head.php");
     This("statistics/kolab.php");
     Head();

Index: load.php
===================================================================
RCS file: /kolabrepository/server/kolab/kolab/admin/statistics/load.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- load.php	22 May 2003 17:50:35 -0000	1.4
+++ load.php	16 Apr 2004 10:17:28 -0000	1.5
@@ -5,6 +5,8 @@
  This program is Free Software under the GNU General Public License (>=v2).
  Read the file COPYING that comes with this packages for details.
 */
+require_once('../include/authenticate.php');
+authenticate();
     include("head.php");
     This("statistics/load.php");
     Head();

Index: mta.php
===================================================================
RCS file: /kolabrepository/server/kolab/kolab/admin/statistics/mta.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- mta.php	22 May 2003 17:50:35 -0000	1.4
+++ mta.php	16 Apr 2004 10:17:28 -0000	1.5
@@ -5,6 +5,8 @@
  This program is Free Software under the GNU General Public License (>=v2).
  Read the file COPYING that comes with this packages for details.
 */
+require_once('../include/authenticate.php');
+authenticate();
   include("head.php");
   This("statistics/mta.php");
   Head();





More information about the commits mailing list