[padb-devel] [padb] r218 committed - Modify the website to use css and do basic formatting of content.

codesite-noreply at google.com codesite-noreply at google.com
Wed Sep 9 11:56:49 BST 2009


Revision: 218
Author: apittman
Date: Wed Sep  9 03:55:53 2009
Log: Modify the website to use css and do basic formatting of content.

http://code.google.com/p/padb/source/detail?r=218

Added:
  /trunk/doc/build_website
  /trunk/doc/layout.css
Modified:
  /trunk/doc/download.html
  /trunk/doc/email.html
  /trunk/doc/extensions.html
  /trunk/doc/footer.html
  /trunk/doc/header.html
  /trunk/doc/index.html
  /trunk/doc/modes.html
  /trunk/doc/usage.html

=======================================
--- /dev/null
+++ /trunk/doc/build_website	Wed Sep  9 03:55:53 2009
@@ -0,0 +1,27 @@
+#!/bin/sh
+
+# build_website: Basic formating script for http://padb.pittman.co.uk
+# $Revision$
+# $Date$
+
+set -e
+
+echo Uploading website to http://padb.pittman.org.uk
+
+FILES="index usage download email extensions modes"
+
+TDIR=public
+
+mkdir -p public
+
+cp layout.css $TDIR
+for FILE in $FILES
+do
+  echo Uploading $FILE
+  cat header.html > $TDIR/$FILE
+  cat $FILE.html >> $TDIR/$FILE
+  cat footer.html >> $TDIR/$FILE
+done
+
+echo All done.
+exit 0
=======================================
--- /dev/null
+++ /trunk/doc/layout.css	Wed Sep  9 03:55:53 2009
@@ -0,0 +1,19 @@
+
+#header {
+	clear: both;
+}
+
+#navigation {
+	float: left;
+	width: 14em;
+}
+
+#content {
+	margin-left: 15em;
+}
+
+
+#footer {
+	clear: both;
+}
+
=======================================
--- /trunk/doc/download.html	Wed Jun 24 01:08:32 2009
+++ /trunk/doc/download.html	Wed Sep  9 03:55:53 2009
@@ -1,4 +1,4 @@
-
+<div id="content">
  <h1>Current stable release</h1>

  The latest stable release, <a  
href=http://padb.googlecode.com/files/padb-2.5.tgz title="Download 2.5  
release">2.5</a> can be downloaded direct from the google downloads section.
@@ -32,4 +32,10 @@
  <pre>
  svn checkout http://padb.googlecode.com/svn/trunk/ padb
  </pre>
-
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>$Revision$ $date$</p>
+  <p>Page maintained by Ashley Pittman.</p>
+ </font>
+</div>
=======================================
--- /trunk/doc/email.html	Thu May 28 14:55:06 2009
+++ /trunk/doc/email.html	Wed Sep  9 03:55:53 2009
@@ -1,3 +1,4 @@
+<div id="content">
  <h2>Mailing Lists</h2>
  <a href=http://pittman.org.uk/mailman/listinfo>Mailing lists</a>
  for padb discussion and development are available for public use,
@@ -10,3 +11,10 @@
  <li><a  
href=http://pittman.org.uk/mailman/listinfo/padb-users_pittman.org.uk>
  padb-users</a> (<a  
href=http://pittman.org.uk/pipermail/padb-users_pittman.org.uk/>archives</a>)for  
discussion on the use of padb and general questions.</li>
  </ul>
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>$Revision$ $date$</p>
+  <p>Page maintained by Ashley Pittman.</p>
+ </font>
+</div>
=======================================
--- /trunk/doc/extensions.html	Wed Jun 10 06:43:10 2009
+++ /trunk/doc/extensions.html	Wed Sep  9 03:55:53 2009
@@ -1,4 +1,4 @@
-
+<div id="content">
  <h2>MPI collective debugger extension proposal</h2>

  <h3>Overview</h3>
@@ -107,3 +107,10 @@

  <p>
  Patch for OpenMPI <a href=OpenMPI-padb-groups.patch>trunk.</a>
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>$Revision$ $date$</p>
+  <p>Page maintained by Ashley Pittman.</p>
+ </font>
+</div>
=======================================
--- /trunk/doc/footer.html	Wed Sep  9 03:22:19 2009
+++ /trunk/doc/footer.html	Wed Sep  9 03:55:53 2009
@@ -1,12 +1,3 @@
-</div>
-
-<div id="footer">
- <font size=-2>
-  <p>$Revision$ $date$</p>
-  <p>Page maintained by Ashley Pittman.</p>
- </font>
-</div>
-
  <script type="text/javascript">
  var gaJsHost = (("https:" ==  
document.location.protocol) ? "https://ssl." : "http://www.");
  document.write(unescape("%3Cscript src='" + gaJsHost  
+ "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
=======================================
--- /trunk/doc/header.html	Mon Jun 15 10:54:13 2009
+++ /trunk/doc/header.html	Wed Sep  9 03:55:53 2009
@@ -1,17 +1,32 @@
-<head><title>Padb: A parallel debugging tool</title></head>
+<head>
+  <title>Padb: A parallel debugging tool</title>
+  <link rel="stylesheet" type="text/css" href="layout.css" />
+</head>
  <body>
+
+<div id="header">
  <center>
  <h1>Parallel Application Debugger</h1>
-<table width=70%>
-<tr>
-<td><a href="http://padb.pittman.org.uk/" title="Main page">Padb</a></td>
-<td><a href="/usage" title="Command line options">usage</a></td>
-<td><a href="/modes" title="Modes of operation">modes</a></td>
-<td><a href="/download" title="Download page">download</a></td>
-<td><a href="/extensions" title="Proposed MPI extensions">patches</a></td>
-<td><a href="/email" title="Contact information">mailing lists</a></td>
-</tr>
-</table>
  </center>
-<hr>
-
+</div>
+<div id="navigation">
+ <ul>
+  <font size=+1>
+  <li><a href="/" title="Main page">Home</a>
+  <li><a href="usage" title="Command line options">Usage</a>
+  <li><a href="modes" title="Modes of operation">Modes of operation</a>
+  <font size=-1
+     <br><a href="modes#proc-summary" title="Process summary">Process  
state</a>
+     <br><a href="modes#proc-info" title="Process info">Process state  
(verbose)</a>
+     <br><a href="modes#stack-trace" title="Stack trace">Stack trace</a>
+     <br><a href="modes#mpi-queue" title="Message queues">Message  
queues</a>
+     <br><a href="modes#deadlock" title="Collective state">Collective  
state</a>
+     <br><a href="modes#kill" title="Signal delivery">Signal delivery
+     <br><a href="modes#mpi-watch" title="Job monitoring">Job monitoring
+  </font>
+  <li><a href="download" title="Download page">Download</a>
+  <li><a href="extensions" title="Proposed MPI extensions">Patches</a>
+  <li><a href="email" title="Contact information">Mailing lists</a>
+  </font>
+ </ul>
+</div>
=======================================
--- /trunk/doc/index.html	Sat Aug 15 06:07:02 2009
+++ /trunk/doc/index.html	Wed Sep  9 03:55:53 2009
@@ -1,3 +1,4 @@
+<div id="content">
  <h1>Padb: A parallel debugging tool</h1>

  <h2>About</h2>
@@ -76,3 +77,9 @@
  <i>gdb</i> is required for stack trace functionality.<br>
  At the time of writing a shared filesystem between all nodes in the
  parallel job is required if using orte (Open-MPI runtime).
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>Page maintained by Ashley Pittman: $Revision$ $date$ </p>
+ </font>
+</div>
=======================================
--- /trunk/doc/modes.html	Sat Aug 15 06:06:16 2009
+++ /trunk/doc/modes.html	Wed Sep  9 03:55:53 2009
@@ -1,3 +1,4 @@
+<div id="content">
  <h1>Modes of operation.</h1>

  <i>Padb</i> has a number of modes of operation depending on what data you  
want it to report or what action
@@ -883,4 +884,10 @@
  </pre>
  </tr></td>
  </table>
-
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>$Revision$ $date$</p>
+  <p>Page maintained by Ashley Pittman.</p>
+ </font>
+</div>
=======================================
--- /trunk/doc/usage.html	Mon Jun 15 10:54:13 2009
+++ /trunk/doc/usage.html	Wed Sep  9 03:55:53 2009
@@ -1,3 +1,4 @@
+<div id="content">
  <h1>Job selection</h1>

  <h2>Selecting the Resource Manager (Job Launcher)</h2>
@@ -106,3 +107,10 @@
  </pre>
  </td></tr>
  </table>
+</div>
+<div id="footer">
+ <font size=-2>
+  <p>$Revision$ $date$</p>
+  <p>Page maintained by Ashley Pittman.</p>
+ </font>
+</div>




More information about the padb-devel mailing list