1 Aug 2006 14:45
SVN: [15902] trunk/phase3/maintenance/installExtension.php
<daniel <at> svn.leuksman.com>
2006-08-01 12:45:56 GMT
2006-08-01 12:45:56 GMT
Revision: 15902
Author: daniel
Date: 2006-08-01 05:45:43 -0700 (Tue, 01 Aug 2006)
Log Message:
-----------
Rewrote installExtension.php; now using "repository" concept, OO design, and no longer patches
LocalSettings.php per default.
Modified Paths:
--------------
trunk/phase3/maintenance/installExtension.php
Modified: trunk/phase3/maintenance/installExtension.php
===================================================================
--- trunk/phase3/maintenance/installExtension.php 2006-07-30 23:50:26 UTC (rev 15901)
+++ trunk/phase3/maintenance/installExtension.php 2006-08-01 12:45:43 UTC (rev 15902)
<at> <at> -21,23 +21,287 <at> <at>
* <at> subpackage Maintenance
*/
-$optionsWithArgs = array( 'target' );
+$optionsWithArgs = array( 'target', 'repository', 'repos' );
require_once( 'commandLine.inc' );
+define('EXTINST_NOPATCH', 0);
+define('EXTINST_WRITEPATCH', 6);
+define('EXTINST_HOTPATCH', 10);
+
+class InstallerRepository {
(Continue reading)
RSS Feed