Initial Commit

This commit is contained in:
2013-02-08 20:18:32 +00:00
commit eaaf97ef7e
61 changed files with 3375 additions and 0 deletions

34
html/creator.php Normal file
View File

@@ -0,0 +1,34 @@
<div id="design">
<h2>Create</h2>
<div id="add-rule">
<form action="" method="POST" id="form-add-rule">
<select id="field-rule-select" name="rule-select">
<option value="">-- Add New --</option>
<?php
foreach(HtRule_List::ListRules() as $class => $name)
{
?>
<option value="<?php echo $class;?>"><?php echo $name;?></option>
<?php
}
?>
</select>
</form>
</div>
<div style="clear:both;"></div>
<div id="rule-edit">
</div>
</div>
<div id="preview">
<h2>Preview</h2>
<div class="actions">
<a href="javascript:rules.showListing()" class="first">Listing</a><a href="save.php" class="middle" id="save">Save</a><a href="download.php" id="save-as" class="middle">Download</a><a href="index.php?delete" id="delete" class="last">Delete</a>
</div>
<div id="listing-code" style="display:none;">
<input type="button" class="button" onclick="javascript:rules.hideListing()" value="Close" id="listing-code-close"/>
<textarea readonly wrap="off">
</textarea>
</div>
<div id="preview-code">
</div>
</div>