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