Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: chrome/content/ui/sendReport.xul

Issue 8937025: Encourage user to set email in issue reporter (Closed)
Left Patch Set: Created Nov. 22, 2012, 1:54 p.m.
Right Patch Set: Encourage user to set email in issue reporter Created Nov. 23, 2012, 6:31 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « chrome/content/ui/sendReport.js ('k') | chrome/locale/en-US/sendReport.dtd » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <?xml version="1.0"?> 1 <?xml version="1.0"?>
2 2
3 <!-- 3 <!--
4 - This file is part of the Adblock Plus, 4 - This file is part of the Adblock Plus,
5 - Copyright (C) 2006-2012 Eyeo GmbH 5 - Copyright (C) 2006-2012 Eyeo GmbH
6 - 6 -
7 - Adblock Plus is free software: you can redistribute it and/or modify 7 - Adblock Plus is free software: you can redistribute it and/or modify
8 - it under the terms of the GNU General Public License version 3 as 8 - it under the terms of the GNU General Public License version 3 as
9 - published by the Free Software Foundation. 9 - published by the Free Software Foundation.
10 - 10 -
(...skipping 198 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 <canvas xmlns="http://www.w3.org/1999/xhtml" id="screenshotCanvas" onmousedo wn="screenshotDataSource.startSelection(event);" onmouseup="screenshotDataSource .stopSelection(event);" onmouseout="screenshotDataSource.stopSelection(event);" onmousemove="screenshotDataSource.updateSelection(event);"/> 209 <canvas xmlns="http://www.w3.org/1999/xhtml" id="screenshotCanvas" onmousedo wn="screenshotDataSource.startSelection(event);" onmouseup="screenshotDataSource .stopSelection(event);" onmouseout="screenshotDataSource.stopSelection(event);" onmousemove="screenshotDataSource.updateSelection(event);"/>
210 </vbox> 210 </vbox>
211 </wizardpage> 211 </wizardpage>
212 212
213 <wizardpage id="commentPage" pageid="comment" next="send" label="&commentPage.he ading;" onpageshow="initCommentPage();"> 213 <wizardpage id="commentPage" pageid="comment" next="send" label="&commentPage.he ading;" onpageshow="initCommentPage();">
214 <description>&emailComment.label;</description> 214 <description>&emailComment.label;</description>
215 <hbox class="topLabel" align="baseline"> 215 <hbox class="topLabel" align="baseline">
216 <label id="emailLabel" control="email" value="&email.label;" accesskey="&ema il.accesskey;"/> 216 <label id="emailLabel" control="email" value="&email.label;" accesskey="&ema il.accesskey;"/>
217 <textbox id="email" persist="value" flex="1" maxlength="200" oninput="update Email();"/> 217 <textbox id="email" persist="value" flex="1" maxlength="200" oninput="update Email();"/>
218 </hbox> 218 </hbox>
219 <checkbox id="anonymousCheckbox" label="&anonymous.label;" accesskey="&anonymo us.accesskey;" oncommand="updateAnonymity(this.checked);"/> 219 <checkbox id="anonymousCheckbox" label="&anonymous.label;" accesskey="&anonymo us.accesskey;" oncommand="updateEmail();"/>
220 <description id="anonymityWarning" visible="false">&anonymity.warning;</descri ption> 220 <description id="anonymityWarning" visible="false">&anonymity.warning;</descri ption>
221 221
222 <description class="topLabel">&commentPage.description;</description> 222 <description class="topLabel">&commentPage.description;</description>
223 <label class="topLabel" control="comment" value="&comment.label;" accesskey="& comment.accesskey;"/> 223 <label class="topLabel" control="comment" value="&comment.label;" accesskey="& comment.accesskey;"/>
224 <textbox id="comment" multiline="true" flex="1" oninput="updateComment();"/> 224 <textbox id="comment" multiline="true" flex="1" oninput="updateComment();"/>
225 <description id="commentLengthWarning" visible="false">&comment.lengthWarning; </description> 225 <description id="commentLengthWarning" visible="false">&comment.lengthWarning; </description>
226 226
227 <checkbox id="extensionsCheckbox" label="&attachExtensions.label;" accesskey=" &attachExtensions.accesskey;" oncommand="updateExtensions(this.checked);"/> 227 <checkbox id="extensionsCheckbox" label="&attachExtensions.label;" accesskey=" &attachExtensions.accesskey;" oncommand="updateExtensions(this.checked);"/>
228 228
229 <deck id="dataDeck" selectedIndex="0" flex="2"> 229 <deck id="dataDeck" selectedIndex="0" flex="2">
(...skipping 21 matching lines...) Expand all
251 251
252 <iframe id="result" type="content" flex="1" hidden="true" onclick="processLink Click(event);" 252 <iframe id="result" type="content" flex="1" hidden="true" onclick="processLink Click(event);"
253 confirmationMessage="&sendPage.confirmation;" knownIssueMessage="&send Page.knownIssue;"/> 253 confirmationMessage="&sendPage.confirmation;" knownIssueMessage="&send Page.knownIssue;"/>
254 254
255 <hbox id="copyLinkBox" pack="end" hidden="true"> 255 <hbox id="copyLinkBox" pack="end" hidden="true">
256 <button id="copyLink" disabled="true" label="&copyLink.label;" accesskey="&c opyLink.accesskey;" oncommand="copyLink(this.getAttribute('url'));"/> 256 <button id="copyLink" disabled="true" label="&copyLink.label;" accesskey="&c opyLink.accesskey;" oncommand="copyLink(this.getAttribute('url'));"/>
257 </hbox> 257 </hbox>
258 </wizardpage> 258 </wizardpage>
259 259
260 </wizard> 260 </wizard>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld