Created
June 8, 2013 20:30
-
-
Save smalyshev/5736464 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // get args | |
| if($argc < 3) { | |
| echo "Use: $argv[0] /path/to/php-5.4.16/NEWS 5.4.16\n"; | |
| exit(1); | |
| } | |
| // find NEWS entry | |
| $fp = fopen($argv[1], "r"); | |
| if(!$fp) { | |
| die("Can not open $argv[1]"); | |
| } | |
| $version = $argv[2]; | |
| $inside = false; | |
| $entries = array(); | |
| while(($ln = fgets($fp)) !== false) { | |
| if(preg_match("/(.. ... ....), PHP $version/", $ln, $m)) { | |
| // got entry start | |
| $inside = true; | |
| $date = strtr($m[1], " ", "-"); | |
| fgets($fp); // skip empty line | |
| continue; | |
| } | |
| if($inside) { | |
| if(preg_match('/, PHP \d+.\d+.\d+/', $ln)) { | |
| // next entry - we're done | |
| break; | |
| } | |
| if($ln == "\n") { | |
| $module = 'Core'; | |
| continue; | |
| } | |
| if($ln[0] == '-') { | |
| // module | |
| $module = trim(substr($ln, 1), " \t\n:"); | |
| } elseif(preg_match('/^\s+\.\s/',$ln)) { | |
| $entries[$module][] = trim(preg_replace('/^\s+\.\s+/', '', $ln)); | |
| } else { | |
| // continued line | |
| $c = count($entries[$module])-1; | |
| $entries[$module][$c] = trim($entries[$module][$c] )." ".trim($ln); | |
| } | |
| } | |
| } | |
| echo <<<HEAD | |
| <a name="$version"></a><!-- {{{ $version --> | |
| <h3>Version $version</h3> | |
| <b>$date</b> | |
| <ul> | |
| HEAD; | |
| foreach($entries as $module => $items) { | |
| echo "<li>$module:\n<ul>\n"; | |
| foreach($items as $item) { | |
| // strip author | |
| $item = preg_replace('/\.\s+\(.+?\)$/', '.', $item); | |
| // convert bug numbers | |
| $item = preg_replace( | |
| array('/Fixed bug #([0-9]+)/', '/Fixed PECL bug #([0-9]+)/', '/FR #([0-9]+)/'), | |
| array('<?php bugfix(\1); ?>', '<?php peclbugfix(\1); ?>', 'FR <?php bugl(\1); ?>'), | |
| $item | |
| ); | |
| echo " <li>$item</li>\n"; | |
| } | |
| echo "</ul></li>\n"; | |
| } | |
| echo "</ul>\n<!-- }}} -->\n\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment