Mercurial > projects > booket
view booket.html @ 13:bd822f25e285 version-3
Add README file
Add a README file with build instructions and a description
author | Guido Berhoerster <guido+booket@berhoerster.name> |
---|---|
date | Thu, 18 Sep 2014 20:35:42 +0200 |
parents | 948048e40fab |
children | fb5fb3b38c0d |
line wrap: on
line source
<!DOCTYPE html> <!-- Copyright (C) 2014 Guido Berhoerster <guido+booket@berhoerster.name> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. --> <html> <head> <meta charset="utf-8"></meta> <title>Booket</title> <link rel="stylesheet" type="text/css" href="booket.css"></link> <script src="booket.js"></script> </head> <body> <header> <h1>Booket</h1> <p>Version 2</p> </header> <datalist id="tag-datalist"></datalist> <template id="tag-input-template"> <li><label>Tag <input type="text" name="tag" pattern="[^,;]*" size="20" list="tag-datalist" placeholder="tag"></input> </label></li> </template> <template id="bookmark-editor-template"> <form class="bookmark-editor-form"> <fieldset> <legend></legend> <input type="hidden" name="original-url"></input> <label>URL <input type="url" required="required" name="url" size="60" placeholder="http://example.com/"></input></label> <label>Title <input type="text" name="title" size="60" placeholder="A Title"></input></label> <label>Favicon <img width="16" height="16" src="missing-favicon.svg" class="bookmark-favicon" alt=""></img><input type="hidden" name="favicon"></input></label> <div> <ul class="tag-input-list"></ul> <button type="button" name="more-tags">Add more tags</button> </div> <label>Import from Bookmarklet <textarea name="bookmarklet-import" cols="60" rows="4" spellcheck="false"></textarea></label> <button type="reset" name="cancel">Cancel</button><button type="submit" name="save-bookmark">Save</button> </fieldset> </form> </template> <section id="actions"> <h2>Actions</h2> <aside id="bookmarklet"> <h3>Bookmarklet</h3> <a title="Create Bookmark" id="bookmarklet-link">Create Bookmark</a> </aside> <aside id="keyboard-shortcuts"> <h3>Keyboard Shortcuts</h3> <dl> <dt><kbd>Prefix</kbd>+<kbd>i</kbd></dt> <dd>Select bookmark file to load</dd> <dt><kbd>Prefix</kbd>+<kbd>l</kbd></dt> <dd>Load selected bookmark file</dd> <dt><kbd>Prefix</kbd>+<kbd>s</kbd></dt> <dd>Save bookmark file</dd> <dt><kbd>Prefix</kbd>+<kbd>a</kbd></dt> <dd>Focus bookmark editor</dd> <dt><kbd>Prefix</kbd>+<kbd>e</kbd></dt> <dd>Select bookmark file to import</dd> <dt><kbd>Prefix</kbd>+<kbd>m</kbd></dt> <dd>Import selected file</dd> <dt><kbd>Prefix</kbd>+<kbd>x</kbd></dt> <dd>Export selected file</dd> <dt><kbd>Prefix</kbd>+<kbd>f</kbd></dt> <dd>Focus search field</dd> </dl> </aside> <form id="load-form"> <fieldset> <legend>Load Bookmarks</legend> <label accesskey="i">File <input type="file" accept="application/json" required="required" name="file"></input></label> <button type="submit" name="load-file" accesskey="l">Load</button> </fieldset> </form> <form id="save-form"> <fieldset> <legend>Save Bookmarks</legend> <a href="#" id="save-link" hidden="hidden" download="bookmarks.json"></a> <button type="submit" name="save-file" accesskey="s">Save…</button> </fieldset> </form> <form id="import-form"> <fieldset> <legend>Import Bookmarks</legend> <label accesskey="e">File <input type="file" accept="text/html" required="required" name="file"></input></label> <button type="submit" name="import-file" accesskey="m">Import</button> </fieldset> </form> <form id="export-form"> <fieldset> <legend>Export Bookmarks</legend> <a href="#" id="export-link" hidden="hidden" download="bookmarks.html"></a> <button type="submit" name="export-file" accesskey="x">Export…</button> </fieldset> </form> </section> <main> <section id="bookmarks"> <h2>Bookmarks</h2> <aside id="tags"> <h3>Tags</h3> <ul class="tag-list"> <template id="tag-template"> <li><button type="button" name="set-tag"></button><span class="tag-count"></span><button type="button" name="toggle-tag"></button></li> </template> </ul> <label><input type="checkbox" name="show-tag-cloud"></input> Show tag cloud</label> </aside> <aside id="search"> <h3>Search</h3> <form id="search-form"> <input type="search" name="search-term" size="20" placeholder="Search" accesskey="f"></input> <button type="submit" name="search">Search</button><button type="reset" name="clear">Clear</button> </form> </aside> <p id="bookmark-message"></p> <ul id="bookmark-list"> <template id="bookmark-tag-template"> <li><button type="button" name="set-tag"></button><button type="button" name="toggle-tag"></button></li> </template> <template id="bookmark-template"> <li> <details> <summary><p><img width="16" height="16" class="bookmark-favicon"></img> <a class="bookmark-link" target="_blank"></a> <span class="bookmark-hostname"></span> </p> <ul class="tag-list"></ul></summary> <div class="bookmark-actions"> <button type="button" name="edit-bookmark">Edit</button><button type="button" name="delete-bookmark">Delete</button> </div> <dl class="bookmark-metadata"> <dt>URL</dt> <dd class="bookmark-url"></dd> <dt>Added</dt> <dd><time class="ctime"></time></dd> <dt>Last modified</dt> <dd><time class="mtime"></time></dd> </dl> </details> </li> </template> </ul> </section> </main> <footer><address>Copyright 2014 <a href="mailto:guido+booket@berhoerster.name" title="guido+booket@berhoerster.name">Guido Berhörster</a></address> </footer> </body> </html>