Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96133097
DifferentialChangesetOneUpRenderer.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
Sun, Dec 22, 23:48
Size
2 KB
Mime Type
text/x-php
Expires
Tue, Dec 24, 23:48 (2 d)
Engine
blob
Format
Raw Data
Handle
23129407
Attached To
rPH Phabricator
DifferentialChangesetOneUpRenderer.php
View Options
<?php
final
class
DifferentialChangesetOneUpRenderer
extends
DifferentialChangesetHTMLRenderer
{
public
function
isOneUpRenderer
()
{
return
true
;
}
public
function
renderTextChange
(
$range_start
,
$range_len
,
$rows
)
{
$primitives
=
$this
->
buildPrimitives
(
$range_start
,
$range_len
);
$out
=
array
();
foreach
(
$primitives
as
$p
)
{
$type
=
$p
[
'type'
];
switch
(
$type
)
{
case
'old'
:
case
'new'
:
$out
[]
=
hsprintf
(
'<tr>'
);
if
(
$type
==
'old'
)
{
if
(
$p
[
'htype'
])
{
$class
=
'left old'
;
}
else
{
$class
=
'left'
;
}
$out
[]
=
hsprintf
(
'<th>%s</th>'
,
$p
[
'line'
]);
$out
[]
=
hsprintf
(
'<th></th>'
);
$out
[]
=
hsprintf
(
'<td class="%s">%s</td>'
,
$class
,
$p
[
'render'
]);
}
else
if
(
$type
==
'new'
)
{
if
(
$p
[
'htype'
])
{
$class
=
'right new'
;
$out
[]
=
hsprintf
(
'<th />'
);
}
else
{
$class
=
'right'
;
$out
[]
=
hsprintf
(
'<th>%s</th>'
,
$p
[
'oline'
]);
}
$out
[]
=
hsprintf
(
'<th>%s</th>'
,
$p
[
'line'
]);
$out
[]
=
hsprintf
(
'<td class="%s">%s</td>'
,
$class
,
$p
[
'render'
]);
}
$out
[]
=
hsprintf
(
'</tr>'
);
break
;
case
'inline'
:
$out
[]
=
hsprintf
(
'<tr><th /><th />'
);
$out
[]
=
hsprintf
(
'<td>'
);
$inline
=
$this
->
buildInlineComment
(
$p
[
'comment'
],
$p
[
'right'
]);
$inline
->
setBuildScaffolding
(
false
);
$out
[]
=
$inline
->
render
();
$out
[]
=
hsprintf
(
'</td></tr>'
);
break
;
default
:
$out
[]
=
hsprintf
(
'<tr><th /><th /><td>%s</td></tr>'
,
$type
);
break
;
}
}
if
(
$out
)
{
return
$this
->
wrapChangeInTable
(
phutil_implode_html
(
''
,
$out
));
}
return
null
;
}
public
function
renderFileChange
(
$old_file
=
null
,
$new_file
=
null
,
$id
=
0
,
$vs
=
0
)
{
throw
new
Exception
(
"Not implemented!"
);
}
}
Event Timeline
Log In to Comment