harmoniouscode/htdocs/index.html

52 lines
2.3 KiB
HTML

<html>
<head>
<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" />
<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>
<body>
<h1>Harmonious Code</h1>
<!--page_header-->
<div id="loading">
Loading...
</div>
<div id="form" style="display: none">
<div id="form-holder">
<form action="" method="post" onsubmit="return false;">
<textarea name="source" id="source"></textarea><br />
<input id="analyze-code-button" type="button" value="Analyze Code" onclick="JavaScriptTarget.do_analysis(this.form.elements.source)" />
</form>
</div>
<div id="processing"></div>
<div id="output"></div>
<div id="permanent-ignore" style="display: none">
To permanently ignore tokens (and globally ignore modules), do one of the following:
<ul>
<li>To ignore globally, place at the top of the file on its own line:
<blockquote><code>//harmonious <span id="ignore-code-holder-global"></span></code></blockquote>
</li>
<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 />
&nbsp;&nbsp;...your code...<br />
//harmonious_end</code></blockquote>
</li>
</ul>
</div>
</div>
<!--above_footer-->
<div id="haxe:trace"></div>
<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>
</div>
<script type="text/javascript" src="harmoniouscode.js"> </script>
</body>
</html>