fixed a bug and more cleanup

This commit is contained in:
John Bintz 2008-10-16 14:19:23 -04:00
parent e004cdef0b
commit c58a3d9685
2 changed files with 12 additions and 2 deletions

View File

@ -3,9 +3,18 @@
<title>Harmonious Code: Will my PHP code and Web hosting work together?</title> <title>Harmonious Code: Will my PHP code and Web hosting work together?</title>
<meta name="keywords" content="php, static code analysis, web hosting, functions, constants, language features" /> <meta name="keywords" content="php, static code analysis, web hosting, functions, constants, language features" />
<link rel="stylesheet" href="style.css" type="text/css" /> <link rel="stylesheet" href="style.css" type="text/css" />
<!--use thest HTML comments to dynamically insert your own content
by wrapping this HTML page in something else:
$page = file_get_contents("index.html");
$page = preg_replace('#<!--head- ->#', "extra head tag stuff", $page);
echo $page;
-->
<!--head-->
</head> </head>
<body> <body>
<h1>Harmonious Code</h1> <h1>Harmonious Code</h1>
<!--page_header-->
<div id="loading"> <div id="loading">
Loading... Loading...
</div> </div>
@ -32,8 +41,10 @@
</ul> </ul>
</div> </div>
</div> </div>
<!--above_footer-->
<div id="haxe:trace"></div> <div id="haxe:trace"></div>
<div id="footer"> <div id="footer">
<!--footer-->
<a href="http://harmoniouscode.coswellproductions.com/">Harmonious Code</a> is Copyright &copy; 2008 John Bintz &mdash; Licensed under the GPL Version 2 &mdash; <a href="http://harmoniouscode.coswellproductions.com/project_information/">Project Information and Source Code</a> <a href="http://harmoniouscode.coswellproductions.com/">Harmonious Code</a> is Copyright &copy; 2008 John Bintz &mdash; Licensed under the GPL Version 2 &mdash; <a href="http://harmoniouscode.coswellproductions.com/project_information/">Project Information and Source Code</a>
</div> </div>
<script type="text/javascript" src="harmoniouscode.js"> </script> <script type="text/javascript" src="harmoniouscode.js"> </script>

View File

@ -40,8 +40,7 @@ class FunctionTokenProcessor extends TokenProcessor {
var version_clean_regexps = [ var version_clean_regexps = [
function(s) { return ~/PECL /.replace(s, ""); }, function(s) { return ~/PECL /.replace(s, ""); },
function(s) { return ~/\:/.replace(s, " "); }, function(s) { return ~/\:/.replace(s, " "); }
function(s) { return ~/\, /.replace(s, ","); }
]; ];
while (i < s_length) { while (i < s_length) {