annotate examples/trac/templates/settings.html @ 88:628ba9ed39ef trunk

Add support for list comprehension in expressions (see #12).
author cmlenz
date Mon, 17 Jul 2006 17:33:14 +0000
parents 448792ab1303
children
rev   line source
41
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
1 <!DOCTYPE html
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
2 PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
3 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
4 <html xmlns="http://www.w3.org/1999/xhtml"
61
448792ab1303 Use a different namespace than Kid uses.
cmlenz
parents: 41
diff changeset
5 xmlns:py="http://markup.edgewall.org/"
41
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
6 xmlns:xi="http://www.w3.org/2001/XInclude">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
7 <xi:include href="layout.html"><xi:fallback/></xi:include>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
8 <head>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
9 <title>Settings</title>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
10 </head>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
11
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
12 <body>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
13 <div id="ctxtnav" class="nav"></div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
14
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
15 <div id="content" class="settings">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
16
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
17 <h1>Settings and Session Management</h1>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
18
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
19 <h2>User Settings</h2>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
20 <p>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
21 This page lets you customize and personalize your Trac settings. Session
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
22 settings are stored on the server and identified using a 'Session Key'
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
23 stored in a browser cookie. The cookie lets Trac restore your settings.
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
24 </p>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
25 <form method="post" action="">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
26 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
27 <h3>Personal Information</h3>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
28 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
29 <input type="hidden" name="action" value="save" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
30 <label for="name">Name:</label>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
31 <input type="text" id="name" name="name" class="textwidget" size="30"
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
32 value="${settings.session.name}" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
33 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
34 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
35 <label for="email">Email:</label>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
36 <input type="text" id="email" name="email" class="textwidget" size="30"
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
37 value="${settings.session.email}" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
38 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
39 <div py:if="settings.session_id" py:strip="">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
40 <h3>Session</h3>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
41 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
42 <label for="newsid">Session Key:</label>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
43 <input type="text" id="newsid" name="newsid" class="textwidget" size="30"
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
44 value="${settings.session_id}" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
45 <p>The session key is used to identify stored custom settings and session
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
46 data on the server. Automatically generated by default, you may change it
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
47 to something easier to remember at any time if you wish to use your settings
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
48 in a different web browser.</p>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
49 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
50 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
51 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
52 <br />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
53 <input type="submit" value="Submit changes" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
54 </div >
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
55 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
56 </form>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
57 <div py:if="settings.session_id" py:strip="">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
58 <hr />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
59 <h2>Load Session</h2>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
60 <p>You may load a previously created session by entering the corresponding
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
61 session key below and clicking 'Recover'. This lets you share settings between
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
62 multiple computers and/or web browsers.</p>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
63 <form method="post" action="">
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
64 <div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
65 <input type="hidden" name="action" value="load" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
66 <label for="loadsid">Existing Session Key:</label>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
67 <input type="text" id="loadsid" name="loadsid" class="textwidget" size="30"
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
68 value="" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
69 <input type="submit" value="Recover" />
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
70 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
71 </form>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
72 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
73
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
74 </div>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
75 </body>
686059a8a32b Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
76 </html>
Copyright (C) 2012-2017 Edgewall Software