didou Wed Aug 25 04:36:33 2004 EDT
Modified files:
/phpdoc/scripts checkdoc.php checkent.php dbtags.php entities.php
entity-usage.php fixphpweb.php process.php
sort_aliases.php
Log:
no short tags
http://cvs.php.net/diff.php/phpdoc/scripts/checkdoc.php?r1=1.2&r2=1.3&ty=u
Index: phpdoc/scripts/checkdoc.php
diff -u phpdoc/scripts/checkdoc.php:1.2 phpdoc/scripts/checkdoc.php:1.3
--- phpdoc/scripts/checkdoc.php:1.2 Wed Dec 31 19:47:42 2003
+++ phpdoc/scripts/checkdoc.php Wed Aug 25 04:36:32 2004
@@ -25,7 +25,7 @@
Check documented functions in phpdoc
Usage:
- <?=$argv[0]?> [missing]
+ <?php echo $argv[0];?> [missing]
By providing the optional "missing" parameter,
only a list of undocumented functions is listed,
http://cvs.php.net/diff.php/phpdoc/scripts/checkent.php?r1=1.8&r2=1.9&ty=u
Index: phpdoc/scripts/checkent.php
diff -u phpdoc/scripts/checkent.php:1.8 phpdoc/scripts/checkent.php:1.9
--- phpdoc/scripts/checkent.php:1.8 Sat Jan 10 07:50:18 2004
+++ phpdoc/scripts/checkent.php Wed Aug 25 04:36:32 2004
@@ -18,7 +18,7 @@
| Gabor Hojtsy <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: checkent.php,v 1.8 2004/01/10 12:50:18 nlopess Exp $
+ $Id: checkent.php,v 1.9 2004/08/25 08:36:32 didou Exp $
*/
if ($argc > 1 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
@@ -27,7 +27,7 @@
Check entities in entities/global.ent (HTTP and FTP schemes)
Usage:
- <?=$argv[0]?>
+ <?php echo $argv[0];?>
This script checks FTP and HTTP URLs listed
in entities/global.ent. Grab the output, to put it in
http://cvs.php.net/diff.php/phpdoc/scripts/dbtags.php?r1=1.2&r2=1.3&ty=u
Index: phpdoc/scripts/dbtags.php
diff -u phpdoc/scripts/dbtags.php:1.2 phpdoc/scripts/dbtags.php:1.3
--- phpdoc/scripts/dbtags.php:1.2 Wed Dec 31 20:08:46 2003
+++ phpdoc/scripts/dbtags.php Wed Aug 25 04:36:32 2004
@@ -17,7 +17,7 @@
| Authors: Gabor Hojtsy <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: dbtags.php,v 1.2 2004/01/01 01:08:46 goba Exp $
+ $Id: dbtags.php,v 1.3 2004/08/25 08:36:32 didou Exp $
*/
if ($argc > 2 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
@@ -27,7 +27,7 @@
and give statistics
Usage:
- <?=$argv[0]?> [<language-code>]
+ <?php echo $argv[0];?> [<language-code>]
<language-code> can be a valid language code
used in the repository, or 'all' for all
http://cvs.php.net/diff.php/phpdoc/scripts/entities.php?r1=1.8&r2=1.9&ty=u
Index: phpdoc/scripts/entities.php
diff -u phpdoc/scripts/entities.php:1.8 phpdoc/scripts/entities.php:1.9
--- phpdoc/scripts/entities.php:1.8 Wed Dec 31 20:08:46 2003
+++ phpdoc/scripts/entities.php Wed Aug 25 04:36:32 2004
@@ -17,7 +17,7 @@
| Authors: Gabor Hojtsy <[EMAIL PROTECTED]> |
+----------------------------------------------------------------------+
- $Id: entities.php,v 1.8 2004/01/01 01:08:46 goba Exp $
+ $Id: entities.php,v 1.9 2004/08/25 08:36:32 didou Exp $
*/
if ($argc > 3 || in_array($argv[1], array('--help', '-help', '-h', '-?'))) {
@@ -27,7 +27,7 @@
list used and unused entities.
Usage:
- <?=$argv[0]?> [<entity-file>] [<language-code>]
+ <?php echo $argv[0];?> [<entity-file>] [<language-code>]
<entity-file> must be a file name (with relative
path from the phpdoc root) to a file containing
http://cvs.php.net/diff.php/phpdoc/scripts/entity-usage.php?r1=1.5&r2=1.6&ty=u
Index: phpdoc/scripts/entity-usage.php
diff -u phpdoc/scripts/entity-usage.php:1.5 phpdoc/scripts/entity-usage.php:1.6
--- phpdoc/scripts/entity-usage.php:1.5 Thu Jan 15 12:15:49 2004
+++ phpdoc/scripts/entity-usage.php Wed Aug 25 04:36:32 2004
@@ -24,7 +24,7 @@
Find which files use the specified entity.
Usage:
- <?=$argv[0]?> <entity> [<language-code>]
+ <?php echo $argv[0];?> <entity> [<language-code>]
<entity> is the entity you want to search.
http://cvs.php.net/diff.php/phpdoc/scripts/fixphpweb.php?r1=1.2&r2=1.3&ty=u
Index: phpdoc/scripts/fixphpweb.php
diff -u phpdoc/scripts/fixphpweb.php:1.2 phpdoc/scripts/fixphpweb.php:1.3
--- phpdoc/scripts/fixphpweb.php:1.2 Wed Dec 31 19:35:41 2003
+++ phpdoc/scripts/fixphpweb.php Wed Aug 25 04:36:32 2004
@@ -25,7 +25,7 @@
Deletes the HTML !DOCTYPE lines from 'phpweb_xsl' generated files
Usage:
- <?=$argv[0]?> <dir>
+ <?php echo $argv[0];?> <dir>
<dir> is the folder, where the phpweb_xsl output
files are located. The files will be rewritten to
http://cvs.php.net/diff.php/phpdoc/scripts/process.php?r1=1.8&r2=1.9&ty=u
Index: phpdoc/scripts/process.php
diff -u phpdoc/scripts/process.php:1.8 phpdoc/scripts/process.php:1.9
--- phpdoc/scripts/process.php:1.8 Wed Dec 31 19:47:42 2003
+++ phpdoc/scripts/process.php Wed Aug 25 04:36:32 2004
@@ -25,7 +25,7 @@
Process the manual to do some replacements.
Usage:
- <?=$argv[0]?> <apply-script> [<startdir>]
+ <?php echo $argv[0]; ?> <apply-script> [<startdir>]
<apply-script> must contain the function apply($input),
which recieves a whole xml-file, and should return
http://cvs.php.net/diff.php/phpdoc/scripts/sort_aliases.php?r1=1.6&r2=1.7&ty=u
Index: phpdoc/scripts/sort_aliases.php
diff -u phpdoc/scripts/sort_aliases.php:1.6 phpdoc/scripts/sort_aliases.php:1.7
--- phpdoc/scripts/sort_aliases.php:1.6 Wed Dec 31 19:47:42 2003
+++ phpdoc/scripts/sort_aliases.php Wed Aug 25 04:36:32 2004
@@ -100,5 +100,5 @@
fclose($out);
?>
Done!
-(you you still need to copy <?=$filename?>.sorted
-on top of <?=$filename?> after a quick check)
+(you you still need to copy <?php echo $filename;?>.sorted
+on top of <?php echo $filename;?> after a quick check)