##// END OF EJS Templates
show full diff option should preserve current GET params
marcink -
r3312:1af36014 beta
parent child Browse files
Show More
@@ -134,7 +134,7 b''
134 </div>
134 </div>
135 %endfor
135 %endfor
136 % if c.limited_diff:
136 % if c.limited_diff:
137 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
137 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
138 % endif
138 % endif
139 </div>
139 </div>
140 </div>
140 </div>
@@ -146,7 +146,7 b''
146 ${diff_block.diff_block(c.changes[c.changeset.raw_id])}
146 ${diff_block.diff_block(c.changes[c.changeset.raw_id])}
147
147
148 % if c.limited_diff:
148 % if c.limited_diff:
149 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
149 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
150 % endif
150 % endif
151
151
152 ## template for inline comment form
152 ## template for inline comment form
@@ -59,7 +59,7 b''
59 %endfor
59 %endfor
60 </div>
60 </div>
61 % if c.limited_diff:
61 % if c.limited_diff:
62 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
62 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
63 % endif
63 % endif
64 </div>
64 </div>
65 </div>
65 </div>
@@ -70,7 +70,7 b''
70 ${diff_block.diff_block_simple([c.changes[fid]])}
70 ${diff_block.diff_block_simple([c.changes[fid]])}
71 %endfor
71 %endfor
72 % if c.limited_diff:
72 % if c.limited_diff:
73 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
73 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
74 % endif
74 % endif
75 <script type="text/javascript">
75 <script type="text/javascript">
76
76
@@ -119,7 +119,7 b''
119 %endfor
119 %endfor
120 </div>
120 </div>
121 % if c.limited_diff:
121 % if c.limited_diff:
122 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
122 <h5>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h5>
123 % endif
123 % endif
124 </div>
124 </div>
125 </div>
125 </div>
@@ -178,7 +178,7 b''
178 ${diff_block.diff_block_simple([c.changes[fid]])}
178 ${diff_block.diff_block_simple([c.changes[fid]])}
179 %endfor
179 %endfor
180 % if c.limited_diff:
180 % if c.limited_diff:
181 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1)}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
181 <h4>${_('Changeset was too big and was cut off...')} <a href="${h.url.current(fulldiff=1, **request.GET.mixed())}" onclick="return confirm('${_("confirm to show potentially huge diff")}')">${_('Show full diff')}</a></h4>
182 % endif
182 % endif
183
183
184
184
General Comments 0
You need to be logged in to leave comments. Login now