1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
|
#!/usr/bin/env php
<?php
/** vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4:
* Script to trigger partial builds of the PEAR manual
*
* LICENSE: This source file is subject to version 3.0 of the PHP license
* that is available through the world-wide-web at the following URI:
* http://www.php.net/license/3_0.txt. If you did not receive a copy of
* the PHP License and are unable to obtain it through the web, please
* send a note to license@php.net so we can mail you a copy immediately.
*
* @author Martin Jansen <mj@php.net>
* @copyright 2005 The PEAR Group
* @version CVS: $Id: make-partial.php,v 1.1 2005/01/28 15:17:01 sean Exp $
*/
// NOTE: originally from peardoc:/make-partial.php ;
// these files should be kept in sync
require_once "Console/Getopt.php";
$console = new Console_Getopt;
$args = $console->getopt($console->readPHPArgv(), array(),
array("format=", "include="));
if (!function_exists("readline")) {
echo "Error: The readline extension could not be found!";
exit(1);
}
$file = file("manual.xml.in");
if (!$file) {
echo "Error: Unable to read manual.xml.in!";
exit(1);
}
copy("manual.xml.in", "manual.xml.in.partial-backup");
register_shutdown_function("restoreFile");
// {{{ gather arguments
$format = "html";
$sections = array();
foreach ($args[0] as $arg) {
if ($arg[0] == "--format") {
$format = $arg[1];
} elseif ($arg[0] == '--include') {
$sections[] = $arg[1];
}
}
// }}}
$newFile = "";
$partStack = array();
$includePart = true;
$notInPart = true;
/**
* Loop through the file and build a new file depending on the users
* choice.
*/
foreach ($file as $line) {
// <part id="foo">
if (preg_match("/<part id=\"([a-z-]+)\">/", $line, $matches)) {
$inPart = true;
if ($sections) {
echo "Including ". $matches[1] ."? ";
if ($includePart = in_string($sections, $matches[1])) {
echo "YES\n";
} else {
echo "NO\n";
}
} else {
$include = readline("Include " . $matches[1] . "? [NO] ");
$includePart = evaluate($include);
}
if ($includePart == true) {
$newFile .= $line;
}
continue;
}
// </part>
if (preg_match("/<\/part>/", $line)) {
if (count($partStack) > 0) {
$newFile .= implode("", $partStack);
$partStack = array();
}
if ($includePart == true) {
$newFile .= $line;
}
$includePart = false;
$inPart = false;
continue;
}
// <title>
if ($inPart == true && $includePart && preg_match("/<title/", $line)) {
$partStack[] = $line;
continue;
}
// the rest
if ($inPart == true) {
if ($includePart == false) {
continue;
}
if (preg_match("/(\s\t)*&([a-z0-9\.-]+);/", $line, $matches)) {
if ($sections) {
echo "Including ". $matches[2] ."? ";
if ($include = in_string($sections, $matches[2])) {
echo "YES\n";
} else {
echo "NO\n";
}
} else {
$include = evaluate(readline("Include " . $matches[2] . "? [NO] "));
}
if ($include == true) {
$partStack[] = $line;
}
}
} else {
$newFile .= $line;
}
}
file_put_contents("manual.xml.in", $newFile);
// {{{ Run the build scripts
$cmd = "make " . $format;
passthru($cmd);
// }}}
// {{{ Helper functions
/**
* Restores the original manual.xml.in file
*/
function restoreFile() {
if (!is_file("manual.xml.in.partial-backup")) {
return;
}
rename("manual.xml.in.partial-backup", "manual.xml.in");
}
/**
* Evaluates the return value of readline()
*
* If the first parameter is either "y" or "yes" the method will
* return true. Otherwise false.
*/
function evaluate($str) {
if ($str == 'y' || $str == "yes") {
return true;
}
return false;
}
/**
* $needle (array) is in $haystack?
*
*/
function in_string($needle, $haystack)
{
foreach ((array) $needle AS $n) {
if (stripos($haystack, $n) !== false) {
return true;
}
}
return false;
}
// }}}
|