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:
vrana
2013-02-05 13:23:05 -08:00
parent bcf9b9d4a7
commit be4662e667
15 changed files with 52 additions and 45 deletions

View File

@@ -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())

View File

@@ -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);