2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* ManifestBuilder
|
|
|
|
*
|
|
|
|
* The manifest file is a PHP include that contains global variables that
|
|
|
|
* represent the collected contents of the application:
|
|
|
|
* - all classes
|
|
|
|
* - all templates
|
|
|
|
* - all _config.php files
|
|
|
|
*
|
|
|
|
* Traversing the filesystem to collect this information on everypage.
|
|
|
|
* This information is cached so that it need not be regenerated on every
|
|
|
|
* pageview.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Define a constant for the name of the manifest file
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
define("MANIFEST_FILE", TEMP_FOLDER . "/manifest" . str_replace(array("/",":", "\\"),"_", $_SERVER['SCRIPT_FILENAME']));
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ManifestBuilder
|
|
|
|
*
|
|
|
|
* The ManifestBuilder class generates the manifest file and keeps it fresh.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
class ManifestBuilder {
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
static $restrict_to_modules = array();
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-09-15 01:03:29 +02:00
|
|
|
/**
|
|
|
|
* @var array $ignore_files Full filenames (without directory-path) which
|
|
|
|
* should be ignored by the manifest.
|
|
|
|
*/
|
|
|
|
public static $ignore_files = array(
|
|
|
|
'main.php',
|
|
|
|
'cli-script.php',
|
|
|
|
'install.php',
|
|
|
|
'index.php',
|
|
|
|
'check-php.php',
|
|
|
|
'rewritetest.php'
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array $ignore_folders Foldernames (without path) which
|
|
|
|
* should be ignored by the manifest.
|
|
|
|
*/
|
|
|
|
public static $ignore_folders = array(
|
|
|
|
'mysql',
|
|
|
|
'assets',
|
|
|
|
'shortstat',
|
|
|
|
'pear',
|
|
|
|
);
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
|
|
|
* Returns true if the manifest file should be regenerated
|
2007-09-15 23:29:52 +02:00
|
|
|
*
|
|
|
|
* @return bool Returns TRUE if the manifest file should be regenerated,
|
|
|
|
* otherwise FALSE.
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function staleManifest() {
|
2007-09-15 23:29:52 +02:00
|
|
|
/*if(Director::isDev() || Director::isTest())
|
|
|
|
$lastEdited = Filesystem::folderModTime(".", array('ss','php'));
|
|
|
|
else*/
|
|
|
|
$lastEdited = filemtime("../");
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
return !file_exists(MANIFEST_FILE)
|
|
|
|
|| (filemtime(MANIFEST_FILE) < $lastEdited)
|
2007-07-19 12:40:28 +02:00
|
|
|
|| (filemtime(MANIFEST_FILE) < time() - 3600)
|
|
|
|
|| isset($_GET['buildmanifest']) || isset($_GET['flush']);
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates a new manifest file and saves it to {@link MANIFEST_FILE}
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
static function compileManifest() {
|
|
|
|
|
|
|
|
// Config manifest
|
2007-09-15 23:29:52 +02:00
|
|
|
$baseDir = dirname($_SERVER['SCRIPT_FILENAME']) . "/..";
|
|
|
|
$baseDir = ereg_replace("/[^/]+/\\.\\.", "", $baseDir);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
// locate and include the exclude files
|
|
|
|
$topLevel = scandir($baseDir);
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($topLevel as $file) {
|
|
|
|
$fullPath = $baseDir . '/' . $file;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
if(is_dir($fullPath . '/') && file_exists($fullPath . '/_exclude.php'))
|
2007-07-19 12:40:28 +02:00
|
|
|
require_once($fullPath . '/_exclude.php');
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Class manifest
|
2007-09-15 23:29:52 +02:00
|
|
|
$classManifest = array();
|
|
|
|
if(is_array(self::$restrict_to_modules) && count(self::$restrict_to_modules)) {
|
|
|
|
// $restrict_to_modules is set, so we include only those specified
|
|
|
|
// modules
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach(self::$restrict_to_modules as $module)
|
2007-09-15 23:29:52 +02:00
|
|
|
ManifestBuilder::getClassManifest($baseDir . '/' . $module,
|
|
|
|
$classManifest);
|
2007-07-19 12:40:28 +02:00
|
|
|
} else {
|
2007-09-15 23:29:52 +02:00
|
|
|
// Include all directories which have an _config.php file but don't
|
|
|
|
// have an _manifest_exclude file
|
2007-07-19 12:40:28 +02:00
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
2007-09-15 23:29:52 +02:00
|
|
|
if(is_dir("$baseDir/$filename") &&
|
|
|
|
file_exists("$baseDir/$filename/_config.php") &&
|
|
|
|
!file_exists("$baseDir/$filename/_manifest_exclude")) {
|
|
|
|
ManifestBuilder::getClassManifest("$baseDir/$filename",
|
|
|
|
$classManifest);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
$manifest = "\$_CLASS_MANIFEST = " . var_export($classManifest, true) .
|
|
|
|
";\n";
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Load the manifest in, so that the autoloader works
|
|
|
|
global $_CLASS_MANIFEST;
|
|
|
|
$_CLASS_MANIFEST = $classManifest;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// _config.php manifest
|
|
|
|
global $databaseConfig;
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
2007-09-15 23:29:52 +02:00
|
|
|
if(is_dir("$baseDir/$filename/") &&
|
|
|
|
file_exists("$baseDir/$filename/_config.php") &&
|
|
|
|
!file_exists("$baseDir/$filename/_manifest_exclude")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
$manifest .= "require_once(\"$baseDir/$filename/_config.php\");\n";
|
2007-09-15 23:29:52 +02:00
|
|
|
// Include this so that we're set up for connecting to the database
|
|
|
|
// in the rest of the manifest builder
|
|
|
|
require_once("$baseDir/$filename/_config.php");
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
if(!project())
|
|
|
|
user_error("\$project isn't set", E_USER_WARNING);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Template & CSS manifest
|
|
|
|
$templateManifest = array();
|
|
|
|
$cssManifest = array();
|
|
|
|
|
|
|
|
// Only include directories if they have an _config.php file
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
foreach($topLevel as $filename) {
|
|
|
|
if(substr($filename,0,1) == '.') continue;
|
|
|
|
if($filename != 'themes' && is_dir("$baseDir/$filename") && file_exists("$baseDir/$filename/_config.php")) {
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, $filename, $templateManifest, $cssManifest);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get themes
|
|
|
|
if(file_exists("$baseDir/themes")) {
|
|
|
|
$themeDirs = scandir("$baseDir/themes");
|
|
|
|
foreach($themeDirs as $themeDir) {
|
|
|
|
if(substr($themeDir,0,1) == '.') continue;
|
|
|
|
// The theme something_forum is understood as being a part of the theme something
|
|
|
|
$themeName = strtok($themeDir, '_');
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, "themes/$themeDir", $templateManifest, $cssManifest, $themeName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure that any custom templates get favoured
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, project(), $templateManifest, $cssManifest);
|
|
|
|
|
|
|
|
$manifest .= "\$_TEMPLATE_MANIFEST = " . var_export($templateManifest, true) . ";\n";
|
|
|
|
$manifest .= "\$_CSS_MANIFEST = " . var_export($cssManifest, true) . ";\n";
|
|
|
|
DB::connect($databaseConfig);
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
if(DB::isActive()) {
|
|
|
|
// Database manifest
|
|
|
|
$allClasses = ManifestBuilder::allClasses($classManifest);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
$manifest .= "\$_ALL_CLASSES = " . var_export($allClasses, true) . ";\n";
|
2007-08-20 01:47:49 +02:00
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
global $_ALL_CLASSES;
|
|
|
|
$_ALL_CLASSES = $allClasses;
|
|
|
|
} else {
|
|
|
|
if(!isset($_REQUEST['from_installer']))
|
|
|
|
echo '<li>Waiting until the database is created before compiling ' .
|
|
|
|
'the manifest</li>';
|
|
|
|
}
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Write manifest to disk
|
|
|
|
$manifest = "<?php\n$manifest\n?>";
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
if($fh = fopen(MANIFEST_FILE, "w")) {
|
2007-07-19 12:40:28 +02:00
|
|
|
fwrite($fh, $manifest);
|
|
|
|
fclose($fh);
|
|
|
|
} else {
|
2007-09-15 23:29:52 +02:00
|
|
|
die("Cannot write manifest file! Check permissions of " .
|
|
|
|
MANIFEST_FILE);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates the class manifest - a list of all the PHP files in the
|
|
|
|
* application
|
|
|
|
*
|
|
|
|
* @param string $folder The folder to traverse (recursively)
|
|
|
|
* @pram array $classMap The already built class map
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
private static function getClassManifest($folder, &$classMap) {
|
|
|
|
$items = scandir($folder);
|
|
|
|
if($items) foreach($items as $item) {
|
2007-09-15 23:29:52 +02:00
|
|
|
// Skip some specific PHP files
|
2007-09-15 01:03:29 +02:00
|
|
|
if(in_array($item, self::$ignore_files)) continue;
|
|
|
|
|
|
|
|
// ignore hidden files and folders
|
2007-07-19 12:40:28 +02:00
|
|
|
if(substr($item,0,1) == '.') continue;
|
2007-09-15 01:03:29 +02:00
|
|
|
|
|
|
|
// ignore files without php-extension
|
|
|
|
if(substr($item,-4) != '.php' && !is_dir("$folder/$item")) continue;
|
|
|
|
|
|
|
|
// ignore files and folders with underscore-prefix
|
|
|
|
if(substr($item,0,1) == '_') continue;
|
|
|
|
|
|
|
|
// ignore certain directories
|
|
|
|
if(is_dir("$folder/$item") && in_array($item, self::$ignore_folders)) continue;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
// ignore directories with _manifest_exlude file
|
|
|
|
if(is_dir("$folder/$item") && file_exists("$folder/$item/_manifest_exclude")) continue;
|
2007-09-15 22:06:42 +02:00
|
|
|
|
|
|
|
// i18n: ignore language files (loaded on demand)
|
|
|
|
if($item == 'lang' && is_dir("$folder/$item") && ereg_replace("/[^/]+/\\.\\.","",$folder.'/..') == Director::baseFolder()) continue;
|
2007-09-15 01:03:29 +02:00
|
|
|
|
|
|
|
if(is_dir("$folder/$item")) {
|
|
|
|
// recurse into directories (if not in $ignore_folders)
|
|
|
|
ManifestBuilder::getClassManifest("$folder/$item", $classMap);
|
|
|
|
} else {
|
|
|
|
// include item in the manifest
|
2007-07-19 12:40:28 +02:00
|
|
|
$itemCode = substr($item,0,-4);
|
2007-09-15 01:03:29 +02:00
|
|
|
// if $itemCode is already in manifest, check if the two files do really contain the same class
|
|
|
|
if($classMap && array_key_exists($itemCode, $classMap)) {
|
|
|
|
$regex = '/class\s' . $itemCode .'/';
|
|
|
|
if(
|
|
|
|
preg_match($regex, file_get_contents("$folder/$item"))
|
|
|
|
&& preg_match($regex, file_get_contents($classMap[$itemCode]))
|
|
|
|
) {
|
|
|
|
user_error("Warning: there are two '$itemCode' files both containing the same class: '$folder/$item' and '{$classMap[$itemCode]}'.
|
|
|
|
This might mean that the wrong code is being used.", E_USER_WARNING);
|
|
|
|
} else {
|
|
|
|
user_error("Warning: there are two '$itemCode' files with the same filename: '$folder/$item' and '{$classMap[$itemCode]}'.
|
2007-09-15 03:55:55 +02:00
|
|
|
This might mean that the wrong code is being used.", E_USER_NOTICE);
|
2007-09-15 01:03:29 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$classMap[$itemCode] = "$folder/$item";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
/**
|
2007-09-15 23:29:52 +02:00
|
|
|
* Generates the template manifest - a list of all the .SS files in the
|
|
|
|
* application
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
private static function getTemplateManifest($baseDir, $folder, &$templateManifest, &$cssManifest, $themeName = null) {
|
|
|
|
$items = scandir("$baseDir/$folder");
|
|
|
|
if($items) foreach($items as $item) {
|
|
|
|
if(substr($item,0,1) == '.') continue;
|
|
|
|
if(substr($item,-3) == '.ss') {
|
|
|
|
$templateName = substr($item, 0, -3);
|
|
|
|
$templateType = substr($folder,strrpos($folder,'/')+1);
|
|
|
|
if($templateType == "templates") $templateType = "main";
|
|
|
|
|
|
|
|
if($themeName) {
|
|
|
|
$templateManifest[$templateName]['themes'][$themeName][$templateType] = "$baseDir/$folder/$item";
|
|
|
|
} else {
|
|
|
|
$templateManifest[$templateName][$templateType] = "$baseDir/$folder/$item";
|
|
|
|
}
|
|
|
|
|
|
|
|
} else if(substr($item,-4) == '.css') {
|
|
|
|
$cssName = substr($item, 0, -4);
|
2007-07-20 01:15:05 +02:00
|
|
|
// Debug::message($item);
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
if($themeName) {
|
|
|
|
$cssManifest[$cssName]['themes'][$themeName] = "$folder/$item";
|
|
|
|
} else {
|
|
|
|
$cssManifest[$cssName]['unthemed'] = "$folder/$item";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} else if(is_dir("$baseDir/$folder/$item")) {
|
|
|
|
ManifestBuilder::getTemplateManifest($baseDir, "$folder/$item", $templateManifest, $cssManifest, $themeName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include everything, so that actually *all* classes are available and
|
|
|
|
* build a map of classes and their subclasses and the information if
|
|
|
|
* the class has a database table
|
|
|
|
*
|
|
|
|
* @return array Returns an array that holds all class relevant
|
|
|
|
* information.
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
private static function allClasses($classManifest) {
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
// Include everything, so we actually have *all* classes
|
|
|
|
foreach($classManifest as $file) {
|
|
|
|
$b = basename($file);
|
2007-09-15 23:29:52 +02:00
|
|
|
if($b != 'cli-script.php' && $b != 'main.php')
|
|
|
|
include_once($file);
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-08-20 01:47:49 +02:00
|
|
|
|
|
|
|
if(DB::isActive()) {
|
|
|
|
$tables = DB::getConn()->tableList();
|
|
|
|
} else {
|
|
|
|
$tables = array();
|
|
|
|
}
|
|
|
|
|
|
|
|
$allClasses['hastable'] = array();
|
2007-07-19 12:40:28 +02:00
|
|
|
|
|
|
|
// Build a map of classes and their subclasses
|
|
|
|
$_classes = get_declared_classes();
|
|
|
|
foreach($_classes as $class) {
|
|
|
|
$allClasses['exists'][$class] = $class;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
if(isset($tables[strtolower($class)]))
|
|
|
|
$allClasses['hastable'][$class] = $class;
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($_classes as $subclass) {
|
2007-09-15 23:29:52 +02:00
|
|
|
if(is_subclass_of($class, $subclass))
|
|
|
|
$allClasses['parents'][$class][$subclass] = $subclass;
|
|
|
|
|
|
|
|
if(is_subclass_of($subclass, $class))
|
|
|
|
$allClasses['children'][$class][$subclass] = $subclass;
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
return $allClasses;
|
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include all files of the class manifest so that that actually *all*
|
|
|
|
* classes are available
|
|
|
|
*/
|
2007-07-19 12:40:28 +02:00
|
|
|
static function includeEverything() {
|
|
|
|
global $_CLASS_MANIFEST;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
foreach($_CLASS_MANIFEST as $filename) {
|
2007-09-15 23:29:52 +02:00
|
|
|
if(preg_match('/.*cli-script\.php$/', $filename))
|
2007-07-19 12:40:28 +02:00
|
|
|
continue;
|
2007-09-15 23:29:52 +02:00
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
require_once($filename);
|
|
|
|
}
|
|
|
|
}
|
2007-08-15 04:50:39 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Updates the active table list in the class info in the manifest, but leaves everything else as-is.
|
|
|
|
* Much quicker to run than compileManifest :-)
|
|
|
|
*/
|
|
|
|
static function update_db_tables() {
|
|
|
|
global $_ALL_CLASSES;
|
|
|
|
$_ALL_CLASSES['hastable'] = array();
|
|
|
|
|
|
|
|
$tables = DB::getConn()->tableList();
|
|
|
|
|
|
|
|
// We need to iterate through the full class lists, because the table names come out in lowercase
|
|
|
|
foreach($_ALL_CLASSES['exists'] as $class) {
|
|
|
|
if(isset($tables[strtolower($class)])) $_ALL_CLASSES['hastable'][$class] = $class;
|
|
|
|
}
|
|
|
|
|
|
|
|
self::write_manifest();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write the manifest file, containing the updated values in the applicable globals
|
|
|
|
*/
|
|
|
|
static function write_manifest() {
|
|
|
|
global $_CLASS_MANIFEST, $_TEMPLATE_MANIFEST, $_CSS_MANIFEST, $_ALL_CLASSES;
|
|
|
|
|
|
|
|
$manifest = "\$_CLASS_MANIFEST = " . var_export($_CLASS_MANIFEST, true) . ";\n";
|
|
|
|
|
|
|
|
// Config manifest
|
|
|
|
$baseDir = dirname($_SERVER['SCRIPT_FILENAME']) . "/..";
|
|
|
|
$baseDir = ereg_replace("/[^/]+/\\.\\.","",$baseDir);
|
|
|
|
$topLevel = scandir($baseDir);
|
|
|
|
|
|
|
|
foreach($topLevel as $filename) {
|
|
|
|
if(is_dir("$baseDir/$filename/") && file_exists("$baseDir/$filename/_config.php")) {
|
|
|
|
$manifest .= "require_once(\"$baseDir/$filename/_config.php\");\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$manifest .= "\$_TEMPLATE_MANIFEST = " . var_export($_TEMPLATE_MANIFEST, true) . ";\n";
|
|
|
|
$manifest .= "\$_CSS_MANIFEST = " . var_export($_CSS_MANIFEST, true) . ";\n";
|
|
|
|
$manifest .= "\$_ALL_CLASSES = " . var_export($_ALL_CLASSES, true) . ";\n";
|
|
|
|
$manifest = "<?php\n$manifest\n?>";
|
|
|
|
|
|
|
|
if($fh = fopen(MANIFEST_FILE,"w")) {
|
|
|
|
fwrite($fh, $manifest);
|
|
|
|
fclose($fh);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
die("Cannot write manifest file! Check permissions of " . MANIFEST_FILE);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
}
|
2007-09-15 23:29:52 +02:00
|
|
|
|
|
|
|
|
2007-07-19 12:40:28 +02:00
|
|
|
?>
|