1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> |
|
2 <html> |
|
3 <TMPL_INCLUDE NAME="headers.tmpl"> |
|
4 <body> |
|
5 <h1><TMPL_VAR remote_user>'s XBelWeb</h1> |
|
6 <p>Total bookmarks: <TMPL_VAR total></p> |
|
7 <form action="index.py" method="get" name="keywords"> |
|
8 <fieldset class="keywords"> |
|
9 <legend>Keywords:</legend> |
|
10 <p> |
|
11 <label>Include: |
|
12 <select multiple name="sel" onchange="submit()" |
|
13 size="<TMPL_VAR kw_size>"> |
|
14 <TMPL_LOOP Keywords> |
|
15 <option value="<TMPL_VAR id>" |
|
16 <TMPL_IF selected>selected</TMPL_IF> |
|
17 ><TMPL_VAR keyword> (<TMPL_VAR count>)</option> |
|
18 </TMPL_LOOP></select> |
|
19 <label>Exclude: |
|
20 <select multiple name="exc" onchange="submit()" |
|
21 size="<TMPL_VAR kw_size>"> |
|
22 <TMPL_LOOP Keywords> |
|
23 <option value="<TMPL_VAR id>" |
|
24 <TMPL_IF excluded>selected</TMPL_IF> |
|
25 ><TMPL_VAR keyword> (<TMPL_VAR count>)</option> |
|
26 </TMPL_LOOP></select> |
|
27 </p> |
|
28 <button>Lookup</button> |
|
29 </fieldset> |
|
30 </form> |
|
31 <TMPL_INCLUDE NAME="bkmarks.tmpl"> |
|
32 <hr/> |
|
33 <p><a href="add.py">Add new bookmark</a>.<br/> |
|
34 <a href="folders.py">Switch to folder view</a>.<br/> |
|
35 <a href="import.py">Import a XBEL file</a>.<br/> |
|
36 <a href="edit_kw.py">Edit keywords</a>.<br/> |
|
37 <a href="prefs.py">Edit User Preferences</a>.</p> |
|
38 <p>Here the <a |
|
39 href="javascript:bk1='<TMPL_VAR curl>?curl='+escape(location.href)+'&ctitle='+escape(document.title);bkwin=window.open(bk1,'bkqm','width=620,height=500,scrollbars=1,resizable=1');bkwin.focus();">Quick |
|
40 Mark Link</a>. Put it on your bookmarks (using <tt><Right-Mouse |
|
41 Click> Bookmark this link</tt>) and just select it when you |
|
42 want to bookmark your links.</p> |
|
43 </body> |
|
44 </html> |
|
45 <!-- Keep this comment at the end of the file |
|
46 Local variables: |
|
47 mode: sgml |
|
48 sgml-omittag:t |
|
49 sgml-shorttag:t |
|
50 sgml-namecase-general:t |
|
51 sgml-general-insert-case:lower |
|
52 sgml-minimize-attributes:nil |
|
53 sgml-always-quote-attributes:t |
|
54 sgml-indent-step:2 |
|
55 sgml-indent-data:nil |
|
56 sgml-parent-document:nil |
|
57 sgml-exposed-tags:nil |
|
58 sgml-local-catalogs:nil |
|
59 sgml-local-ecat-files:nil |
|
60 End: |
|
61 vi: syntax=html |
|
62 --> |
|