cvs: docweb /cron/weekly checkent /scripts checkent.php
[email protected] ("Nuno Lopes")
| Newsgroups | php.doc.web |
|---|---|
| Message-ID | <cvsnlopess1106676940@cvsserver> |
nlopess Tue Jan 25 13:15:40 2005 EDT
Modified files:
/docweb/cron/weekly checkent
/docweb/scripts checkent.php
Log:
add gtk support
http://cvs.php.net/diff.php/docweb/cron/weekly/checkent?r1=1.6&r2=1.7&ty=u
Index: docweb/cron/weekly/checkent
diff -u docweb/cron/weekly/checkent:1.6 docweb/cron/weekly/checkent:1.7
--- docweb/cron/weekly/checkent:1.6 Sun Jan 23 11:14:28 2005
+++ docweb/cron/weekly/checkent Tue Jan 25 13:15:40 2005
@@ -8,3 +8,4 @@
${PHP} checkent.php phpdoc
${PHP} checkent.php peardoc
${PHP} checkent.php smarty
+${PHP} checkent.php gtk
http://cvs.php.net/diff.php/docweb/scripts/checkent.php?r1=1.17&r2=1.18&ty=u
Index: docweb/scripts/checkent.php
diff -u docweb/scripts/checkent.php:1.17 docweb/scripts/checkent.php:1.18
--- docweb/scripts/checkent.php:1.17 Sat Jan 22 15:44:57 2005
+++ docweb/scripts/checkent.php Tue Jan 25 13:15:40 2005
@@ -19,7 +19,7 @@
| Mehdi Achour <[email protected]> |
| Sean Coates <[email protected]> |
+----------------------------------------------------------------------+
-$Id: checkent.php,v 1.17 2005/01/22 20:44:57 sean Exp $
+$Id: checkent.php,v 1.18 2005/01/25 18:15:40 nlopess Exp $
*/
set_time_limit(0);
@@ -43,9 +43,14 @@
$filename = CVS_DIR . '/smarty/docs/entities/global.ent';
$entType = 'smarty';
break;
-
+
+ case 'gtk':
+ $filename = CVS_DIR . '/php-gtk-doc/global.ent';
+ $entType = 'gtk';
+ break;
+
default:
- echo "Usage: {$_SERVER['argv'][0]} phpdoc|peardoc|smarty\n";
+ echo "Usage: {$_SERVER['argv'][0]} phpdoc|peardoc|smarty|gtk\n";
die();
}