more font size tweaks.
[citadel.git] / webcit / tiny_mce / plugins / preview / editor_plugin_src.js
index d0869c091f0c41cd1321d9d42018590b1fe0393f..80f00f0d9f67e89b7315ad1b9e445dd75bab4e48 100644 (file)
@@ -1,71 +1,53 @@
-/* Import plugin specific language pack */
-tinyMCE.importPluginLanguagePack('preview', 'cs,de,el,en,fr_ca,it,ko,pt,sv,zh_cn,fa,fr,pl,pt_br,nl,da,he,no,hu');
-
-function TinyMCE_preview_getInfo() {
-       return {
-               longname : 'Preview',
-               author : 'Moxiecode Systems',
-               authorurl : 'http://tinymce.moxiecode.com',
-               infourl : 'http://tinymce.moxiecode.com/tinymce/docs/plugin_preview.html',
-               version : tinyMCE.majorVersion + "." + tinyMCE.minorVersion
-       };
-};
-
-/**
- * Returns the HTML contents of the preview control.
- */
-function TinyMCE_preview_getControlHTML(control_name) {
-       switch (control_name) {
-               case "preview":
-                       return '<a href="javascript:tinyMCE.execInstanceCommand(\'{$editor_id}\',\'mcePreview\');" target="_self" onmousedown="return false;"><img id="{$editor_id}_preview" src="{$pluginurl}/images/preview.gif" title="{$lang_preview_desc}" width="20" height="20" class="mceButtonNormal" onmouseover="tinyMCE.switchClass(this,\'mceButtonOver\');" onmouseout="tinyMCE.restoreClass(this);" onmousedown="tinyMCE.restoreAndSwitchClass(this,\'mceButtonDown\');" /></a>';
-       }
-
-       return "";
-}
-
 /**
- * Executes the mcePreview command.
+ * editor_plugin_src.js
+ *
+ * Copyright 2009, Moxiecode Systems AB
+ * Released under LGPL License.
+ *
+ * License: http://tinymce.moxiecode.com/license
+ * Contributing: http://tinymce.moxiecode.com/contributing
  */
-function TinyMCE_preview_execCommand(editor_id, element, command, user_interface, value) {
-       // Handle commands
-       switch (command) {
-               case "mcePreview":
-                       var previewPage = tinyMCE.getParam("plugin_preview_pageurl", null);
-                       var previewWidth = tinyMCE.getParam("plugin_preview_width", "550");
-                       var previewHeight = tinyMCE.getParam("plugin_preview_height", "600");
-
-                       // Use a custom preview page
-                       if (previewPage) {
-                               var template = new Array();
-
-                               template['file'] = previewPage;
-                               template['width'] = previewWidth;
-                               template['height'] = previewHeight;
-
-                               tinyMCE.openWindow(template, {editor_id : editor_id, resizable : "yes", scrollbars : "yes", inline : "yes", content : tinyMCE.getContent(), content_css : tinyMCE.getParam("content_css")});
-                       } else {
-                               var win = window.open("", "mcePreview", "menubar=no,toolbar=no,scrollbars=yes,resizable=yes,left=20,top=20,width=" + previewWidth + ",height="  + previewHeight);
-                               var html = "";
-
-                               html += '<!doctype html public "-//w3c//dtd html 4.0 transitional//en">';
-                               html += '<html>';
-                               html += '<head>';
-                               html += '<title>' + tinyMCE.getLang('lang_preview_desc') + '</title>';
-                               html += '<base href="' + tinyMCE.getParam("document_base_url") + '">';
-                               html += '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">';
-                               html += '<link href="' + tinyMCE.getParam("content_css") + '" rel="stylesheet" type="text/css">';
-                               html += '</head>';
-                               html += '<body>';
-                               html += tinyMCE.getContent();
-                               html += '</body>';
-                               html += '</html>';
-
-                               win.document.write(html);
-                               win.document.close();
-                       }
-
-                       return true;
-       }
 
-       return false;
-}
+(function() {
+       tinymce.create('tinymce.plugins.Preview', {
+               init : function(ed, url) {
+                       var t = this, css = tinymce.explode(ed.settings.content_css);
+
+                       t.editor = ed;
+
+                       // Force absolute CSS urls      
+                       tinymce.each(css, function(u, k) {
+                               css[k] = ed.documentBaseURI.toAbsolute(u);
+                       });
+
+                       ed.addCommand('mcePreview', function() {
+                               ed.windowManager.open({
+                                       file : ed.getParam("plugin_preview_pageurl", url + "/preview.html"),
+                                       width : parseInt(ed.getParam("plugin_preview_width", "550")),
+                                       height : parseInt(ed.getParam("plugin_preview_height", "600")),
+                                       resizable : "yes",
+                                       scrollbars : "yes",
+                                       popup_css : css ? css.join(',') : ed.baseURI.toAbsolute("themes/" + ed.settings.theme + "/skins/" + ed.settings.skin + "/content.css"),
+                                       inline : ed.getParam("plugin_preview_inline", 1)
+                               }, {
+                                       base : ed.documentBaseURI.getURI()
+                               });
+                       });
+
+                       ed.addButton('preview', {title : 'preview.preview_desc', cmd : 'mcePreview'});
+               },
+
+               getInfo : function() {
+                       return {
+                               longname : 'Preview',
+                               author : 'Moxiecode Systems AB',
+                               authorurl : 'http://tinymce.moxiecode.com',
+                               infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/preview',
+                               version : tinymce.majorVersion + "." + tinymce.minorVersion
+                       };
+               }
+       });
+
+       // Register plugin
+       tinymce.PluginManager.add('preview', tinymce.plugins.Preview);
+})();
\ No newline at end of file