HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/lib/python3/dist-packages/trac/prefs/templates/prefs_advanced.html
{# Copyright (C) 2006-2021 Edgewall Software

  This software is licensed as described in the file COPYING, which
  you should have received as part of this distribution. The terms
  are also available at https://trac.edgewall.org/wiki/TracLicense.

  This software consists of voluntary contributions made by many
  individuals. For the exact contribution history, see the revision
  history and logs, available at https://trac.edgewall.org/.
#}
# extends 'prefs.html'
<!DOCTYPE html>
<html>
  <head>
    <title>
      # block preftitle
      ${_("Advanced")}
      # endblock preftitle
    </title>
  </head>

  <body>
    <form id="userprefs" action="#" method="post">
      # set prefpanel_has_own_submit = true
      # block prefpanel
      <table>
        <tr class="field">
          <th><label for="newsid">${_("Session key:")}</label></th>
          <td>
            <input type="text" id="newsid" name="newsid" size="30"
                   value="${session_id}" />
            <input type="submit" name="change" value="${_('Change')}" />
          </td>
        </tr>
        <tr>
          <th></th>
          <td>
            <p class="hint">
              # trans

              The session key is used to identify stored custom
              settings and session data on the server. Although it is
              automatically generated by default, you may change it to
              something easier to remember at any time if you wish to
              load your settings in a different web browser.

              # endtrans
            </p>
          </td>
        </tr>
        <tr class="field">
         <th><label for="loadsid">${_("Restore session:")}</label></th>
          <td>
            <input type="text" id="loadsid" name="loadsid" size="30" value="" />
            <input type="submit" name="restore" value="${_('Load')}" />
          </td>
        </tr>
        <tr>
          <th></th>
          <td>
            <p class="hint">
              # trans

              You may load a previously created session by entering
              the corresponding session key below. This lets you share
              settings between multiple computers and web browsers.

              # endtrans
            </p>
          </td>
        </tr>
      </table>
      # endblock prefpanel
    </form>

  </body>
</html>