harmoniouscode/htdocs/index.html

41 lines
1.9 KiB
HTML
Raw Normal View History

2008-10-08 23:54:28 +00:00
<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" />
</head>
<body>
<h1>Harmonious Code</h1>
<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 />
2008-10-08 23:54:28 +00:00
<input id="analyze-code-button" type="button" value="Analyze Code" onclick="JavaScriptTarget.do_analysis(this.form.elements.source)" />
</form>
</div>
<div id="processing"></div>
2008-10-08 23:54:28 +00:00
<div id="output"></div>
<div id="permanent-ignore" style="display: none">
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:
<blockquote><code>//harmonious <span id="ignore-code-holder-global"></span></code></blockquote>
2008-10-08 23:54:28 +00:00
</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 />
2008-10-08 23:54:28 +00:00
&nbsp;&nbsp;...your code...<br />
//harmonious_end</code></blockquote>
</li>
</ul>
</div>
</div>
<div id="haxe:trace"></div>
<div id="footer">
2008-10-09 00:12:00 +00:00
<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>
2008-10-08 23:54:28 +00:00
</div>
<script type="text/javascript" src="harmoniouscode.js"> </script>
</body>
</html>