template.js
上传用户:dlqqsh
上传日期:2021-11-13
资源大小:7840k
文件大小:4k
源码类别:

OA系统

开发平台:

Java

  1. // Import external list url javascript
  2. var url = tinyMCE.getParam("template_external_list_url");
  3. if (url != null) {
  4. // Fix relative
  5. if (url.charAt(0) != '/' && url.indexOf('://') == -1)
  6. url = tinyMCE.documentBasePath + "/" + url;
  7. document.write('<sc'+'ript language="javascript" type="text/javascript" src="' + url + '"></sc'+'ript>');
  8. }
  9. var TPU = { //Template Popup Utils
  10. currentTemplateHTML : null,
  11. templates : [],
  12. inst : tinyMCE.getInstanceById(tinyMCE.getWindowArg('editor_id')),
  13. plugin : tinyMCE.getWindowArg('pluginObj'),
  14. data : tinyMCE.selectedInstance.getData('template'),
  15.   init : function() {
  16.   document.forms[0].insert.value = tinyMCE.getLang('lang_' + this.data.currentAction, 'Insert', true); 
  17. TPU.loadTemplatePaths();
  18. if (this.data.currentAction == "update")
  19. document.getElementById('warning').innerHTML = tinyMCE.getLang('lang_template_warning');
  20. this.resizeInputs();
  21. },
  22.   loadTemplatePaths : function() {
  23. var tsrc, sel, x, u;
  24.   tsrc = tinyMCE.getParam("template_templates", false);
  25.   sel = document.getElementById('tpath');
  26. // Setup external template list
  27. if (!tsrc && typeof(tinyMCETemplateList) != 'undefined') {
  28. for (x=0, tsrc = []; x<tinyMCETemplateList.length; x++)
  29. tsrc.push({title : tinyMCETemplateList[x][0], src : tinyMCETemplateList[x][1], description : tinyMCETemplateList[x][2]});
  30. }
  31. for (x=0; x<tsrc.length; x++) {
  32. u = tsrc[x].src;
  33. // Force absolute
  34. if (u.indexOf('://') == -1 && u.indexOf('/') != 0)
  35. u = tinyMCE.documentBasePath + "/" + u;
  36. tsrc[x].src = u;
  37. }
  38. TPU.templates = tsrc;
  39. for (x = 0; x < tsrc.length; x++)
  40. sel.options[sel.options.length] = new Option(tsrc[x].title, tsrc[x].src);
  41. },
  42.   selectTemplate : function(o) {
  43. var x, d = window.frames['templatesrc'].document;
  44. this.currentTemplateHTML = this.plugin._replaceValues(this.getFileContents(o.value));
  45. // Force complete document
  46. if (!/<body/gi.test(this.currentTemplateHTML)) {
  47. this.currentTemplateHTML = '<html xmlns="http://www.w3.org/1999/xhtml">' + 
  48. '<head>' + 
  49. '<title>blank_page</title>' + 
  50. '<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />' + 
  51. '</head>' + 
  52. '<body>' + 
  53. this.currentTemplateHTML + 
  54. '</body>' + 
  55. '</html>';
  56. }
  57. // Write HTML to preview iframe
  58. d.body.innerHTML = this.currentTemplateHTML;
  59. // Display description
  60.   for (x = 0; x < TPU.templates.length; x++) {
  61. if (TPU.templates[x].src == o.value) {
  62. document.getElementById('tmpldesc').innerHTML = TPU.templates[x].description;
  63. break;
  64. }
  65. }
  66.   },
  67.   insertTemplate : function() {
  68. var sel, opt;
  69. sel = document.getElementById('tpath');
  70. opt = sel.options[sel.selectedIndex];
  71. // Is it a template or snippet
  72. if (TPU.currentTemplateHTML.indexOf('mceTmpl'))
  73. tinyMCEPopup.execCommand('mceTemplate', false, {title : opt.text, tsrc : opt.value, body : TPU.currentTemplateHTML});
  74. else
  75. tinyMCEPopup.execCommand('mceInsertContent', false, TPU.currentTemplateHTML);
  76. tinyMCEPopup.close();
  77. },
  78. getFileContents : function(u) {
  79. var x, d, t = 'text/plain';
  80. function g(s) {
  81. x = 0;
  82. try {
  83. x = new ActiveXObject(s);
  84. } catch (s) {
  85. }
  86. return x;
  87. };
  88. x = window.ActiveXObject ? g('Msxml2.XMLHTTP') || g('Microsoft.XMLHTTP') : new XMLHttpRequest();
  89. // Synchronous AJAX load file
  90. x.overrideMimeType && x.overrideMimeType(t);
  91. x.open("GET", u, false);
  92. x.send(null);
  93. return x.responseText;
  94. },
  95. resizeInputs : function() {
  96. var wHeight, wWidth, elm;
  97. if (!self.innerWidth) {
  98. wHeight = document.body.clientHeight - 160;
  99. wWidth = document.body.clientWidth - 40;
  100. } else {
  101. wHeight = self.innerHeight - 160;
  102. wWidth = self.innerWidth - 40;
  103. }
  104. elm = document.getElementById('templatesrc');
  105. if (elm) {
  106. elm.style.height = Math.abs(wHeight) + 'px';
  107. elm.style.width  = Math.abs(wWidth - 5) + 'px';
  108. }
  109. }
  110. };