~ubuntu-branches/ubuntu/precise/trac/precise

« back to all changes in this revision

Viewing changes to trac/prefs/templates/prefs_advanced.html

  • Committer: Bazaar Package Importer
  • Author(s): Luis Matos
  • Date: 2008-07-13 23:46:20 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080713234620-13ynpdpkbaymfg1z
Tags: 0.11-2
* Re-added python-setup-tools to build dependences. Closes: #490320 #468705
* New upstream release Closes: 489727
* Added sugestion for other vcs support available: git bazaar mercurial 
* Added spamfilter plugin to sugests
* Moved packaging from python-support to python-central
* Added an entry to the NEWS about the cgi Closes: #490275
* Updated 10_remove_trac_suffix_from_title patch to be used in 0.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<!DOCTYPE html
 
2
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
 
3
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
 
4
<html xmlns="http://www.w3.org/1999/xhtml"
 
5
      xmlns:py="http://genshi.edgewall.org/"
 
6
      xmlns:xi="http://www.w3.org/2001/XInclude">
 
7
  <xi:include href="prefs.html" />
 
8
  <head>
 
9
    <title>Advanced</title>
 
10
  </head>
 
11
  <body>
 
12
 
 
13
    <div class="field">
 
14
      <label>Session key:
 
15
        <input type="text" name="newsid" size="30"
 
16
               value="${settings.session_id}" />
 
17
      </label>
 
18
      <p class="hint">The session key is used to identify stored custom
 
19
      settings and session data on the server. Although it is
 
20
      automatically generated by default, you may change it to something
 
21
      easier to remember at any time if you wish to load your settings
 
22
      in a different web browser.</p>
 
23
    </div>
 
24
 
 
25
    <div class="field">
 
26
      <label>Restore session:
 
27
        <input type="text" name="loadsid" size="30" value="" />
 
28
      </label>
 
29
      <input type="submit" name="restore" value="${_('Load')}" />
 
30
      <p class="hint">You may load a previously created session by entering the
 
31
      corresponding session key below. This lets you share settings between
 
32
      multiple computers and web browsers.</p>
 
33
    </div>
 
34
 
 
35
  </body>
 
36
</html>