Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F123749710
PhutilDefaultSyntaxHighlighterEnginePygmentsFuture.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jul 29, 09:56
Size
831 B
Mime Type
text/x-php
Expires
Thu, Jul 31, 09:56 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
27735368
Attached To
rPHU libphutil
PhutilDefaultSyntaxHighlighterEnginePygmentsFuture.php
View Options
<?php
/**
* @group markup
*/
final
class
PhutilDefaultSyntaxHighlighterEnginePygmentsFuture
extends
FutureProxy
{
private
$source
;
private
$scrub
;
public
function
__construct
(
Future
$proxied
,
$source
,
$scrub
=
false
)
{
parent
::
__construct
(
$proxied
);
$this
->
source
=
$source
;
$this
->
scrub
=
$scrub
;
}
protected
function
didReceiveResult
(
$result
)
{
list
(
$err
,
$stdout
,
$stderr
)
=
$result
;
if
(!
$err
&&
strlen
(
$stdout
))
{
// Strip off fluff Pygments adds.
$stdout
=
preg_replace
(
'@^<div class="highlight"><pre>(.*)</pre></div>
\s
*$@s'
,
'
\1
'
,
$stdout
);
if
(
$this
->
scrub
)
{
$stdout
=
preg_replace
(
'/^.*
\n
/'
,
''
,
$stdout
);
}
return
phutil_safe_html
(
$stdout
);
}
throw
new
PhutilSyntaxHighlighterException
(
$stderr
,
$err
);
}
}
Event Timeline
Log In to Comment