aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGianluca Montecchi <gian@grys.it>2009-07-31 23:54:05 +0200
committerGianluca Montecchi <gian@grys.it>2009-07-31 23:54:05 +0200
commit7208dc596d99d00aab46cc5b08f56994d7b40c05 (patch)
tree7b6c485664a31af3a435158c7e96dca899dbbd85
parentd2cdec6be03037269c41b1726252c9d1420a13a5 (diff)
downloadbugseverywhere-7208dc596d99d00aab46cc5b08f56994d7b40c05.tar.gz
Closed bug f77, minox fix to layout
-rw-r--r--.be/bugs/f77fc673-c852-4c81-bfa2-1d59de2661c8/values2
-rw-r--r--becommands/html.py10
2 files changed, 5 insertions, 7 deletions
diff --git a/.be/bugs/f77fc673-c852-4c81-bfa2-1d59de2661c8/values b/.be/bugs/f77fc673-c852-4c81-bfa2-1d59de2661c8/values
index d585297..5a7261b 100644
--- a/.be/bugs/f77fc673-c852-4c81-bfa2-1d59de2661c8/values
+++ b/.be/bugs/f77fc673-c852-4c81-bfa2-1d59de2661c8/values
@@ -7,7 +7,7 @@ reporter: Gianluca Montecchi <gian@grys.it>
severity: minor
-status: open
+status: fixed
summary: Comment should be threaded in the html output
diff --git a/becommands/html.py b/becommands/html.py
index 3f6d923..eed7e56 100644
--- a/becommands/html.py
+++ b/becommands/html.py
@@ -118,8 +118,8 @@ class BEHTMLGen():
.commentF {
padding: 0px;
margin: auto;
- padding-top: 20px;
- paddin-bottom: 40px;
+ padding-top: 0px;
+ paddin-bottom: 20px;
margin-top: 0;
}
@@ -502,9 +502,7 @@ class BEHTMLGen():
detail_first_ = re.sub('_bug_id_', bug.uuid[0:3], self.detail_first)
FD.write(detail_first_)
-
-
-
+
bug_ = self.bd.bug_from_shortname(bug.uuid)
bug_.load_comments(load_full=True)
@@ -553,8 +551,8 @@ class BEHTMLGen():
FD.write("<div class='commentF'>")
level = len(la)
x += 5
+ FD.write("--------- Comment ---------<p />")
FD.write(com)
- FD.write("<hr />")
FD.write("</div>")
FD.write(self.end_comment_section)
if fileid == "active":