mirror of
https://github.com/php/doc-base.git
synced 2026-03-24 15:22:11 +01:00
73 lines
3.1 KiB
PHP
73 lines
3.1 KiB
PHP
#!/usr/bin/php
|
|
<?php
|
|
/*
|
|
+----------------------------------------------------------------------+
|
|
| Copyright (c) 1997-2023 The PHP Group |
|
|
+----------------------------------------------------------------------+
|
|
| This source file is subject to version 3.01 of the PHP license, |
|
|
| that is bundled with this package in the file LICENSE, and is |
|
|
| available through the world-wide-web at the following url: |
|
|
| https://www.php.net/license/3_01.txt. |
|
|
| If you did not receive a copy of the PHP license and are unable to |
|
|
| obtain it through the world-wide-web, please send a note to |
|
|
| license@php.net, so we can mail you a copy immediately. |
|
|
+----------------------------------------------------------------------+
|
|
| Authors: Jakub Vrana <vrana@php.net> |
|
|
+----------------------------------------------------------------------+
|
|
*/
|
|
|
|
/*
|
|
See en.pws for list of ignored words.
|
|
*/
|
|
|
|
if ($_SERVER["argc"] != 3 || ($_SERVER["argv"][1] != "escape" && $_SERVER["argv"][1] != "unescape")) {
|
|
exit("Purpose: Escape or unescape all *.xml files for use in aspell.\n"
|
|
. "Usage: aspell.php escape|unescape <directory>\n"
|
|
);
|
|
}
|
|
|
|
// TODO: &xxx.xx; -> &xxx-xx;
|
|
$GOOD_TAGS = "type|parameter|function|refname|literal|methodname|abbrev|acronym|constant|varname|replaceable|filename|userinput|command|structname|structfield";
|
|
$MODE = $_SERVER["argv"][1];
|
|
|
|
// htmlentities in comments and CDATA
|
|
function callback_htmlentities($matches) {
|
|
return $matches[1] . ($GLOBALS["MODE"] == "escape" ? htmlentities($matches[2]) : html_entity_decode($matches[2])) . $matches[3];
|
|
}
|
|
|
|
// make attributes from contents of always-good tags
|
|
function callback_make_value($matches) {
|
|
return '<' . $matches[1] . $matches[2] . ' aspell="' . htmlentities($matches[3]) . '"/>';
|
|
}
|
|
|
|
// make contents from attributes of always-good tags
|
|
function callback_make_contents($matches) {
|
|
return '<' . $matches[1] . $matches[2] . '>' . html_entity_decode($matches[3]) . '</' . $matches[1] . '>';
|
|
}
|
|
|
|
function recurse($dir) {
|
|
echo "$dir\n";
|
|
foreach (glob("$dir/*") as $filename) {
|
|
if (is_dir($filename)) {
|
|
recurse($filename);
|
|
} elseif (preg_match('/\\.xml$/i', $filename)) {
|
|
//~ echo "$filename\n";
|
|
$file = file_get_contents($filename);
|
|
$file = preg_replace_callback('~(<!\\[CDATA\\[)(.*)(\\]\\]>)~sU', "callback_htmlentities", $file);
|
|
$file = preg_replace_callback('~(<!--)(.*)(-->)~sU', "callback_htmlentities", $file); // isn't in one function as it can match !CDATA[[...-->
|
|
if ($GLOBALS["MODE"] == "escape") {
|
|
$file = preg_replace_callback('~<(' . $GLOBALS['GOOD_TAGS'] . ')( [^>]*)?>(.*)</\\1>~sU', "callback_make_value", $file);
|
|
} else { // "unescape"
|
|
$file = str_replace("\r", "", $file); // for Windows version of Aspell
|
|
$file = preg_replace_callback('~<(' . $GLOBALS['GOOD_TAGS'] . ')( [^>]*)? aspell="(.*)"/>~sU', "callback_make_contents", $file);
|
|
}
|
|
$fp = fopen($filename, "wb");
|
|
fwrite($fp, $file);
|
|
fclose($fp);
|
|
}
|
|
}
|
|
}
|
|
|
|
recurse($_SERVER["argv"][2]);
|
|
?>
|