work in progress: prettier attachment mode for tinymce?
This commit is contained in:
parent
3c28464dab
commit
6ee3f35302
@ -169,7 +169,10 @@ class NewnoticeAction extends Action
|
|||||||
|
|
||||||
if (isset($upload)) {
|
if (isset($upload)) {
|
||||||
|
|
||||||
|
if (Event::handle('StartSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options))) {
|
||||||
$content_shortened .= ' ' . $upload->shortUrl();
|
$content_shortened .= ' ' . $upload->shortUrl();
|
||||||
|
}
|
||||||
|
Event::handle('EndSaveNewNoticeAppendAttachment', array($this, $upload, &$content_shortened, &$options));
|
||||||
|
|
||||||
if (Notice::contentTooLong($content_shortened)) {
|
if (Notice::contentTooLong($content_shortened)) {
|
||||||
$upload->delete();
|
$upload->delete();
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* StatusNet - the distributed open-source microblogging tool
|
* StatusNet - the distributed open-source microblogging tool
|
||||||
* Copyright (C) 2010, StatusNet, Inc.
|
* Copyright (C) 2010, StatusNet, Inc.
|
||||||
@ -27,7 +28,6 @@
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined('STATUSNET')) {
|
if (!defined('STATUSNET')) {
|
||||||
// This check helps protect against security problems;
|
// This check helps protect against security problems;
|
||||||
// your code file can't be executed directly from the web.
|
// your code file can't be executed directly from the web.
|
||||||
@ -46,14 +46,14 @@ if (!defined('STATUSNET')) {
|
|||||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||||
* @link http://status.net/
|
* @link http://status.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
class TinyMCEPlugin extends Plugin
|
class TinyMCEPlugin extends Plugin
|
||||||
{
|
{
|
||||||
|
|
||||||
var $html;
|
var $html;
|
||||||
|
|
||||||
function onEndShowScripts($action)
|
function onEndShowScripts($action)
|
||||||
{
|
{
|
||||||
if (common_logged_in()) {
|
if (common_logged_in ()) {
|
||||||
$action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js'));
|
$action->script(common_path('plugins/TinyMCE/js/jquery.tinymce.js'));
|
||||||
$action->inlineScript($this->_inlineScript());
|
$action->inlineScript($this->_inlineScript());
|
||||||
}
|
}
|
||||||
@ -86,7 +86,7 @@ class TinyMCEPlugin extends Plugin
|
|||||||
*/
|
*/
|
||||||
private function sanitizeHtml($raw)
|
private function sanitizeHtml($raw)
|
||||||
{
|
{
|
||||||
require_once INSTALLDIR.'/extlib/htmLawed/htmLawed.php';
|
require_once INSTALLDIR . '/extlib/htmLawed/htmLawed.php';
|
||||||
|
|
||||||
$config = array('safe' => 1,
|
$config = array('safe' => 1,
|
||||||
'deny_attribute' => 'id,style,on*');
|
'deny_attribute' => 'id,style,on*');
|
||||||
@ -125,6 +125,75 @@ class TinyMCEPlugin extends Plugin
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Hook for new-notice form processing to process file upload appending...
|
||||||
|
*
|
||||||
|
* @param NewNoticeAction $action
|
||||||
|
* @param MediaFile $media
|
||||||
|
* @param string $content
|
||||||
|
* @param array $options
|
||||||
|
* @return boolean hook return
|
||||||
|
*/
|
||||||
|
function onStartSaveNewNoticeAppendAttachment($action, $media, &$content, &$options)
|
||||||
|
{
|
||||||
|
if ($action->arg('richedit')) {
|
||||||
|
// See if we've got a placeholder inline image; if so, fill it!
|
||||||
|
$dom = new DOMDocument();
|
||||||
|
common_log(LOG_INFO, 'QQQQQQQQQQQQQQQQQQQQQQQQ');
|
||||||
|
if ($dom->loadHTML($options['rendered'])) {
|
||||||
|
$imgs = $dom->getElementsByTagName('img');
|
||||||
|
foreach ($imgs as $img) {
|
||||||
|
common_log(LOG_INFO, 'img: ' . var_export($img, true));
|
||||||
|
if (preg_match('/(^| )placeholder( |$)/', $img->getAttribute('class'))) {
|
||||||
|
common_log(LOG_INFO, 'QQQQQQ: img src: ' . $media->fileRecord->url);
|
||||||
|
$img->setAttribute('src', $media->fileRecord->url);
|
||||||
|
$holderWidth = intval($img->getAttribute('width'));
|
||||||
|
$holderHeight = intval($img->getAttribute('height'));
|
||||||
|
$holderAspect = $holderWidth / $holderHeight;
|
||||||
|
|
||||||
|
$path = File::path($media->filename);
|
||||||
|
$imgInfo = getimagesize($path);
|
||||||
|
common_log(LOG_INFO, 'QQQQQQ: ' . $path . ' : ' . var_export($imgInfo, true));
|
||||||
|
|
||||||
|
$origWidth = $imgInfo[0];
|
||||||
|
$origHeight = $imgInfo[1];
|
||||||
|
$origAspect = $origWidth / $origHeight;
|
||||||
|
if ($origAspect >= 1.0) {
|
||||||
|
// wide image
|
||||||
|
if ($origWidth > $holderWidth) {
|
||||||
|
$width = $holderWidth;
|
||||||
|
$height = intval($holderWidth / $origAspect);
|
||||||
|
} else {
|
||||||
|
$width = $origWidth;
|
||||||
|
$height = $origHeight;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if ($origHeight > $holderHeight) {
|
||||||
|
$height = $holderHeight;
|
||||||
|
$width = ($holderWidth * $origAspect);
|
||||||
|
} else {
|
||||||
|
$width = $origWidth;
|
||||||
|
$height = $origHeight;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$img->setAttribute('width', $width);
|
||||||
|
$img->setAttribute('height', $height);
|
||||||
|
|
||||||
|
common_log(LOG_INFO, 'QQQQQ: ' . $width . ' ' . $height);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$html = $dom->saveHTML();
|
||||||
|
common_log(LOG_INFO, 'QQQQQQ: out: ' . $html);
|
||||||
|
$options['rendered'] = $html;
|
||||||
|
}
|
||||||
|
|
||||||
|
// The regular code will append the short URL to the plaintext content.
|
||||||
|
// Carry on and let it through...
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
function _inlineScript()
|
function _inlineScript()
|
||||||
{
|
{
|
||||||
$path = common_path('plugins/TinyMCE/js/tiny_mce.js');
|
$path = common_path('plugins/TinyMCE/js/tiny_mce.js');
|
||||||
@ -153,10 +222,24 @@ class TinyMCEPlugin extends Plugin
|
|||||||
tinymce.triggerSave();
|
tinymce.triggerSave();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
$('#'+SN.C.S.NoticeDataAttach).change(function() {
|
||||||
|
/*
|
||||||
|
S = '<div id="'+SN.C.S.NoticeDataAttachSelected+'" class="'+SN.C.S.Success+'"><code>'+$(this).val()+'</code> <button class="close">×</button></div>';
|
||||||
|
NDAS = $('#'+SN.C.S.NoticeDataAttachSelected);
|
||||||
|
if (NDAS.length > 0) {
|
||||||
|
NDAS.replaceWith(S);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
//alert('yay');
|
||||||
|
var img = '<img src="about:blank?placeholder" class="placeholder" width="320" height="240">';
|
||||||
|
var html = tinyMCE.activeEditor.getContent();
|
||||||
|
tinyMCE.activeEditor.setContent(html + img);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
END_OF_SCRIPT;
|
END_OF_SCRIPT;
|
||||||
|
|
||||||
return $scr;
|
return $scr;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user