summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-07-07 02:41:55 -0400
committerEvan Prodromou <evan@prodromou.name>2008-07-07 02:41:55 -0400
commit7b50acbc524159ed13c56dd28706f5c359c0073d (patch)
tree17b423f741147c5106eb8bd01e400dbc8b7a3210 /lib
parentdcb6ee85448c555c43d8a0260d85f901a662df7b (diff)
consolidate show_notice and show_reply
darcs-hash:20080707064155-84dde-fb6209b36ff8066335249c0602b2e78961f90c55.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/stream.php46
1 files changed, 7 insertions, 39 deletions
diff --git a/lib/stream.php b/lib/stream.php
index e29b64c60..6c83c1656 100644
--- a/lib/stream.php
+++ b/lib/stream.php
@@ -57,7 +57,7 @@ class StreamAction extends Action {
common_element_end('ul');
}
- function show_notice($notice) {
+ function show_notice($notice, $replied_id=NULL) {
global $config;
$profile = $notice->getProfile();
# XXX: RDFa
@@ -86,44 +86,12 @@ class StreamAction extends Action {
'href' => $noticeurl,
'title' => common_exact_date($notice->created)),
common_date_string($notice->created));
- common_element_end('p');
- common_element_end('li');
- }
-
- # XXX: these are almost identical functions!
-
- function show_reply($notice, $replied_id) {
- global $config;
- $profile = $notice->getProfile();
- # XXX: RDFa
- common_element_start('li', array('class' => 'notice_single',
- 'id' => 'notice-' . $notice->id));
- $avatar = $profile->getAvatar(AVATAR_STREAM_SIZE);
- common_element_start('a', array('href' => $profile->profileurl));
- common_element('img', array('src' => ($avatar) ? $avatar->url : common_default_avatar(AVATAR_STREAM_SIZE),
- 'class' => 'avatar stream',
- 'width' => AVATAR_STREAM_SIZE,
- 'height' => AVATAR_STREAM_SIZE,
- 'alt' =>
- ($profile->fullname) ? $profile->fullname :
- $profile->nickname));
- common_element_end('a');
- common_element('a', array('href' => $profile->profileurl,
- 'class' => 'nickname'),
- $profile->nickname);
- # FIXME: URL, image, video, audio
- common_element_start('p', array('class' => 'content'));
- common_raw(common_render_content($notice->content, $notice));
- common_element_end('p');
- $replyurl = common_local_url('shownotice', array('notice' => $replied_id));
- $noticeurl = common_local_url('shownotice', array('notice' => $notice->id));
- common_element_start('p', 'time');
- common_element('a', array('class' => 'notice',
- 'href' => $noticeurl),
- common_date_string($notice->created));
- common_element('a', array('class' => 'inreplyto',
- 'href' => $replyurl),
- " in reply to ".$profile->nickname );
+ if ($replied_id) {
+ $replyurl = common_local_url('shownotice', array('notice' => $replied_id));
+ common_element('a', array('class' => 'inreplyto',
+ 'href' => $replyurl),
+ " in reply to ".$profile->nickname );
+ }
common_element_end('p');
common_element_end('li');
}