view bitten/templates/bitten_admin_master.html @ 516:2f3b7c17d3c3

Switch to storing log messages in files rather than in database rows: * Levels are supported in a supplementary file for now * Upgrading is performed but the old `bitten_log_message` table is not dropped * A message is printed out on upgrade to encourage checking of permissions Fixes http://bitten.edgewall.org/ticket/329
author dfraser
date Fri, 13 Mar 2009 08:52:47 +0000
parents a7c795920c4a
children b4d3d9cbf200
line wrap: on
line source
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:xi="http://www.w3.org/2001/XInclude"
      xmlns:py="http://genshi.edgewall.org/">
  <xi:include href="admin.html" />
  <head>
    <title>Manage Build Master</title>
  </head>
  <body>
    <h2>Manage Build Master</h2>

    <form class="mod" id="bitten" method="post" action="">
      <fieldset id="config">
        <legend>Configuration Options</legend>
        <div class="field">
          <label>
            <input type="checkbox" id="build_all" name="build_all"
                   checked="${master.build_all and 'checked' or None}" />
            Build all revisions
          </label>
        </div>
        <p class="hint">
          Whether to build older revisions even when a more recent
          revision has already been built.
        </p>
        <div class="field">
          <label>
            <input type="checkbox" id="adjust_timestamps"
                   name="adjust_timestamps"
                   checked="${master.adjust_timestamps and 'checked'
                              or None}" />
            Adjust build timestamps
          </label>
        </div>
        <p class="hint">
          Whether the timestamps of builds should be adjusted to be
          close to the timestamps of the corresponding changesets.
        </p>
        <hr />
        <div class="field">
          <label>
            Time to wait for stabilization:
            <input type="text" id="stabilize_wait" name="stabilize_wait"
                   value="$master.stabilize_wait" size="5" />
          </label>
        </div>
        <p class="hint">
          The time in seconds to wait for the repository to stabilize
          after a check-in before initiating a build.
        </p>
        <hr />
        <div class="field">
          <label>
            Connection timeout for build slaves:
            <input type="text" id="slave_timeout" name="slave_timeout"
                   value="$master.slave_timeout" size="5" />
          </label>
        </div>
        <p class="hint">
          The timeout in seconds after which a build started by a slave
          is considered aborted, in case there has been no activity from
          that slave in that time.
        </p>
        <div class="field">
          <label>
            Directory for storing log files:
            <input type="text" id="logs_dir" name="logs_dir"
                   value="$master.logs_dir" size="100" />
          </label>
        </div>
        <p class="hint">
          The directory on the server in which client log files will be stored.
        </p>
      </fieldset>

      <div class="buttons">
        <input type="submit" value="Apply changes"/>
      </div>
    </form>
  </body>
</html>
Copyright (C) 2012-2017 Edgewall Software