forgot to commit a file

[?]
Feb 2, 2011, 9:07 AM
3JBUMW3ECBQ5OARJEWPD7U5LIAIVGVMZUB7VG3ZLEWA3AV5EXDKQC

Dependencies

  • [2] MMDLWWZ2 automatic reload of tail log when build is running
  • [*] D5QIOJGP * Move everything up one directory.
  • [*] J5UVLXOK * Start of a basic Catalyst web interface.
  • [*] ELABMHJI * hydra: layout changes

Change contents

  • file addition: plain-reload.tt (----------)
    [4.1486]
    [% WRAPPER layout.tt title=title %]
    [% PROCESS common.tt %]
    <h2>Last 50 lines of log</h2>
    [% IF reload %]
    <script>
    $(document).ready(function() {
    $("#contents").load("[% url %]");
    var refreshId = setInterval(function() {
    $("#contents").load("[% url %]");
    }, 5000);
    });
    </script>
    [% END %]
    <pre class="taillog" id="contents">
    [% contents -%]
    </pre>
    [% END %]
  • edit in src/root/static/css/hydra.css at line 144
    [6.2667]
    [2.740]
    border: 1px solid black;
    padding: 0.3em;
    white-space: pre-wrap;
    }
    pre.taillog {