##// END OF EJS Templates
lib: change ' to ' to satisfy Outlook HTML rendering...
Thomas De Schampheleire -
r7077:494c793c default
parent child Browse files
Show More
@@ -85,7 +85,7 b' def html_escape(s):'
85 85 .replace(">", ">")
86 86 .replace("<", "&lt;")
87 87 .replace('"', "&quot;")
88 .replace("'", "&apos;")
88 .replace("'", "&#39;") # some mail readers use HTML 4 and doesn't support &apos;
89 89 )
90 90
91 91 def js(value):
@@ -94,7 +94,7 b' View Comment: http://comment.org'
94 94 <tr>
95 95 <td width="20px" style="width:20px"></td>
96 96 <td>
97 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &apos;comment&apos;.<br/><br/> - and here it ends indented.</div></div>
97 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &#39;comment&#39;.<br/><br/> - and here it ends indented.</div></div>
98 98 </td>
99 99 <td width="20px" style="width:20px"></td>
100 100 </tr>
@@ -253,7 +253,7 b' View Comment: http://comment.org'
253 253 <tr>
254 254 <td width="20px" style="width:20px"></td>
255 255 <td>
256 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &apos;comment&apos;.<br/><br/> - and here it ends indented.</div></div>
256 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &#39;comment&#39;.<br/><br/> - and here it ends indented.</div></div>
257 257 </td>
258 258 <td width="20px" style="width:20px"></td>
259 259 </tr>
@@ -430,7 +430,7 b' View Comment: http://comment.org'
430 430 <tr>
431 431 <td width="20px" style="width:20px"></td>
432 432 <td>
433 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &apos;comment&apos;.<br/><br/> - and here it ends indented.</div></div>
433 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &#39;comment&#39;.<br/><br/> - and here it ends indented.</div></div>
434 434 </td>
435 435 <td width="20px" style="width:20px"></td>
436 436 </tr>
@@ -607,7 +607,7 b' View Comment: http://comment.org'
607 607 <tr>
608 608 <td width="20px" style="width:20px"></td>
609 609 <td>
610 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &apos;comment&apos;.<br/><br/> - and here it ends indented.</div></div>
610 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the new &#39;comment&#39;.<br/><br/> - and here it ends indented.</div></div>
611 611 </td>
612 612 <td width="20px" style="width:20px"></td>
613 613 </tr>
@@ -728,7 +728,7 b' Subject: Test Message'
728 728 <td>
729 729 <table cellpadding="0" cellspacing="0" border="0" width="100%">
730 730 <tr>
731 <td style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the &apos;body&apos; of the &quot;test&quot; message<br/> - nothing interesting here except indentation.</div></td>
731 <td style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap"><div class="formatted-fixed">This is the &#39;body&#39; of the &quot;test&quot; message<br/> - nothing interesting here except indentation.</div></td>
732 732 </tr>
733 733 </table>
734 734 </td>
@@ -987,7 +987,7 b' View Pull Request: http://pr.org/7'
987 987 <tr><td height="10px" style="height:10px"></td></tr>
988 988 <tr>
989 989 <td>
990 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap;color:#395fa0"><div class="formatted-fixed">This PR is &apos;awesome&apos; because it does &lt;stuff&gt;<br/> - please approve indented!</div></div>
990 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap;color:#395fa0"><div class="formatted-fixed">This PR is &#39;awesome&#39; because it does &lt;stuff&gt;<br/> - please approve indented!</div></div>
991 991 </td>
992 992 </tr>
993 993 <tr><td height="15px" style="height:15px"></td></tr>
@@ -1162,7 +1162,7 b' View Pull Request: http://pr.org/7'
1162 1162 <tr><td height="10px" style="height:10px"></td></tr>
1163 1163 <tr>
1164 1164 <td>
1165 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap;color:#395fa0"><div class="formatted-fixed">This PR is &apos;awesome&apos; because it does &lt;stuff&gt;<br/> - please approve indented!</div></div>
1165 <div style="font-family:Lucida Console,Consolas,Monaco,Inconsolata,Liberation Mono,monospace;white-space:pre-wrap;color:#395fa0"><div class="formatted-fixed">This PR is &#39;awesome&#39; because it does &lt;stuff&gt;<br/> - please approve indented!</div></div>
1166 1166 </td>
1167 1167 </tr>
1168 1168 <tr><td height="15px" style="height:15px"></td></tr>
General Comments 0
You need to be logged in to leave comments. Login now