2008-10-08 23:54:28 +00:00
< html >
< head >
2008-10-17 02:46:17 +00:00
< title > Harmonious Code: The PHP Static Code Version Checker< / title >
2008-10-08 23:54:28 +00:00
< meta name = "keywords" content = "php, static code analysis, web hosting, functions, constants, language features" / >
< link rel = "stylesheet" href = "style.css" type = "text/css" / >
2008-10-16 18:19:23 +00:00
<!-- 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 -->
2008-10-08 23:54:28 +00:00
< / head >
< body >
< h1 > Harmonious Code< / h1 >
2008-10-17 02:46:17 +00:00
< h2 > The PHP Static Code Version Checker< / h2 >
2008-10-16 18:19:23 +00:00
<!-- page_header -->
2008-10-08 23:54:28 +00:00
< div id = "loading" >
Loading...
< / div >
< div id = "form" style = "display: none" >
< div id = "form-holder" >
< form action = "" method = "post" onsubmit = "return false;" >
2008-10-16 02:35:16 +00:00
< textarea name = "source" id = "source" > < / textarea > < br / >
2008-10-17 02:46:17 +00:00
< input id = "analyze-code-button" type = "button" value = "Analyze Code (this may take a while)" onclick = "JavaScriptTarget.do_analysis(this.form.elements.source)" / >
2008-10-08 23:54:28 +00:00
< / form >
< / div >
2008-10-16 02:35:16 +00:00
< div id = "processing" > < / div >
2008-10-08 23:54:28 +00:00
< div id = "output" > < / div >
< div id = "permanent-ignore" style = "display: none" >
2008-10-11 22:07:44 +00:00
To permanently ignore tokens (and globally ignore modules), do one of the following:
2008-10-08 23:54:28 +00:00
< ul >
< li > To ignore globally, place at the top of the file on its own line:
2008-10-11 22:07:44 +00:00
< blockquote > < code > //harmonious < span id = "ignore-code-holder-global" > < / span > < / code > < / blockquote >
2008-10-08 23:54:28 +00:00
< / li >
2008-10-11 22:07:44 +00:00
< li id = "permanent-ignore-block" > To ignore within a particular block of code, wrap the code in the following:
< blockquote > < code > //harmonious < span id = "ignore-code-holder-block" > < / span > < br / >
2008-10-08 23:54:28 +00:00
...your code...< br / >
//harmonious_end< / code > < / blockquote >
< / li >
< / ul >
< / div >
< / div >
2008-10-16 18:19:23 +00:00
<!-- above_footer -->
2008-10-08 23:54:28 +00:00
< div id = "haxe:trace" > < / div >
< div id = "footer" >
2008-10-16 18:19:23 +00:00
<!-- footer -->
2008-10-09 00:12:00 +00:00
< 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 >
2008-10-08 23:54:28 +00:00
< / div >
< script type = "text/javascript" src = "harmoniouscode.js" > < / script >
< / body >
< / html >