diff options
author | Einar Egilsson <einar@einaregilsson.com> | 2015-09-02 12:14:24 +0000 |
---|---|---|
committer | Einar Egilsson <einar@einaregilsson.com> | 2015-09-02 12:14:24 +0000 |
commit | a7506a34544f4df3ba65a854c81fadcca2eb303f (patch) | |
tree | 7421ff72bcfabfac94bb5ddd48e33c73af75a7e2 /chrome/redirector.html | |
parent | 4d9993f230c59f8a97767599b1d81eeeac3d35ec (diff) |
CRUD stuff almost ready
Diffstat (limited to 'chrome/redirector.html')
-rw-r--r-- | chrome/redirector.html | 85 |
1 files changed, 0 insertions, 85 deletions
diff --git a/chrome/redirector.html b/chrome/redirector.html deleted file mode 100644 index d03f0b1..0000000 --- a/chrome/redirector.html +++ /dev/null @@ -1,85 +0,0 @@ -<!DOCTYPE html> -<html> - <head> - <title>Redirector Extension Settings</title> - <link rel="stylesheet" href="css/redirector.css?love" /> - <script type="text/javascript" src="js/jquery-1.6.2.min.js"></script> - <script type="text/javascript" src="js/redirector-ui.js"></script> - </head> - <body> - <h1>Redirector</h1> - <h5>Go where <em>YOU</em> want!</h5> - <div id="actions"> - <button id="new-redirect">New Redirect</button> - <button id="configure">Settings</button> - <button id="import">Import</button> - <button id="export">Export</button> - <button id="help">Help</button> - </div> - <ul id="redirect-list"> - <li> - <div><span class="disabled"></span><span class="description">Redirector Rule</span></div> - <div><div class="patternLabel">Redirect:</div><span class="pattern">pattern</span></div> - <div><div class="patternLabel">to:</div><span class="redirectTo">nothing</span></div> - <!-- <div>Example: <span class="exampleUrl"></span> becomes <span class="redirectResult"></span></div> --> - <div class="editdeleteRow"> - <a class="edit" href="#edit">Edit</a> - <a class="delete" href="#delete">Delete</a> - </div> - </li> - </ul> - <div id="config" class="dialog"> - <h2>Settings</h2> - <input type="checkbox" id="enable-redirector" data-pref="enabled" /><label>Enable</label><br /> - <input type="checkbox" id="enable-shortcut-key" data-pref="enableShortcutKey"/><label>Toggle via Alt-r</label><br /> - <input type="checkbox" id="enable-debug-output" data-pref="debugEnabled"/><label>Debug output</label><br /> - <div class="button-row"> - <button id="close">Close</button> - </div> - </div> - <div id="redirect-form" class="dialog"> - <div> - <label>Description</label> - <input type="text" id="description" /> - </div> - <div> - <label>Example URL</label> - <input type="text" id="example-url" /> - </div> - <div> - <label>Include Pattern</label> - <input type="text" id="include-pattern" /> - </div> - <div> - <label>Exclude Pattern</label> - <input type="text" id="exclude-pattern" /> - </div> - <div> - <label>Redirect To</label> - <input type="text" id="redirect-to" /> - </div> - <div> - <label>Pattern Type</label> - <input type="radio" name="pattern-type" id="regex-pattern" /> Regular Expression - <input type="radio" name="pattern-type" id="wildcard-pattern" /> Wildcard - </div> - <div> - <label>Unescape matches</label> - <input type="checkbox" id="unescape-matches" /> - </div> - <div> - <label>Escape matches</label> - <input type="checkbox" id="escape-matches" /> - </div> - <div> - <label>Enable</label> - <input type="checkbox" id="redirect-enabled" /> - </div> - <div class="button-row"> - <button id="save">Save</button> - <button id="test-pattern">Test</button> - <button id="cancel">Cancel</button> - </div> - </div> - </body> -</html> |