Update of /cvsroot/phpcms-plugins/admin4phpCMS
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12823
Modified Files:
Changelog index.php
Added Files:
phpcms.png
Log Message:
several changes
--- NEW FILE: phpcms.png ---
(This appears to be a binary file; contents omitted.)
Index: Changelog
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/Changelog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- Changelog 30 May 2004 18:03:39 -0000 1.3
+++ Changelog 4 Jun 2004 11:11:56 -0000 1.4
@@ -1,11 +1,16 @@
+June 4 2004 (mjahn)
+ * phpDOC-comments are now in english
+ * optimized layout-module
+ * created the basics for module-programming
+
May 30 2004 (mjahn)
- * included some new basic modules (user, layout, error)
- * created templatefile layout.xml with DTD
- * created configfile config.xml with DTD
- * included PEAR::LiveUser into framework
+ * included some new basic modules (user, layout, error)
+ * created templatefile layout.xml with DTD
+ * created configfile config.xml with DTD
+ * included PEAR::LiveUser into framework
May 21 2004 (mjahn)
- * created classes for actionhandler, eventhandler and application
- * began programming of the configuration-module
- * simple email-module
- * first devel-version
\ No newline at end of file
+ * created classes for actionhandler, eventhandler and application
+ * began programming of the configuration-module
+ * simple email-module
+ * first devel-version
\ No newline at end of file
Index: index.php
===================================================================
RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/index.php,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- index.php 30 May 2004 18:03:39 -0000 1.2
+++ index.php 4 Jun 2004 11:11:56 -0000 1.3
@@ -1,42 +1,49 @@
<?php
/**
-* Admin4phpCMS - modulare Administrationsoberfläche
+* Admin4phpCMS - modulare administration-gui
*
-* Diese Software ist ein modulares Framework für Module aller Art.
-* Zweck der Software ist es, die Administration einer Website durch verschiedene
-* Module für den Administrator so einfach wie möglich zu halten.
+* This script contains a modulare framework for several module.
+* This software was written to make the administration of a website as easy
+* as possible for the webmasters.
*
-* Ein integriertes Benutzer- und Rechtemanagment sorgt für den ungehinderten Zugriff
-* für den Administrator und verhindert, daà DAUs die Website abschieÃen.
+* An integrated user- and permission-managment guarantees full access for the
+* admin but restricted access for normal users.
*
-* This program is free software; you can redistribute it and/or modify
-* it under the terms of the GNU General Public License as published by
-* the Free Software Foundation; either version 2 of the License, or
-* (at your option) any later version.
+* <b>License</b>
*
-* This program is distributed in the hope that it will be useful,
-* but WITHOUT ANY WARRANTY; without even the implied warranty of
-* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-* GNU General Public License for more details.
+* This program is free software; you can redistribute it and/or modify
+* it under the terms of the GNU General Public License as published by
+* the Free Software Foundation; either version 2 of the License, or
+* (at your option) any later version.
*
-* You should have received a copy of the GNU General Public License
-* along with this program; if not, write to the Free Software
-* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+* This program is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with this program; if not, write to the Free Software
+* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @author Martin Jahn <mj...@us...>
-* @license GPL
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @copyright Copyright (c) 2004, Martin Jahn
-* @version $$
+* @version $Id$
* @package admin4phpCMS
**/
/*
* $Log$
+* Revision 1.3 2004/06/04 11:11:56 mjahn
+* several changes
+*
* Revision 1.2 2004/05/30 18:03:39 mjahn
* restructuring of some files
*
*/
+define ('DEBUG', true);
+
/**
* PEAR-Pakete einbinden
**/
@@ -50,8 +57,5 @@
$a = new framework();
$a->run();
-echo '<hr /><pre>';
-print_r($a);
-echo '</pre>';
-
+unset ($a);
?>
\ No newline at end of file
|