1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-19 05:12:41 +01:00

Merge pull request #42 from hwang36/master

T341 Add a 'description' field to Phriction for annotating edits
This commit is contained in:
Jun Ge 2011-07-23 21:25:31 -07:00
commit 2de071ce3a
5 changed files with 12 additions and 3 deletions

View file

@ -0,0 +1,2 @@
alter table phabricator_phriction.phriction_content
add description varchar(512);

View file

@ -239,7 +239,7 @@ class PhrictionDiffController
phabricator_time($c->getDateCreated(), $user),
phutil_escape_html('Version '.$c->getVersion()),
$handles[$c->getAuthorPHID()]->renderLink(),
'',
phutil_escape_html($c->getDescription()),
);
}

View file

@ -96,10 +96,10 @@ class PhrictionEditController
$is_new = true;
$document->save();
}
$new_content = new PhrictionContent();
$new_content->setSlug($document->getSlug());
$new_content->setTitle($title);
$new_content->setDescription($request->getStr('description'));
$new_content->setContent($request->getStr('content'));
$new_content->setDocumentID($document->getID());
@ -176,6 +176,12 @@ class PhrictionEditController
->setValue($content->getTitle())
->setError($e_title)
->setName('title'))
->appendChild(
id(new AphrontFormTextControl())
->setLabel('Description')
->setValue($content->getDescription())
->setError(null)
->setName('description'))
->appendChild(
id(new AphrontFormStaticControl())
->setLabel('URI')

View file

@ -100,7 +100,7 @@ class PhrictionHistoryController
),
'Version '.$version),
$handles[$content->getAuthorPHID()]->renderLink(),
'',
phutil_escape_html($content->getDescription()),
$vs_previous,
$vs_head,
);

View file

@ -26,5 +26,6 @@ class PhrictionContent extends PhrictionDAO {
protected $title;
protected $slug;
protected $content;
protected $description;
}