//imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
notice.find('a.attachment').each(function() {
+ /*
var attachId = ($(this).attr('id').substring('attachment'.length + 1));
if (attachId) {
var thumbUrl = $('address .url')[0].href+'attachment/' + attachId + '/thumb';
- var thumb = $('<div class="inline_thumb">Thumb: <img/></div>');
+ var thumb = $('<div class="attachment-thumb">Thumb: <img/></div>');
thumb.find('img').attr('src', thumbUrl).last();
- notice.append(thumb);
+ notice.find('.entry-title .entry-content').append(thumb);
}
+ */
});
if ($('#shownotice').length == 0) {
+ /*
var t;
notice.find('a.thumbnail').hover(
function() {
$(this).closest('.entry-title').removeClass('ov');
}
);
+ */
}
}
},
*/
function show()
{
- $this->showStart();
- $this->showNoticeAttachment();
- $this->showEnd();
+ if ($this->attachment->isEnclosure()) {
+ $this->showStart();
+ $this->showNoticeAttachment();
+ $this->showEnd();
+ }
}
function linkAttr() {
}
function showRepresentation() {
+ $thumb = $this->getThumbInfo();
+ if ($thumb) {
+ $thumb = $this->sizeThumb($thumb);
+ $this->out->element('img', array('alt' => '', 'src' => $thumb->url, 'width' => $thumb->width, 'height' => $thumb->height));
+ }
+ }
+
+ function getThumbInfo()
+ {
$thumbnail = File_thumbnail::staticGet('file_id', $this->attachment->id);
- if (!empty($thumbnail)) {
- $this->out->element('img', array('alt' => '', 'src' => $thumbnail->url, 'width' => $thumbnail->width, 'height' => $thumbnail->height));
+ if ($thumbnail) {
+ return $thumbnail;
+ } else {
+ switch ($this->attachment->mimetype) {
+ case 'image/gif':
+ case 'image/png':
+ case 'image/jpg':
+ case 'image/jpeg':
+ $thumb = (object)array();
+ $thumb->url = $this->attachment->url;
+ $thumb->width = 100;
+ $thumb->height = 75; // @fixme
+ return $thumb;
+ }
+ }
+ return false;
+ }
+
+ function sizeThumb($thumbnail) {
+ $maxWidth = 100;
+ $maxHeight = 75;
+ if ($thumbnail->width > $maxWidth) {
+ $thumb = clone($thumbnail);
+ $thumb->width = $maxWidth;
+ $thumb->height = intval($thumbnail->height * $maxWidth / $thumbnail->width);
+ return $thumb;
+ } else {
+ return $thumbnail;
}
}
}
}
+/**
+ * used for one-off attachment action
+ */
class Attachment extends AttachmentListItem
{
function showLink() {
return $scrubbed;
}
-
- function showFallback()
- {
- // If we don't know how to display an attachment inline, we probably
- // shouldn't have gotten to this point.
- //
- // But, here we are... displaying details on a file or remote URL
- // either on the main view or in an ajax-loaded lightbox. As a lesser
- // of several evils, we'll try redirecting to the actual target via
- // client-side JS.
-
- common_log(LOG_ERR, "Empty or unknown type for file id {$this->attachment->id}; falling back to client-side redirect.");
- $this->out->raw('<script>window.location = ' . json_encode($this->attachment->url) . ';</script>');
- }
}
$this->showStart();
if (Event::handle('StartShowNoticeItem', array($this))) {
$this->showNotice();
+ $this->showNoticeAttachments();
$this->showNoticeInfo();
$this->showNoticeOptions();
Event::handle('EndShowNoticeItem', array($this));
$this->out->elementEnd('p');
}
+ function showNoticeAttachments() {
+ $al = new AttachmentList($this->notice, $this->out);
+ $al->show();
+ }
+
/**
* show the link to the main page for the notice
*
-webkit-border-radius:4px;
}
-.notice div.entry-content {
+.notice div.entry-content,
+.notice dl.entry-content {
clear:left;
float:left;
font-size:0.95em;
.notice .attachment.more {
padding-left:0;
}
+/*
.notice .attachment img {
position:absolute;
top:18px;
#shownotice .notice .attachment img {
position:static;
}
+*/
-#attachments {
+
+/* Small inline attachment list */
+#attachments ol li {
+ list-style-type: none;
+}
+#attachments dt {
+ display: none;
+}
+
+#shownotice #attachments {
clear:both;
float:left;
width:100%;
margin-top:18px;
}
-#attachments dt {
+#shownotice #attachments dt {
font-weight:bold;
font-size:1.3em;
margin-bottom:4px;
}
-#attachments ol li {
+#shownotice #attachments ol li {
margin-bottom:18px;
list-style-type:decimal;
float:left;