Page MenuHomePhabricator

Add `%LR` support to `csprintf`.
ClosedPublic

Authored by joshuaspence on May 20 2014, 11:28 PM.
Tags
None
Referenced Files
F15463411: D9229.id.diff
Tue, Apr 1, 11:10 PM
F15461071: D9229.id.diff
Tue, Apr 1, 4:57 AM
F15460412: D9229.id21916.diff
Mon, Mar 31, 10:47 PM
F15460222: D9229.id21917.diff
Mon, Mar 31, 9:07 PM
F15458119: D9229.diff
Sun, Mar 30, 8:58 PM
F15455691: D9229.id21917.diff
Sun, Mar 30, 4:18 AM
F15406967: D9229.id21916.diff
Tue, Mar 18, 3:00 PM
F15386749: D9229.id21916.diff
Sat, Mar 15, 1:14 AM
Subscribers

Details

Summary

Allow csprintf to format an array of readable strings.

Test Plan

I didn't create any test cases because there aren't any existing test cases for csprintf. Instead, I used the following script:

<?php

require_once __DIR__.'/scripts/__init_script__.php';

echo csprintf('%LR', array('foo', '--not', 'bar'))."\n";
echo csprintf('%LR', array('foo', '--not bar'))."\n";

The output was as follows:

foo --not bar
foo '--not bar'

Diff Detail

Repository
rPHU libphutil
Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

joshuaspence retitled this revision from to Add `%LR` support to `csprintf`..
joshuaspence updated this object.
joshuaspence edited the test plan for this revision. (Show Details)
joshuaspence added a reviewer: epriestley.
epriestley edited edge metadata.
This revision is now accepted and ready to land.May 20 2014, 11:29 PM
epriestley updated this revision to Diff 21917.

Closed by commit rPHU1ba1de50e9ee (authored by @joshuaspence, committed by @epriestley).