# # # patch "static/viewmtn.css" # from [8981409323f375efedb9599c206ac0b34bdad739] # to [ac955b1ed74cc9b9542c0278a46340f9383e149c] # # patch "static/viewmtn.js" # from [001ab5902c148053998d2d6877c82ee3da848d70] # to [23105923aafa2b392cdf13677cb659012539605a] # # patch "templates/base.html" # from [1be9c3a8bbe40d46dcd5bc6507b2547233c659dc] # to [781439204c039e9426f067b004cbb9ba9f0b39ad] # # patch "templates/branchchanges.html" # from [26a4a466df7417985215c652b46b476134a11ad9] # to [adb0864171ae6d0bf4ca6fe4223c1436dd6bc681] # # patch "templates/help.html" # from [8efd61e71af20d37f7c99aa54983c8e872e4701a] # to [6384266456beee0b7ecd968bf8ff130b92801282] # # patch "templates/index.html" # from [4ac82196415faf4687ad133eb0f0f9d4dc12d716] # to [608c9ebbccc59461903def9562a453182b7e197c] # # patch "templates/revisionbrowse.html" # from [1e37ebc587a7706215d068e0e27b9b3de31b0656] # to [61a9e90cca82aeecb85677922f7b9a58096d4743] # # patch "templates/revisionfilechanges.html" # from [3a720c1ad96e17a322cf15b2fbd135baa8323bc9] # to [96521a1803642a5504d4c80ecb04a8abfcb98af5] # # patch "templates/revisioninfo.html" # from [7f77eacf697976a45ebdcc3ea8f45103c8101d33] # to [a6ef44ec8a9a16b735b7edea9467072e2c08ce12] # # patch "viewmtn.py" # from [4521b416b3e46688199a94d4f20d991fd940dced] # to [37c65079ffc5a89148f76a5d9778ad7f03e8b6b7] # ============================================================ --- static/viewmtn.css 8981409323f375efedb9599c206ac0b34bdad739 +++ static/viewmtn.css ac955b1ed74cc9b9542c0278a46340f9383e149c @@ -1,11 +1,11 @@ -BODY { +body { background-color: white; font-family: "Trebuchet MS", Verdana, Sans-Serif; font-size : 100%; } -DIV#menuBar { +div#menuBar { font-family: "Trebuchet MS", Verdana, Sans-Serif; font-size: 80%; padding-top: 1em; @@ -22,40 +22,41 @@ A:hover { text-decoration: none; } -DIV#footer { +div#footer { clear: both; border-top-width: 1px; border-top-style: solid; border-top-color: black; margin-top: 2em; text-align: right; + font-size: 60%; } -TABLE.pretty { +table.pretty { border-width: 1px; border-style: solid; border-color: black; } -TABLE.pretty TD { +table.pretty td { padding-left: 0.5em; padding-right: 0.5em; } -TABLE.pretty TH { +table.pretty th { padding-left: 0.5em; padding-right: 0.5em; } -TR.even { +tr.even { background-color: #eeeeee; } -TR.odd { +tr.odd { background-color: #ffffff; } -TD.branchInfoHeader { +td.branchInfoHeader { border-width: 3px; border-style: solid; border-color: blue; @@ -63,17 +64,17 @@ TD.branchInfoHeader { } -TABLE.pretty TH { +table.pretty th { color: blue; background-color: #dfe7f3; } -H1#pageTitle { +h1#pageTitle { font-size: 120%; font-family: sans-serif; } -H2 { +h2 { font-size: 120%; font-family: sans-serif; } @@ -82,7 +83,7 @@ H2 { display: none; } -DIV#popupBox { +div#popupBox { position: absolute; border-width: 1px; border-style: solid; @@ -92,7 +93,7 @@ DIV#popupBox { z-index: 10; } -PRE.code { +pre.code { border-left-style: solid; border-left-width: 3px; border-left-color: #A0A0A0; ============================================================ --- static/viewmtn.js 001ab5902c148053998d2d6877c82ee3da848d70 +++ static/viewmtn.js 23105923aafa2b392cdf13677cb659012539605a @@ -127,11 +127,14 @@ function mouseOverHandler(boundTo, evt) if (boundTo.jsonData) { return updatePopup(boundTo, className); } - if (boundTo.id) { - var uri = baseURI + "/json/" + encodeURIComponent(className) + "/" + encodeURIComponent(boundTo.id); - pendingDeferred = callLater(1, partial(dampenedJSON, uri, boundTo, className)); - pendingFor = boundTo; - } + //if (boundTo.id) { + // var uri = baseURI + "/json/" + encodeURIComponent(className) + "/" + encodeURIComponent(boundTo.id); + // pendingDeferred = callLater(1, partial(dampenedJSON, uri, boundTo, className)); + // pendingFor = boundTo; + //} + var uri = baseURI + "/json/" + encodeURIComponent(className) + "/%5B%22" + encodeURIComponent(boundTo.firstChild.innerHTML) + "%22%5D"; + pendingDeferred = callLater(1, partial(dampenedJSON, uri, boundTo, className)); + pendingFor = boundTo; } function mouseOutHandler(boundTo, evt) ============================================================ --- templates/base.html 1be9c3a8bbe40d46dcd5bc6507b2547233c659dc +++ templates/base.html 781439204c039e9426f067b004cbb9ba9f0b39ad @@ -1,7 +1,6 @@ - - + + ViewMTN: $(page_title) @@ -37,7 +36,7 @@ installCallbacks("$dynamic_uri_path"); ============================================================ --- templates/branchchanges.html 26a4a466df7417985215c652b46b476134a11ad9 +++ templates/branchchanges.html adb0864171ae6d0bf4ca6fe4223c1436dd6bc681 @@ -2,7 +2,7 @@ #def body -

+

Changes $from_change to $to_change on this branch are displayed below, sorted in descending chronological order.

@@ -37,7 +37,7 @@ Changes $from_change to $to_change on th #end for - +
#if $next_from and $next_to ============================================================ --- templates/help.html 8efd61e71af20d37f7c99aa54983c8e872e4701a +++ templates/help.html 6384266456beee0b7ecd968bf8ff130b92801282 @@ -22,7 +22,7 @@ software page and follow the contact software page and follow the contact instructions there.

- +

Reading revision graphs

============================================================ --- templates/index.html 4ac82196415faf4687ad133eb0f0f9d4dc12d716 +++ templates/index.html 608c9ebbccc59461903def9562a453182b7e197c @@ -4,10 +4,13 @@ function toggle_hidden(did, update_did)