forked from GNUsocial/gnu-social
Updated 'more' anchor for attachments to do an XHR GET
Conflicts: lib/attachmentlist.php plugins/OStatus/classes/Ostatus_profile.php Merge tried to delete things that it seems it shouldn't, very confusing order. Hope rest of the cherry-picking isn't a problem.
This commit is contained in:
parent
7fc8b6af4a
commit
c11064a539
108
js/util.js
108
js/util.js
@ -399,58 +399,70 @@ var SN = { // StatusNet
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$.fn.jOverlay.options = {
|
var attachment_more = notice.find('.attachment.more');
|
||||||
method : 'GET',
|
if (attachment_more.length > 0) {
|
||||||
data : '',
|
attachment_more.click(function() {
|
||||||
url : '',
|
$.get($(this).attr('href')+'/ajax', null, function(data) {
|
||||||
color : '#000',
|
notice.find('.entry-title .entry-content').html($(data).find('#attachment_view .entry-content').html());
|
||||||
opacity : '0.6',
|
});
|
||||||
zIndex : 9999,
|
|
||||||
center : false,
|
|
||||||
imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
|
|
||||||
bgClickToClose : true,
|
|
||||||
success : function() {
|
|
||||||
$('#jOverlayContent').append('<button class="close">×</button>');
|
|
||||||
$('#jOverlayContent button').click($.closeOverlay);
|
|
||||||
},
|
|
||||||
timeout : 0,
|
|
||||||
autoHide : true,
|
|
||||||
css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
|
|
||||||
};
|
|
||||||
|
|
||||||
notice.find('a.attachment').click(function() {
|
|
||||||
var attachId = ($(this).attr('id').substring('attachment'.length + 1));
|
|
||||||
if (attachId) {
|
|
||||||
$().jOverlay({url: $('address .url')[0].href+'attachment/' + attachId + '/ajax'});
|
|
||||||
return false;
|
return false;
|
||||||
}
|
});
|
||||||
});
|
}
|
||||||
|
else {
|
||||||
if ($('#shownotice').length == 0) {
|
$.fn.jOverlay.options = {
|
||||||
var t;
|
method : 'GET',
|
||||||
notice.find('a.thumbnail').hover(
|
data : '',
|
||||||
function() {
|
url : '',
|
||||||
var anchor = $(this);
|
color : '#000',
|
||||||
$('a.thumbnail').children('img').hide();
|
opacity : '0.6',
|
||||||
anchor.closest(".entry-title").addClass('ov');
|
zIndex : 9999,
|
||||||
|
center : false,
|
||||||
if (anchor.children('img').length === 0) {
|
imgLoading : $('address .url')[0].href+'theme/base/images/illustrations/illu_progress_loading-01.gif',
|
||||||
t = setTimeout(function() {
|
bgClickToClose : true,
|
||||||
$.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
|
success : function() {
|
||||||
anchor.append(data);
|
$('#jOverlayContent').append('<button class="close">×</button>');
|
||||||
});
|
$('#jOverlayContent button').click($.closeOverlay);
|
||||||
}, 500);
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
anchor.children('img').show();
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
function() {
|
timeout : 0,
|
||||||
clearTimeout(t);
|
autoHide : true,
|
||||||
$('a.thumbnail').children('img').hide();
|
css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
|
||||||
$(this).closest('.entry-title').removeClass('ov');
|
};
|
||||||
|
|
||||||
|
notice.find('a.attachment').click(function() {
|
||||||
|
var attachId = ($(this).attr('id').substring('attachment'.length + 1));
|
||||||
|
if (attachId) {
|
||||||
|
$().jOverlay({url: $('address .url')[0].href+'attachment/' + attachId + '/ajax'});
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
);
|
});
|
||||||
|
|
||||||
|
if ($('#shownotice').length == 0) {
|
||||||
|
var t;
|
||||||
|
notice.find('a.thumbnail').hover(
|
||||||
|
function() {
|
||||||
|
var anchor = $(this);
|
||||||
|
$('a.thumbnail').children('img').hide();
|
||||||
|
anchor.closest(".entry-title").addClass('ov');
|
||||||
|
|
||||||
|
if (anchor.children('img').length === 0) {
|
||||||
|
t = setTimeout(function() {
|
||||||
|
$.get($('address .url')[0].href+'attachment/' + (anchor.attr('id').substring('attachment'.length + 1)) + '/thumbnail', null, function(data) {
|
||||||
|
anchor.append(data);
|
||||||
|
});
|
||||||
|
}, 500);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
anchor.children('img').show();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
function() {
|
||||||
|
clearTimeout(t);
|
||||||
|
$('a.thumbnail').children('img').hide();
|
||||||
|
$(this).closest('.entry-title').removeClass('ov');
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -359,6 +359,59 @@ class Attachment extends AttachmentListItem
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected function showHtmlFile(File $attachment)
|
||||||
|
{
|
||||||
|
$body = $this->scrubHtmlFile($attachment);
|
||||||
|
if ($body) {
|
||||||
|
$this->out->raw($body);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return mixed false on failure, HTML fragment string on success
|
||||||
|
*/
|
||||||
|
protected function scrubHtmlFile(File $attachment)
|
||||||
|
{
|
||||||
|
$path = File::path($attachment->filename);
|
||||||
|
if (!file_exists($path) || !is_readable($path)) {
|
||||||
|
common_log(LOG_ERR, "Missing local HTML attachment $path");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$raw = file_get_contents($path);
|
||||||
|
|
||||||
|
// Normalize...
|
||||||
|
$dom = new DOMDocument();
|
||||||
|
if(!$dom->loadHTML($raw)) {
|
||||||
|
common_log(LOG_ERR, "Bad HTML in local HTML attachment $path");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Remove <script>s or htmlawed will dump their contents into output!
|
||||||
|
// Note: removing child nodes while iterating seems to mess things up,
|
||||||
|
// hence the double loop.
|
||||||
|
$scripts = array();
|
||||||
|
foreach ($dom->getElementsByTagName('script') as $script) {
|
||||||
|
$scripts[] = $script;
|
||||||
|
}
|
||||||
|
foreach ($scripts as $script) {
|
||||||
|
common_log(LOG_DEBUG, $script->textContent);
|
||||||
|
$script->parentNode->removeChild($script);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Trim out everything outside the body...
|
||||||
|
$body = $dom->saveHTML();
|
||||||
|
$body = preg_replace('/^.*<body[^>]*>/is', '', $body);
|
||||||
|
$body = preg_replace('/<\/body[^>]*>.*$/is', '', $body);
|
||||||
|
|
||||||
|
require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php';
|
||||||
|
$config = array('safe' => 1,
|
||||||
|
'deny_attribute' => 'id,style,on*',
|
||||||
|
'comment' => 1); // remove comments
|
||||||
|
$scrubbed = htmLawed($body, $config);
|
||||||
|
|
||||||
|
return $scrubbed;
|
||||||
|
}
|
||||||
|
|
||||||
function showFallback()
|
function showFallback()
|
||||||
{
|
{
|
||||||
// If we don't know how to display an attachment inline, we probably
|
// If we don't know how to display an attachment inline, we probably
|
||||||
|
@ -555,9 +555,21 @@ class Ostatus_profile extends Memcached_DataObject
|
|||||||
$shortSummary = substr($shortSummary,
|
$shortSummary = substr($shortSummary,
|
||||||
0,
|
0,
|
||||||
Notice::maxContent() - (mb_strlen($url) + 2));
|
Notice::maxContent() - (mb_strlen($url) + 2));
|
||||||
$shortSummary .= '… ' . $url;
|
$shortSummary .= '…';
|
||||||
$content = $shortSummary;
|
$content = $shortSummary . ' ' . $url;
|
||||||
$rendered = common_render_text($content);
|
|
||||||
|
// We mark up the attachment link specially for the HTML output
|
||||||
|
// so we can fold-out the full version inline.
|
||||||
|
$attachUrl = common_local_url('attachment',
|
||||||
|
array('attachment' => $attachment->id));
|
||||||
|
$rendered = common_render_text($shortSummary) .
|
||||||
|
' ' .
|
||||||
|
'<a href="' .
|
||||||
|
htmlspecialchars($attachUrl) .
|
||||||
|
'" class="attachment more">' .
|
||||||
|
// TRANS: expansion link for too-long remote messages
|
||||||
|
htmlspecialchars(_m('more')) .
|
||||||
|
'</a>';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1284,9 +1284,16 @@ height:16px;
|
|||||||
position:relative;
|
position:relative;
|
||||||
padding-left:16px;
|
padding-left:16px;
|
||||||
}
|
}
|
||||||
#attachments .attachment {
|
#attachments .attachment,
|
||||||
|
.notice .attachment.more {
|
||||||
padding-left:0;
|
padding-left:0;
|
||||||
}
|
}
|
||||||
|
.notice .attachment.more:before {
|
||||||
|
content:'( ';
|
||||||
|
}
|
||||||
|
.notice .attachment.more:after {
|
||||||
|
content:' )';
|
||||||
|
}
|
||||||
.notice .attachment img {
|
.notice .attachment img {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
top:18px;
|
top:18px;
|
||||||
|
@ -410,7 +410,8 @@ background-position: 0 -1714px;
|
|||||||
.notice .attachment {
|
.notice .attachment {
|
||||||
background-position:0 -394px;
|
background-position:0 -394px;
|
||||||
}
|
}
|
||||||
#attachments .attachment {
|
#attachments .attachment,
|
||||||
|
.notice .attachment.more {
|
||||||
background:none;
|
background:none;
|
||||||
}
|
}
|
||||||
.notice-options .notice_reply {
|
.notice-options .notice_reply {
|
||||||
|
@ -409,7 +409,8 @@ background-position: 0 -1714px;
|
|||||||
.notice .attachment {
|
.notice .attachment {
|
||||||
background-position:0 -394px;
|
background-position:0 -394px;
|
||||||
}
|
}
|
||||||
#attachments .attachment {
|
#attachments .attachment,
|
||||||
|
.notice .attachment.more {
|
||||||
background:none;
|
background:none;
|
||||||
}
|
}
|
||||||
.notice-options .notice_reply {
|
.notice-options .notice_reply {
|
||||||
|
Loading…
Reference in New Issue
Block a user