Switched to inset boxes for comments
authorAaron Bentley <aaron.bentley@utoronto.ca>
Sun, 4 Dec 2005 03:54:57 +0000 (22:54 -0500)
committerAaron Bentley <aaron.bentley@utoronto.ca>
Sun, 4 Dec 2005 03:54:57 +0000 (22:54 -0500)
README
beweb/beweb/static/css/style.css
beweb/beweb/templates/edit_bug.kid
beweb/beweb/templates/master.kid

diff --git a/README b/README
index 98672642a98e7373fb31ecd18f1f956dd2f54542..0cc3c70ceae75ac791b5fd5bb5cf7530cb60d613 100644 (file)
--- a/README
+++ b/README
@@ -22,7 +22,7 @@ commands, see "be help"
 Using BeWeb, the web UI
 =======================
 BeWeb uses the Turbogears framework: http://www.turbogears.org/
-Please ensure you have Turbogears 0.8a4 or a compatible release installed.
+Please ensure you have Turbogears 0.8a5 or a compatible release installed.
 Because it uses BE data, the web UI does not require a database.
 
 To use BeWeb, first create a configuration file, telling it which projects
index 858fd742f7dc805bf94b4b0342acf97cc0e58a70..76a30921b72eb2527f8d26881430c1b60f9c3e5b 100644 (file)
@@ -45,15 +45,10 @@ body
 {
     font-family: "Verdana";
     font-size:11pt;
+    background-color: white;
 }
 .comment
 {
-    margin-top: 1em;
-    margin-bottom; 60px;
-    padding: 0.5em;
-    border: dashed thin black;
-    background-color: #ffa;
-    width:60%
 }
 .comment table
 {
@@ -77,3 +72,8 @@ body
     background-repeat: no-repeat;
     background-color: #ff0;
 }
+table.insetbox
+{
+  margin-top: 0.5em;
+  margin-bottom: 0.5em;
+}
index 4001253255d1fef34a28f30fc8d79c08dadf8d33..d55ab2ef7ce3f78cabe3f124b7e7074886cfcbff 100644 (file)
@@ -29,11 +29,13 @@ def select_among(name, options, default):
 <tr><td>${select_among("status", ["open", "closed", "in-progress"], bug.status)}</td><td>${select_among("severity", severity_levels, bug.severity)}</td><td>${bug.assigned}</td><td><input name="summary" value="${bug.summary}" size="80" /></td></tr>
 </table>
 <div py:for="comment in bug.list_comments()" class="comment">
+    <insetbox>
     <table>
         <tr><td>From</td><td>${comment.From}</td></tr>
         <tr><td>Date</td><td>${time_to_str(comment.date)}</td></tr>
     </table>
     <pre>${comment.body}</pre>
+    </insetbox>
 </div>
 <p><input type="submit" name="action" value="Update"/></p>
 </form>
index 4f44fbae1de35979d6686956bcd53a84ddd9cb46..743634a36ae7b0efcc503795fe07f6728805a38c 100644 (file)
     
     <div py:replace="item[:]"/>
 </body>
-<table py:match="item.tag=='{http://www.w3.org/1999/xhtml}innerbox'" cellspacing="0" cellpadding="0">
+<table py:match="item.tag=='{http://www.w3.org/1999/xhtml}insetbox'" cellspacing="0" cellpadding="0" class="insetbox">
 <tr><td><img src="/static/images/is-tl.png" /></td>
     <td background="/static/images/is-t.png" />
     <td><img src="/static/images/is-tr.png"/></td>
 </tr>
 <tr>
     <td background="/static/images/is-l.png"/>
-    <td py:content="item.text"> Hello, this is some random text</td>
+    <td py:content="item[:]"> Hello, this is some random text</td>
     <td background="/static/images/is-r.png"/>
 </tr>
 <tr>