mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-04 00:18:21 +02:00
Convert setCaption() to safe HTML
Test Plan: /settings/panel/display/ Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2432 Differential Revision: https://secure.phabricator.com/D4824
This commit is contained in:
parent
bcf9b9d4a7
commit
be4662e667
15 changed files with 52 additions and 45 deletions
|
@ -177,9 +177,9 @@ final class PhabricatorLoginController
|
|||
id(new AphrontFormPasswordControl())
|
||||
->setLabel(pht('Password'))
|
||||
->setName('password')
|
||||
->setCaption(
|
||||
'<a href="/login/email/">'.
|
||||
pht('Forgot your password? / Email Login').'</a>'));
|
||||
->setCaption(hsprintf(
|
||||
'<a href="/login/email/">%s</a>',
|
||||
pht('Forgot your password? / Email Login'))));
|
||||
|
||||
if ($require_captcha) {
|
||||
$form->appendChild(
|
||||
|
|
|
@ -97,7 +97,7 @@ final class PhabricatorConduitConsoleController
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel($param)
|
||||
->setName("params[{$param}]")
|
||||
->setCaption(phutil_escape_html($desc)));
|
||||
->setCaption($desc));
|
||||
}
|
||||
|
||||
$form
|
||||
|
|
|
@ -97,11 +97,11 @@ final class PhabricatorCountdownEditController
|
|||
->setLabel('End date')
|
||||
->setValue($display_datepoint)
|
||||
->setName('datepoint')
|
||||
->setCaption(
|
||||
->setCaption(hsprintf(
|
||||
'Examples: '.
|
||||
'<tt>2011-12-25</tt> or '.
|
||||
'<tt>3 hours</tt> or '.
|
||||
'<tt>June 8 2011, 5 PM</tt>.'))
|
||||
'<tt>June 8 2011, 5 PM</tt>.')))
|
||||
->appendChild(
|
||||
id(new AphrontFormSubmitControl())
|
||||
->addCancelButton('/countdown/')
|
||||
|
|
|
@ -149,9 +149,9 @@ final class PhabricatorDirectoryMainController
|
|||
|
||||
$panel = new AphrontPanelView();
|
||||
$panel->setHeader('Needs Triage');
|
||||
$panel->setCaption(
|
||||
$panel->setCaption(hsprintf(
|
||||
'Open tasks with "Needs Triage" priority in '.
|
||||
'<a href="/project/">projects you are a member of</a>.');
|
||||
'<a href="/project/">projects you are a member of</a>.'));
|
||||
|
||||
$panel->addButton(
|
||||
phutil_tag(
|
||||
|
|
|
@ -99,7 +99,7 @@ final class PhabricatorFileUploadController extends PhabricatorFileController {
|
|||
$limit = phabricator_parse_bytes($limit);
|
||||
if ($limit) {
|
||||
$formatted = phabricator_format_bytes($limit);
|
||||
return 'Maximum file size: '.phutil_escape_html($formatted);
|
||||
return 'Maximum file size: '.$formatted;
|
||||
}
|
||||
|
||||
$doc_href = PhabricatorEnv::getDocLink(
|
||||
|
@ -112,7 +112,7 @@ final class PhabricatorFileUploadController extends PhabricatorFileController {
|
|||
),
|
||||
'Configuring File Upload Limits');
|
||||
|
||||
return 'Upload limit is not configured, see '.$doc_link.'.';
|
||||
return hsprintf('Upload limit is not configured, see %s.', $doc_link);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -245,12 +245,13 @@ final class ManiphestReportController extends ManiphestController {
|
|||
|
||||
if ($handle) {
|
||||
$header = "Task Burn Rate for Project ".$handle->renderLink();
|
||||
$caption = "<p>NOTE: This table reflects tasks <em>currently</em> in ".
|
||||
"the project. If a task was opened in the past but added to ".
|
||||
"the project recently, it is counted on the day it was ".
|
||||
"opened, not the day it was categorized. If a task was part ".
|
||||
"of this project in the past but no longer is, it is not ".
|
||||
"counted at all.</p>";
|
||||
$caption = hsprintf(
|
||||
"<p>NOTE: This table reflects tasks <em>currently</em> in ".
|
||||
"the project. If a task was opened in the past but added to ".
|
||||
"the project recently, it is counted on the day it was ".
|
||||
"opened, not the day it was categorized. If a task was part ".
|
||||
"of this project in the past but no longer is, it is not ".
|
||||
"counted at all.</p>");
|
||||
} else {
|
||||
$header = "Task Burn Rate for All Tasks";
|
||||
$caption = null;
|
||||
|
|
|
@ -478,8 +478,9 @@ final class ManiphestTaskEditController extends ManiphestController {
|
|||
$email_create = PhabricatorEnv::getEnvConfig(
|
||||
'metamta.maniphest.public-create-email');
|
||||
if (!$task->getID() && $email_create) {
|
||||
$email_hint = pht('You can also create tasks by sending an email to: ').
|
||||
'<tt>'.phutil_escape_html($email_create).'</tt>';
|
||||
$email_hint = pht(
|
||||
'You can also create tasks by sending an email to: %s',
|
||||
phutil_tag('tt', array(), $email_create));
|
||||
$description_control->setCaption($email_hint);
|
||||
}
|
||||
|
||||
|
|
|
@ -57,7 +57,10 @@ final class PhabricatorMetaMTAReceiveController
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel(pht('To'))
|
||||
->setName('obj')
|
||||
->setCaption(pht('e.g. <tt>D1234</tt> or <tt>T1234</tt>')))
|
||||
->setCaption(pht(
|
||||
'e.g. %s or %s',
|
||||
phutil_tag('tt', array(), 'D1234'),
|
||||
phutil_tag('tt', array(), 'T1234'))))
|
||||
->appendChild(
|
||||
id(new AphrontFormTextAreaControl())
|
||||
->setLabel(pht('Body'))
|
||||
|
|
|
@ -116,8 +116,10 @@ final class PhabricatorMetaMTASendController
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel(pht('Mail Tags'))
|
||||
->setName('mailtags')
|
||||
->setCaption(
|
||||
pht('Example:').' <tt>differential-cc, differential-comment</tt>'))
|
||||
->setCaption(pht(
|
||||
'Example: %s',
|
||||
phutil_tag('tt', array(), 'differential-cc, differential-comment'))
|
||||
))
|
||||
->appendChild(
|
||||
id(new AphrontFormDragAndDropUploadControl())
|
||||
->setLabel(pht('Attach Files'))
|
||||
|
@ -144,8 +146,7 @@ final class PhabricatorMetaMTASendController
|
|||
'1',
|
||||
pht('Send immediately. (Do not enqueue for daemons.)'),
|
||||
PhabricatorEnv::getEnvConfig('metamta.send-immediately'))
|
||||
->setCaption(pht('Daemons can be started with %s.', $phdlink))
|
||||
)
|
||||
->setCaption(pht('Daemons can be started with %s.', $phdlink)))
|
||||
->appendChild(
|
||||
id(new AphrontFormSubmitControl())
|
||||
->setValue(pht('Send Mail')));
|
||||
|
|
|
@ -150,8 +150,7 @@ final class PhameBlogEditController
|
|||
->setLabel('Custom Domain')
|
||||
->setName('custom_domain')
|
||||
->setValue($blog->getDomain())
|
||||
->setCaption('Must include at least one dot (.), e.g. '.
|
||||
'blog.example.com')
|
||||
->setCaption('Must include at least one dot (.), e.g. blog.example.com')
|
||||
->setError($e_custom_domain)
|
||||
)
|
||||
->appendChild(
|
||||
|
|
|
@ -83,7 +83,8 @@ final class PhabricatorRepositoryArcanistProjectEditController
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel('Indexed Languages')
|
||||
->setName('symbolIndexLanguages')
|
||||
->setCaption('Separate with commas, for example: <tt>php, py</tt>')
|
||||
->setCaption(
|
||||
hsprintf('Separate with commas, for example: <tt>php, py</tt>'))
|
||||
->setValue($langs))
|
||||
->appendChild(
|
||||
id(new AphrontFormTokenizerControl())
|
||||
|
|
|
@ -456,7 +456,8 @@ final class PhabricatorRepositoryEditController
|
|||
->setHeight(AphrontFormTextAreaControl::HEIGHT_VERY_SHORT)
|
||||
->setValue($repository->getDetail('ssh-key'))
|
||||
->setError($e_ssh_key)
|
||||
->setCaption('Specify the entire private key, <em>or</em>...'))
|
||||
->setCaption(
|
||||
hsprintf('Specify the entire private key, <em>or</em>...')))
|
||||
->appendChild(
|
||||
id(new AphrontFormTextControl())
|
||||
->setName('ssh-keyfile')
|
||||
|
@ -552,10 +553,10 @@ final class PhabricatorRepositoryEditController
|
|||
->setName('branch-filter')
|
||||
->setLabel('Track Only')
|
||||
->setValue($branch_filter_str)
|
||||
->setCaption(
|
||||
->setCaption(hsprintf(
|
||||
'Optional list of branches to track. Other branches will be '.
|
||||
'completely ignored. If left empty, all branches are tracked. '.
|
||||
'Example: <tt>master, release</tt>'));
|
||||
'Example: <tt>master, release</tt>')));
|
||||
}
|
||||
|
||||
$inset
|
||||
|
@ -651,7 +652,7 @@ final class PhabricatorRepositoryEditController
|
|||
->setName('uuid')
|
||||
->setLabel('UUID')
|
||||
->setValue($repository->getUUID())
|
||||
->setCaption('Repository UUID from <tt>svn info</tt>.'));
|
||||
->setCaption(hsprintf('Repository UUID from <tt>svn info</tt>.')));
|
||||
}
|
||||
|
||||
$form->appendChild($inset);
|
||||
|
|
|
@ -67,7 +67,6 @@ EXAMPLE;
|
|||
'User Guide: Configuring an External Editor');
|
||||
|
||||
$font_default = PhabricatorEnv::getEnvConfig('style.monospace');
|
||||
$font_default = phutil_escape_html($font_default);
|
||||
|
||||
$pref_monospaced_textareas_value = $preferences
|
||||
->getPreference($pref_monospaced_textareas);
|
||||
|
@ -97,11 +96,11 @@ EXAMPLE;
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel('Editor Link')
|
||||
->setName($pref_editor)
|
||||
->setCaption(
|
||||
->setCaption(hsprintf(
|
||||
'Link to edit files in external editor. '.
|
||||
'%f is replaced by filename, %l by line number, %r by repository '.
|
||||
'callsign, %% by literal %. '.
|
||||
"For documentation, see {$editor_doc_link}.")
|
||||
'%%f is replaced by filename, %%l by line number, %%r by repository '.
|
||||
'callsign, %%%% by literal %%. For documentation, see %s.',
|
||||
$editor_doc_link))
|
||||
->setValue($preferences->getPreference($pref_editor)))
|
||||
->appendChild(
|
||||
id(new AphrontFormSelectControl())
|
||||
|
@ -116,9 +115,10 @@ EXAMPLE;
|
|||
id(new AphrontFormTextControl())
|
||||
->setLabel('Monospaced Font')
|
||||
->setName($pref_monospaced)
|
||||
->setCaption(
|
||||
->setCaption(hsprintf(
|
||||
'Overrides default fonts in tools like Differential.<br />'.
|
||||
'(Default: '.$font_default.')')
|
||||
'(Default: %s)',
|
||||
$font_default))
|
||||
->setValue($preferences->getPreference($pref_monospaced)))
|
||||
->appendChild(
|
||||
id(new AphrontFormMarkupControl())
|
||||
|
|
|
@ -140,10 +140,10 @@ abstract class AphrontFormControl extends AphrontView {
|
|||
}
|
||||
|
||||
if (strlen($this->getCaption())) {
|
||||
$caption =
|
||||
'<div class="aphront-form-caption">'.
|
||||
$this->getCaption().
|
||||
'</div>';
|
||||
$caption = phutil_tag(
|
||||
'div',
|
||||
array('class' => 'aphront-form-caption'),
|
||||
$this->getCaption());
|
||||
} else {
|
||||
$caption = null;
|
||||
}
|
||||
|
|
|
@ -69,10 +69,10 @@ final class AphrontPanelView extends AphrontView {
|
|||
}
|
||||
|
||||
if ($this->caption !== null) {
|
||||
$caption =
|
||||
'<div class="aphront-panel-view-caption">'.
|
||||
$this->caption.
|
||||
'</div>';
|
||||
$caption = phutil_tag(
|
||||
'div',
|
||||
array('class' => 'aphront-panel-view-caption'),
|
||||
$this->caption);
|
||||
} else {
|
||||
$caption = null;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue