Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15465859
D14170.id34236.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
D14170.id34236.diff
View Options
diff --git a/src/utils/PhutilCowsay.php b/src/utils/PhutilCowsay.php
--- a/src/utils/PhutilCowsay.php
+++ b/src/utils/PhutilCowsay.php
@@ -69,6 +69,14 @@
'Failed to replace template variables while rendering cow!'));
}
+ // Since .cow files are actually perl scripts they contain escaped
+ // sequences which we attempt to unescape here by replacing any character
+ // preceded by a backslash/escape with just that character
+ $template = preg_replace(
+ '/\\\\(\\S)/',
+ '$1',
+ $template);
+
$lines = $this->text;
// TODO: It would be nice to use a utf8 soft wrap here instead, but we
diff --git a/src/utils/__tests__/cowsay/cube.test b/src/utils/__tests__/cowsay/cube.test
--- a/src/utils/__tests__/cowsay/cube.test
+++ b/src/utils/__tests__/cowsay/cube.test
@@ -1,12 +1,12 @@
$thoughts
$thoughts
- /---\__/---\\
- | / .... \ ||
- \ ..--.. //
+ /---\\__/---\\\\
+ | / .... \\ ||
+ \\ ..--.. //
|..($eyes). ||
- / ..--.. \\
- | \ .... / ||
- \---/--\---//
+ / ..--.. \\\\
+ | \\ .... / ||
+ \\---/--\\---//
~~~~~~~~~~
{
"text": "I made a friend!",
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 3, 11:52 PM (2 d, 17 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7731137
Default Alt Text
D14170.id34236.diff (1 KB)
Attached To
Mode
D14170: Unescape sequences in .cow files which look like escaped sequences
Attached
Detach File
Event Timeline
Log In to Comment