annotate examples/trac/templates/settings.html @ 52:584dff20e91f

Trac port: Make use of the fact that combining `py:for` with `py:attrs` now works correctly.
author cmlenz
date Tue, 04 Jul 2006 09:04:50 +0000
parents a2e014fb9a3d
children 33c2702cf6da
rev   line source
41
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
1 <!DOCTYPE html
a2e014fb9a3d 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"
a2e014fb9a3d 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">
a2e014fb9a3d 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"
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
5 xmlns:py="http://purl.org/kid/ns#"
a2e014fb9a3d 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">
a2e014fb9a3d 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>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
8 <head>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
9 <title>Settings</title>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
10 </head>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
11
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
12 <body>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
13 <div id="ctxtnav" class="nav"></div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
14
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
15 <div id="content" class="settings">
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
16
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
17 <h1>Settings and Session Management</h1>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
18
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
19 <h2>User Settings</h2>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
20 <p>
a2e014fb9a3d 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
a2e014fb9a3d 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'
a2e014fb9a3d 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.
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
24 </p>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
25 <form method="post" action="">
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
26 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
27 <h3>Personal Information</h3>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
28 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
29 <input type="hidden" name="action" value="save" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
30 <label for="name">Name:</label>
a2e014fb9a3d 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"
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
32 value="${settings.session.name}" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
33 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
34 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
35 <label for="email">Email:</label>
a2e014fb9a3d 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"
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
37 value="${settings.session.email}" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
38 </div>
a2e014fb9a3d 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="">
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
40 <h3>Session</h3>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
41 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
42 <label for="newsid">Session Key:</label>
a2e014fb9a3d 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"
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
44 value="${settings.session_id}" />
a2e014fb9a3d 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
a2e014fb9a3d 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
a2e014fb9a3d 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
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
48 in a different web browser.</p>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
49 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
50 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
51 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
52 <br />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
53 <input type="submit" value="Submit changes" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
54 </div >
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
55 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
56 </form>
a2e014fb9a3d 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="">
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
58 <hr />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
59 <h2>Load Session</h2>
a2e014fb9a3d 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
a2e014fb9a3d 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
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
62 multiple computers and/or web browsers.</p>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
63 <form method="post" action="">
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
64 <div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
65 <input type="hidden" name="action" value="load" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
66 <label for="loadsid">Existing Session Key:</label>
a2e014fb9a3d 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"
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
68 value="" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
69 <input type="submit" value="Recover" />
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
70 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
71 </form>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
72 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
73
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
74 </div>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
75 </body>
a2e014fb9a3d Sync Trac port with vendor branch r44 and add missing template files.
cmlenz
parents:
diff changeset
76 </html>
Copyright (C) 2012-2017 Edgewall Software