mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-12 04:18:37 +02:00
Paste - add created time to pastes in a list
Summary: Fixes T5943. We do this differently in different places; Audit / Differential do something like this while Pholio expands the "byLine" to include a timestamp. Go with the Audit / Differential approach, as presumably having the date as a top line, easily scannable metadata is the goal here. Test Plan: viewed a list of pastes and saw a timestamp of creation at the top. Reviewers: epriestley, chad Reviewed By: chad Subscribers: epriestley, Korvin Maniphest Tasks: T5943 Differential Revision: https://secure.phabricator.com/D10338
This commit is contained in:
parent
2a4a30044b
commit
3bc391fbc7
1 changed files with 2 additions and 0 deletions
|
@ -163,6 +163,7 @@ final class PhabricatorPasteSearchEngine
|
||||||
),
|
),
|
||||||
$preview);
|
$preview);
|
||||||
|
|
||||||
|
$created = phabricator_datetime($paste->getDateCreated(), $viewer);
|
||||||
$line_count = count($lines);
|
$line_count = count($lines);
|
||||||
$line_count = pht(
|
$line_count = pht(
|
||||||
'%s Line(s)',
|
'%s Line(s)',
|
||||||
|
@ -176,6 +177,7 @@ final class PhabricatorPasteSearchEngine
|
||||||
->setHref('/P'.$paste->getID())
|
->setHref('/P'.$paste->getID())
|
||||||
->setObject($paste)
|
->setObject($paste)
|
||||||
->addByline(pht('Author: %s', $author))
|
->addByline(pht('Author: %s', $author))
|
||||||
|
->addIcon('none', $created)
|
||||||
->addIcon('none', $line_count)
|
->addIcon('none', $line_count)
|
||||||
->appendChild($source_code);
|
->appendChild($source_code);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue