##// END OF EJS Templates
gitweb: preserve whitespace in description...
Gregory Szorc -
r33557:875b054e default
parent child Browse files
Show More
@@ -7,8 +7,6 b''
7 7 </div>
8 8 <i>{author|obfuscate} [{date|rfc822date}] rev {rev}</i><br/>
9 9 </div>
10 <div class="log_body description">
11 {desc|strip|escape|websub|addbreaks|nonempty}
12 <br/>
13 <br/>
10 <div class="log_body description">{desc|strip|escape|websub|nonempty}
11
14 12 </div>
@@ -45,9 +45,7 b' changeset |'
45 45 {child%changesetchild}
46 46 </table></div>
47 47
48 <div class="page_body description">
49 {desc|strip|escape|websub|addbreaks|nonempty}
50 </div>
48 <div class="page_body description">{desc|strip|escape|websub|nonempty}</div>
51 49 <div class="list_head"></div>
52 50 <div class="title_text">
53 51 <table cellspacing="0">
@@ -61,9 +61,7 b' annotate |'
61 61 </table>
62 62 </div>
63 63
64 <div class="page_path description">
65 {desc|strip|escape|websub|addbreaks|nonempty}
66 </div>
64 <div class="page_path description">{desc|strip|escape|websub|nonempty}</div>
67 65 <div class="page_body">
68 66 <table>
69 67 <tbody class="sourcelines"
@@ -61,9 +61,7 b' file |'
61 61 </table>
62 62 </div>
63 63
64 <div class="page_path description">
65 {desc|strip|escape|websub|addbreaks|nonempty}
66 </div>
64 <div class="page_path description">{desc|strip|escape|websub|nonempty}</div>
67 65
68 66 <div class="page_body">
69 67 <pre class="sourcelines stripes"
@@ -175,6 +175,7 b' pre.sourcelines.stripes > span:target {'
175 175
176 176 .description {
177 177 font-family: monospace;
178 white-space: pre;
178 179 }
179 180
180 181 /* Followlines */
@@ -340,7 +340,7 b' static file'
340 340
341 341 $ get-with-headers.py --twice localhost:$HGPORT 'static/style-gitweb.css' - date etag server
342 342 200 Script output follows
343 content-length: 8985
343 content-length: 9007
344 344 content-type: text/css
345 345
346 346 body { font-family: sans-serif; font-size: 12px; border:solid #d9d8d1; border-width:1px; margin:10px; background: white; color: black; }
@@ -520,6 +520,7 b' static file'
520 520
521 521 .description {
522 522 font-family: monospace;
523 white-space: pre;
523 524 }
524 525
525 526 /* Followlines */
General Comments 0
You need to be logged in to leave comments. Login now