Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15461071
D9229.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D9229.id.diff
View Options
diff --git a/src/xsprintf/csprintf.php b/src/xsprintf/csprintf.php
--- a/src/xsprintf/csprintf.php
+++ b/src/xsprintf/csprintf.php
@@ -8,6 +8,9 @@
* %Ls
* List of strings that will be escaped. They will be space separated.
*
+ * %LR
+ * List of "readable" strings. They will be space separated.
+ *
* %P
* Password (or other sensitive parameter) to escape. Pass a
* PhutilOpaqueEnvelope.
@@ -68,24 +71,38 @@
switch ($type) {
case 'L':
- // Only '%Ls' is supported.
- if ($next !== 's') {
- throw new Exception("Unknown conversion %L{$next}.");
- }
-
- // Remove the L, leaving %s
+ // Remove the L.
$pattern = substr_replace($pattern, '', $pos, 1);
$length = strlen($pattern);
$type = 's';
// Check that the value is a non-empty array.
if (!is_array($value)) {
- throw new Exception('Expected an array for %Ls conversion.');
+ throw new Exception("Expected an array for %L{$next} conversion.");
}
- // Convert the list of strings to a single string.
- $value = implode(' ', array_map('escapeshellarg', $value));
+ switch ($next) {
+ case 's':
+ $values = array();
+ foreach ($value as $val) {
+ $values[] = csprintf('%s', $val);
+ }
+ $value = implode(' ', $values);
+ break;
+
+ case 'R':
+ $values = array();
+ foreach ($value as $val) {
+ $values[] = csprintf('%R', $val);
+ }
+ $value = implode(' ', $values);
+ break;
+
+ default:
+ throw new Exception("Unknown conversion %L{$next}.");
+ }
break;
+
case 'R':
if (!preg_match('(^[a-zA-Z0-9:/@._-]+$)', $value)) {
$value = escapeshellarg($value);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Apr 2, 4:57 AM (2 d, 5 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7389019
Default Alt Text
D9229.id.diff (1 KB)
Attached To
Mode
D9229: Add `%LR` support to `csprintf`.
Attached
Detach File
Event Timeline
Log In to Comment