Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99124102
20130219.commitsummarymig.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
Mon, Jan 20, 17:29
Size
492 B
Mime Type
text/x-php
Expires
Wed, Jan 22, 17:29 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23710538
Attached To
rPH Phabricator
20130219.commitsummarymig.php
View Options
<?php
echo
"Backfilling commit summaries...
\n
"
;
$commits
=
new
LiskMigrationIterator
(
new
PhabricatorRepositoryCommit
());
foreach
(
$commits
as
$commit
)
{
echo
'Filling Commit #'
.
$commit
->
getID
().
"
\n
"
;
if
(
strlen
(
$commit
->
getSummary
()))
{
continue
;
}
$data
=
id
(
new
PhabricatorRepositoryCommitData
())->
loadOneWhere
(
'commitID = %d'
,
$commit
->
getID
());
if
(!
$data
)
{
continue
;
}
$commit
->
setSummary
(
$data
->
getSummary
());
$commit
->
save
();
}
echo
"Done.
\n
"
;
Event Timeline
Log In to Comment