Merge branch '1.0.x' of gitorious.org:statusnet/mainline into 1.0.x

This commit is contained in:
Evan Prodromou 2011-04-04 18:20:45 -04:00
commit 229692be3a
3 changed files with 24 additions and 26 deletions

View File

@ -384,7 +384,7 @@ class QnAPlugin extends MicroAppPlugin
$nli = new NoticeListItem($notice, $out);
$nli->showNotice();
$out->elementStart('div', array('class' => 'entry-content question-desciption'));
$out->elementStart('div', array('class' => 'entry-content question-description'));
$question = QnA_Question::getByNotice($notice);

View File

@ -205,31 +205,31 @@ class QnA_Answer extends Managed_DataObject
{
$notice = $question->getNotice();
$fmt = '';
$out = new XMLStringer();
$cls = array('qna_answer');
if (!empty($answer->best)) {
$fmt = '<p class="qna_answer best">';
} else {
$fmt = '<p class="qna_answer">';
$cls[] = 'best';
}
$fmt .= '<span class="answer_author"><a href="%1$s">answer</a> by <a href="%2$s">%3$s</a></span>';
$fmt .= '<span class="answer_content">%4$s</span>';
$out->elementStart('p', array('class' => implode(' ', $cls)));
$out->elementStart('span', 'answer-content');
$out->raw(QnAPlugin::shorten($answer->content, $notice));
$out->elementEnd('span');
if (!empty($answer->revisions)) {
$fmt .= '<span class="answer_revisions">'
. $answer->revisions
. _m('revisions')
. '</span>';
$out->elementstart('span', 'answer-revisions');
$out->text(
htmlspecialchars(
sprintf(_m('%s revisions'), $answer->revisions)
)
);
$out->elementEnd('span');
}
$fmt .= '</p>';
return sprintf(
$fmt,
htmlspecialchars($notice->bestUrl()),
htmlspecialchars($profile->profileurl),
htmlspecialchars($profile->getBestName()),
htmlspecialchars($answer->content)
);
$out->elementEnd('p');
return $out->getString();
}
static function toString($profile, $question, $answer)

View File

@ -213,14 +213,12 @@ class QnA_Question extends Managed_DataObject
{
$notice = $question->getNotice();
$fmt = '<span class="question_description">%s</span>';
$out = new XMLStringer();
$out->elementStart('span', 'question_description');
$out->raw(QnAPlugin::shorten($question->description, $notice));
$out->elementEnd('span');
$q = sprintf(
$fmt,
htmlspecialchars($question->description)
);
return $q;
return $out->getString();
}
static function toString($profile, $question, $answers)