view web/status-by-revision.html @ 274:2676abfc0e1d

Refactoring: Implement do_package in treepkg.packager.SourcePackager. The actual implementation in the derived classes is almost identical in all cases so it's better to have as much of the implementation in the base class. The update_version_numbers method is not called directly by the base class code so is removed from the base class. OTOH, prepare_sources_for_tarball has been added as a more general variant of update_version_numbers that is actually called by the default implementation of do_package.
author Bernhard Herzog <bh@intevation.de>
date Thu, 07 May 2009 15:19:15 +0000
parents a05cbf80dec9
children 9d8de2984de1
line wrap: on
line source
<html xmlns:py="http://genshi.edgewall.org/">
  <head>
    <title>Tree Packager Status</title>
    <style type="text/css">
      .statustable { background:#F4F4F4; }
      .statustablehead { background:#E0E0E0; }
      .statusheading { font-weight:bold; }
      .finished { background:#C0FFC0; }
      .inprogress { background:#FFFFC0; }
      .error { background:#FFC0C0; }
      td { padding:5px; background:#FFFFFF}
    </style>
  </head>
  <body>
    <h1>Tree Packager Status</h1>

    <table class="statustable">
      <tr>
	<th class="statustablehead">Revision</th>
	<py:for each="track in report.revisions.tracks">
	  <th class="statustablehead">${track.name}</th>
	</py:for>
      </tr>

      <py:for each="row in report.revisions.sorted_by_revision">
	<tr>
	  <td>${row[0][0]}</td>
	  <py:for each="col in row[1]">
	    <py:choose>
	      <py:when test="col">
		<td class="${col.status.cls}">
		  <span class="statusheading">${col.status.desc}</span><br/>
		  Start: ${col.status.start}<br/>
		  Stop: ${col.status.stop}<br/>
		  <py:for each="title, basename in col.log_files">
		    <a href="${col.name}/${col.revno}-${col.rulesrev}/${basename}">${title}</a>
		    <br/>
		  </py:for>
		</td>
	      </py:when>
	      <py:otherwise>
		<td></td>
	      </py:otherwise>
	    </py:choose>
	  </py:for>

	</tr>
      </py:for>
    </table>

    <hr/>
    report generated at ${report.date},
    powered by <a href="http://treepkg.wald.intevation.org/">Tree Packager</a>

  </body>
</html>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)