fixed a bug and more cleanup
This commit is contained in:
parent
e004cdef0b
commit
c58a3d9685
|
@ -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 © 2008 John Bintz — Licensed under the GPL Version 2 — <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 © 2008 John Bintz — Licensed under the GPL Version 2 — <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>
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue