Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1:/tmp/cvs-serv20095
Modified Files:
TODO serendipity_admin_installer.inc.php
serendipity_config.inc.php
Log Message:
* Update TODO (! indicates critical features)
* Insert INSTALLED version into config file. This way we have some method of actually telling which version is INSTALLED on the system.
! Can be used later when we create an upgrade script
* Rename version tag to 0.3
Index: TODO
===================================================================
RCS file: /cvsroot/php-blog/serendipity/TODO,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- TODO 31 Aug 2003 00:13:56 -0000 1.5
+++ TODO 3 Sep 2003 19:59:29 -0000 1.6
@@ -10,8 +10,10 @@
* Add support for multiple weblogs
* Add the ability to have a printer friendly format for the weblog
* Convert localization into a phpMyAdmin-like system
-* Allow for upgrades of Serendipity in the installer
+* Rename serendipity_config.inc.php to serendipity.inc.php
-? Split up the configuration page and the installer ?
-? Make a better "Powered By" logo ?
-? Convert some of the internal plugins into external plugins ?
+! Allow for upgrades of Serendipity in the installer
+
+? Split up the configuration page and the installer
+? Make a better "Powered By" logo
+? Convert some of the internal plugins into external plugins
Index: serendipity_admin_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_installer.inc.php,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- serendipity_admin_installer.inc.php 2 Sep 2003 17:31:41 -0000 1.35
+++ serendipity_admin_installer.inc.php 3 Sep 2003 19:59:29 -0000 1.36
@@ -383,6 +383,8 @@
}
fwrite($configfp, "<?php\n");
+ $v = ( (!$serendipity['versionInstalled']) ? $serendipity['version'] : $serendipity['versionInstalled']);
+ fwrite($configfp, "\t\$serendipity['versionInstalled'] = '{$v}';\n");
fwrite($configfp, "\t\$serendipity['dbName'] = '{$_POST['dbName']}';\n");
fwrite($configfp, "\t\$serendipity['dbPrefix'] = '{$_POST['dbPrefix']}';\n");
fwrite($configfp, "\t\$serendipity['dbHost'] = '{$_POST['dbHost']}';\n");
Index: serendipity_config.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_config.inc.php,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- serendipity_config.inc.php 24 Aug 2003 14:26:53 -0000 1.26
+++ serendipity_config.inc.php 3 Sep 2003 19:59:30 -0000 1.27
@@ -4,7 +4,7 @@
include_once('compat.php');
ini_set('session.use_trans_sid', 0);
-$serendipity['version'] = '0.3-cvs';
+$serendipity['version'] = '0.3';
$serendipity['production'] = 1;
// Rewrite always on
|