summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBrion Vibber <brion@pobox.com>2010-04-21 20:20:43 +0200
committerBrion Vibber <brion@pobox.com>2010-04-21 20:20:43 +0200
commit61e7d898dc24b06afbda963ee78a907a3863e82d (patch)
treedaf1ed87eefd20b279db38c81d8dba5cb597f083 /scripts
parentdf41287226d113f178ef66f320c8568566890fe9 (diff)
docgen.php no longer depends on having a working installation; uses Console_GetOpt directly and regexes the STATUSNET_VERSION from common.php
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/docgen.php38
1 files changed, 34 insertions, 4 deletions
diff --git a/scripts/docgen.php b/scripts/docgen.php
index 78bbe37d8..ac0a5c83d 100755
--- a/scripts/docgen.php
+++ b/scripts/docgen.php
@@ -17,10 +17,30 @@ Options:
ENDOFHELP;
define('INSTALLDIR', realpath(dirname(__FILE__) . '/..'));
-require_once INSTALLDIR.'/scripts/commandline.inc';
+set_include_path(INSTALLDIR . DIRECTORY_SEPARATOR . 'extlib' . PATH_SEPARATOR . get_include_path());
$pattern = "*.php *.inc";
$exclude = 'config.php */extlib/* */local/* */plugins/* */scripts/*';
+$plugin = false;
+
+require_once 'Console/Getopt.php';
+$parser = new Console_Getopt();
+$result = $parser->getopt($_SERVER['argv'], $shortoptions, $longoptions);
+if (PEAR::isError($result)) {
+ print $result->getMessage() . "\n";
+ exit(1);
+}
+list($options, $args) = $result;
+
+foreach ($options as $option) {
+ $arg = $option[0];
+ if ($arg == '--plugin') {
+ $plugin = $options[1];
+ } else if ($arg == 'h' || $arg == '--help') {
+ print $helptext;
+ exit(0);
+ }
+}
if (isset($args[0])) {
$outdir = $args[0];
@@ -33,8 +53,7 @@ if (isset($args[0])) {
exit(1);
}
-if (have_option('p', 'plugin')) {
- $plugin = get_option_value('plugin');
+if ($plugin) {
$exclude = "*/extlib/*";
$indir = INSTALLDIR . "/plugins/" . $plugin;
if (!is_dir($indir)) {
@@ -51,8 +70,19 @@ if (have_option('p', 'plugin')) {
$indir = INSTALLDIR;
}
+function getVersion()
+{
+ // define('STATUSNET_VERSION', '0.9.1');
+ $source = file_get_contents(INSTALLDIR . '/lib/common.php');
+ if (preg_match('/^\s*define\s*\(\s*[\'"]STATUSNET_VERSION[\'"]\s*,\s*[\'"](.*)[\'"]\s*\)\s*;/m', $source, $matches)) {
+ return $matches[1];
+ }
+ return 'unknown';
+}
+
+
$replacements = array(
- '%%version%%' => STATUSNET_VERSION,
+ '%%version%%' => getVersion(),
'%%indir%%' => $indir,
'%%pattern%%' => $pattern,
'%%outdir%%' => $outdir,