beef-admin_area 0.3.4 → 0.3.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (111) hide show
  1. data/VERSION +1 -1
  2. data/app/controllers/admin/users_controller.rb +16 -1
  3. data/app/views/admin/users/index.html.erb +27 -2
  4. data/beef-admin_area.gemspec +77 -6
  5. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/langs/en.js +170 -1
  6. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -1
  7. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/inlinepopups/editor_plugin_src.js +635 -0
  8. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif +0 -0
  9. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif +0 -0
  10. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/inlinepopups/skins/clearlooks2/window.css +90 -1
  11. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/editor_plugin.js +1 -1
  12. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/editor_plugin_src.js +952 -0
  13. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/js/pastetext.js +36 -1
  14. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/js/pasteword.js +51 -1
  15. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/langs/en_dlg.js +5 -1
  16. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/pastetext.htm +2 -8
  17. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/paste/pasteword.htm +2 -8
  18. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/css/template.css +23 -1
  19. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/editor_plugin.js +1 -1
  20. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/editor_plugin_src.js +159 -0
  21. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/js/template.js +106 -1
  22. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/langs/en_dlg.js +15 -1
  23. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/template/template.htm +2 -9
  24. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/wordcount/editor_plugin.js +1 -0
  25. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/plugins/wordcount/editor_plugin_src.js +98 -0
  26. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/about.htm +54 -0
  27. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/anchor.htm +2 -7
  28. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/charmap.htm +52 -0
  29. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/color_picker.htm +1 -3
  30. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/editor_template.js +1 -1
  31. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/editor_template_src.js +1217 -0
  32. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/image.htm +80 -0
  33. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/img/icons.gif +0 -0
  34. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/about.js +72 -0
  35. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/anchor.js +37 -1
  36. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/charmap.js +335 -0
  37. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/color_picker.js +253 -1
  38. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/image.js +245 -0
  39. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/js/link.js +156 -1
  40. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/langs/en.js +62 -1
  41. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/langs/en_dlg.js +51 -1
  42. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/link.htm +2 -7
  43. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/default/content.css +36 -1
  44. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/default/dialog.css +117 -1
  45. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/default/ui.css +213 -1
  46. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/content.css +36 -0
  47. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/dialog.css +116 -0
  48. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
  49. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
  50. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
  51. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/ui.css +215 -0
  52. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
  53. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
  54. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/themes/advanced/source_editor.htm +4 -10
  55. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/tiny_mce.js +1 -1
  56. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/tiny_mce_popup.js +5 -1
  57. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/utils/editable_selects.js +70 -0
  58. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/utils/form_utils.js +200 -1
  59. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/utils/mctabs.js +77 -1
  60. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce/utils/validate.js +220 -1
  61. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/langs/en.js +1 -0
  62. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/editor_plugin.js +1 -0
  63. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/img/button.gif +0 -0
  64. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif +0 -0
  65. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/img/corners.gif +0 -0
  66. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif +0 -0
  67. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif +0 -0
  68. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/skins/clearlooks2/window.css +1 -0
  69. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/inlinepopups/template.htm +387 -0
  70. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/editor_plugin.js +1 -0
  71. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/js/pastetext.js +1 -0
  72. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/js/pasteword.js +1 -0
  73. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/langs/en_dlg.js +1 -0
  74. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/pastetext.htm +33 -0
  75. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/paste/pasteword.htm +27 -0
  76. data/generators/admin_area_files/templates/public/javascripts/admin/{tiny_mce → tiny_mce.old}/plugins/safari/blank.htm +0 -0
  77. data/generators/admin_area_files/templates/public/javascripts/admin/{tiny_mce → tiny_mce.old}/plugins/safari/editor_plugin.js +0 -0
  78. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/blank.htm +12 -0
  79. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/css/template.css +1 -0
  80. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/editor_plugin.js +1 -0
  81. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/js/template.js +1 -0
  82. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/langs/en_dlg.js +1 -0
  83. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/plugins/template/template.htm +38 -0
  84. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/anchor.htm +31 -0
  85. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/color_picker.htm +75 -0
  86. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/editor_template.js +1 -0
  87. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/img/colorpicker.jpg +0 -0
  88. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/img/icons.gif +0 -0
  89. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/js/anchor.js +1 -0
  90. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/js/color_picker.js +1 -0
  91. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/js/link.js +1 -0
  92. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/js/source_editor.js +62 -0
  93. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/langs/en.js +1 -0
  94. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/langs/en_dlg.js +1 -0
  95. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/link.htm +63 -0
  96. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/content.css +1 -0
  97. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/dialog.css +1 -0
  98. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/buttons.png +0 -0
  99. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/items.gif +0 -0
  100. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
  101. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/menu_check.gif +0 -0
  102. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/progress.gif +0 -0
  103. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/img/tabs.gif +0 -0
  104. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/skins/default/ui.css +1 -0
  105. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/themes/advanced/source_editor.htm +31 -0
  106. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/tiny_mce.js +1 -0
  107. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/tiny_mce_popup.js +1 -0
  108. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/utils/form_utils.js +1 -0
  109. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/utils/mctabs.js +1 -0
  110. data/generators/admin_area_files/templates/public/javascripts/admin/tiny_mce.old/utils/validate.js +1 -0
  111. metadata +78 -7
@@ -0,0 +1,80 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
+ <html xmlns="http://www.w3.org/1999/xhtml">
3
+ <head>
4
+ <title>{#advanced_dlg.image_title}</title>
5
+ <script type="text/javascript" src="../../tiny_mce_popup.js"></script>
6
+ <script type="text/javascript" src="../../utils/mctabs.js"></script>
7
+ <script type="text/javascript" src="../../utils/form_utils.js"></script>
8
+ <script type="text/javascript" src="js/image.js"></script>
9
+ </head>
10
+ <body id="image" style="display: none">
11
+ <form onsubmit="ImageDialog.update();return false;" action="#">
12
+ <div class="tabs">
13
+ <ul>
14
+ <li id="general_tab" class="current"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advanced_dlg.image_title}</a></span></li>
15
+ </ul>
16
+ </div>
17
+
18
+ <div class="panel_wrapper">
19
+ <div id="general_panel" class="panel current">
20
+ <table border="0" cellpadding="4" cellspacing="0">
21
+ <tr>
22
+ <td class="nowrap"><label for="src">{#advanced_dlg.image_src}</label></td>
23
+ <td><table border="0" cellspacing="0" cellpadding="0">
24
+ <tr>
25
+ <td><input id="src" name="src" type="text" class="mceFocus" value="" style="width: 200px" onchange="ImageDialog.getImageData();" /></td>
26
+ <td id="srcbrowsercontainer">&nbsp;</td>
27
+ </tr>
28
+ </table></td>
29
+ </tr>
30
+ <tr>
31
+ <td><label for="image_list">{#advanced_dlg.image_list}</label></td>
32
+ <td><select id="image_list" name="image_list" onchange="document.getElementById('src').value=this.options[this.selectedIndex].value;document.getElementById('alt').value=this.options[this.selectedIndex].text;"></select></td>
33
+ </tr>
34
+ <tr>
35
+ <td class="nowrap"><label for="alt">{#advanced_dlg.image_alt}</label></td>
36
+ <td><input id="alt" name="alt" type="text" value="" style="width: 200px" /></td>
37
+ </tr>
38
+ <tr>
39
+ <td class="nowrap"><label for="align">{#advanced_dlg.image_align}</label></td>
40
+ <td><select id="align" name="align" onchange="ImageDialog.updateStyle();">
41
+ <option value="">{#not_set}</option>
42
+ <option value="baseline">{#advanced_dlg.image_align_baseline}</option>
43
+ <option value="top">{#advanced_dlg.image_align_top}</option>
44
+ <option value="middle">{#advanced_dlg.image_align_middle}</option>
45
+ <option value="bottom">{#advanced_dlg.image_align_bottom}</option>
46
+ <option value="text-top">{#advanced_dlg.image_align_texttop}</option>
47
+ <option value="text-bottom">{#advanced_dlg.image_align_textbottom}</option>
48
+ <option value="left">{#advanced_dlg.image_align_left}</option>
49
+ <option value="right">{#advanced_dlg.image_align_right}</option>
50
+ </select></td>
51
+ </tr>
52
+ <tr>
53
+ <td class="nowrap"><label for="width">{#advanced_dlg.image_dimensions}</label></td>
54
+ <td><input id="width" name="width" type="text" value="" size="3" maxlength="5" />
55
+ x
56
+ <input id="height" name="height" type="text" value="" size="3" maxlength="5" /></td>
57
+ </tr>
58
+ <tr>
59
+ <td class="nowrap"><label for="border">{#advanced_dlg.image_border}</label></td>
60
+ <td><input id="border" name="border" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
61
+ </tr>
62
+ <tr>
63
+ <td class="nowrap"><label for="vspace">{#advanced_dlg.image_vspace}</label></td>
64
+ <td><input id="vspace" name="vspace" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
65
+ </tr>
66
+ <tr>
67
+ <td class="nowrap"><label for="hspace">{#advanced_dlg.image_hspace}</label></td>
68
+ <td><input id="hspace" name="hspace" type="text" value="" size="3" maxlength="3" onchange="ImageDialog.updateStyle();" /></td>
69
+ </tr>
70
+ </table>
71
+ </div>
72
+ </div>
73
+
74
+ <div class="mceActionPanel">
75
+ <input type="submit" id="insert" name="insert" value="{#insert}" />
76
+ <input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
77
+ </div>
78
+ </form>
79
+ </body>
80
+ </html>
@@ -0,0 +1,72 @@
1
+ tinyMCEPopup.requireLangPack();
2
+
3
+ function init() {
4
+ var ed, tcont;
5
+
6
+ tinyMCEPopup.resizeToInnerSize();
7
+ ed = tinyMCEPopup.editor;
8
+
9
+ // Give FF some time
10
+ window.setTimeout(insertHelpIFrame, 10);
11
+
12
+ tcont = document.getElementById('plugintablecontainer');
13
+ document.getElementById('plugins_tab').style.display = 'none';
14
+
15
+ var html = "";
16
+ html += '<table id="plugintable">';
17
+ html += '<thead>';
18
+ html += '<tr>';
19
+ html += '<td>' + ed.getLang('advanced_dlg.about_plugin') + '</td>';
20
+ html += '<td>' + ed.getLang('advanced_dlg.about_author') + '</td>';
21
+ html += '<td>' + ed.getLang('advanced_dlg.about_version') + '</td>';
22
+ html += '</tr>';
23
+ html += '</thead>';
24
+ html += '<tbody>';
25
+
26
+ tinymce.each(ed.plugins, function(p, n) {
27
+ var info;
28
+
29
+ if (!p.getInfo)
30
+ return;
31
+
32
+ html += '<tr>';
33
+
34
+ info = p.getInfo();
35
+
36
+ if (info.infourl != null && info.infourl != '')
37
+ html += '<td width="50%" title="' + n + '"><a href="' + info.infourl + '" target="_blank">' + info.longname + '</a></td>';
38
+ else
39
+ html += '<td width="50%" title="' + n + '">' + info.longname + '</td>';
40
+
41
+ if (info.authorurl != null && info.authorurl != '')
42
+ html += '<td width="35%"><a href="' + info.authorurl + '" target="_blank">' + info.author + '</a></td>';
43
+ else
44
+ html += '<td width="35%">' + info.author + '</td>';
45
+
46
+ html += '<td width="15%">' + info.version + '</td>';
47
+ html += '</tr>';
48
+
49
+ document.getElementById('plugins_tab').style.display = '';
50
+
51
+ });
52
+
53
+ html += '</tbody>';
54
+ html += '</table>';
55
+
56
+ tcont.innerHTML = html;
57
+
58
+ tinyMCEPopup.dom.get('version').innerHTML = tinymce.majorVersion + "." + tinymce.minorVersion;
59
+ tinyMCEPopup.dom.get('date').innerHTML = tinymce.releaseDate;
60
+ }
61
+
62
+ function insertHelpIFrame() {
63
+ var html;
64
+
65
+ if (tinyMCEPopup.getParam('docs_url')) {
66
+ html = '<iframe width="100%" height="300" src="' + tinyMCEPopup.editor.baseURI.toAbsolute(tinyMCEPopup.getParam('docs_url')) + '"></iframe>';
67
+ document.getElementById('iframecontainer').innerHTML = html;
68
+ document.getElementById('help_tab').style.display = 'block';
69
+ }
70
+ }
71
+
72
+ tinyMCEPopup.onInit.add(init);
@@ -1 +1,37 @@
1
- tinyMCEPopup.requireLangPack();var AnchorDialog={init:function(a){var c,d,b=document.forms[0];this.editor=a;d=a.dom.getParent(a.selection.getNode(),"A,IMG");v=a.dom.getAttrib(d,"name");if(v){this.action="update";b.anchorName.value=v}b.insert.value=a.getLang(d?"update":"insert")},update:function(){var a=this.editor;tinyMCEPopup.restoreSelection();if(this.action!="update"){a.selection.collapse(1)}if(tinymce.isWebKit){a.execCommand("mceInsertContent",0,a.dom.createHTML("img",{mce_name:"a",name:document.forms[0].anchorName.value,"class":"mceItemAnchor"}))}else{a.execCommand("mceInsertContent",0,a.dom.createHTML("a",{name:document.forms[0].anchorName.value,"class":"mceItemAnchor"},""))}tinyMCEPopup.close()}};tinyMCEPopup.onInit.add(AnchorDialog.init,AnchorDialog);
1
+ tinyMCEPopup.requireLangPack();
2
+
3
+ var AnchorDialog = {
4
+ init : function(ed) {
5
+ var action, elm, f = document.forms[0];
6
+
7
+ this.editor = ed;
8
+ elm = ed.dom.getParent(ed.selection.getNode(), 'A');
9
+ v = ed.dom.getAttrib(elm, 'name');
10
+
11
+ if (v) {
12
+ this.action = 'update';
13
+ f.anchorName.value = v;
14
+ }
15
+
16
+ f.insert.value = ed.getLang(elm ? 'update' : 'insert');
17
+ },
18
+
19
+ update : function() {
20
+ var ed = this.editor, elm, name = document.forms[0].anchorName.value;
21
+
22
+ tinyMCEPopup.restoreSelection();
23
+
24
+ if (this.action != 'update')
25
+ ed.selection.collapse(1);
26
+
27
+ elm = ed.dom.getParent(ed.selection.getNode(), 'A');
28
+ if (elm)
29
+ elm.name = name;
30
+ else
31
+ ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, ''));
32
+
33
+ tinyMCEPopup.close();
34
+ }
35
+ };
36
+
37
+ tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
@@ -0,0 +1,335 @@
1
+ /**
2
+ * charmap.js
3
+ *
4
+ * Copyright 2009, Moxiecode Systems AB
5
+ * Released under LGPL License.
6
+ *
7
+ * License: http://tinymce.moxiecode.com/license
8
+ * Contributing: http://tinymce.moxiecode.com/contributing
9
+ */
10
+
11
+ tinyMCEPopup.requireLangPack();
12
+
13
+ var charmap = [
14
+ ['&nbsp;', '&#160;', true, 'no-break space'],
15
+ ['&amp;', '&#38;', true, 'ampersand'],
16
+ ['&quot;', '&#34;', true, 'quotation mark'],
17
+ // finance
18
+ ['&cent;', '&#162;', true, 'cent sign'],
19
+ ['&euro;', '&#8364;', true, 'euro sign'],
20
+ ['&pound;', '&#163;', true, 'pound sign'],
21
+ ['&yen;', '&#165;', true, 'yen sign'],
22
+ // signs
23
+ ['&copy;', '&#169;', true, 'copyright sign'],
24
+ ['&reg;', '&#174;', true, 'registered sign'],
25
+ ['&trade;', '&#8482;', true, 'trade mark sign'],
26
+ ['&permil;', '&#8240;', true, 'per mille sign'],
27
+ ['&micro;', '&#181;', true, 'micro sign'],
28
+ ['&middot;', '&#183;', true, 'middle dot'],
29
+ ['&bull;', '&#8226;', true, 'bullet'],
30
+ ['&hellip;', '&#8230;', true, 'three dot leader'],
31
+ ['&prime;', '&#8242;', true, 'minutes / feet'],
32
+ ['&Prime;', '&#8243;', true, 'seconds / inches'],
33
+ ['&sect;', '&#167;', true, 'section sign'],
34
+ ['&para;', '&#182;', true, 'paragraph sign'],
35
+ ['&szlig;', '&#223;', true, 'sharp s / ess-zed'],
36
+ // quotations
37
+ ['&lsaquo;', '&#8249;', true, 'single left-pointing angle quotation mark'],
38
+ ['&rsaquo;', '&#8250;', true, 'single right-pointing angle quotation mark'],
39
+ ['&laquo;', '&#171;', true, 'left pointing guillemet'],
40
+ ['&raquo;', '&#187;', true, 'right pointing guillemet'],
41
+ ['&lsquo;', '&#8216;', true, 'left single quotation mark'],
42
+ ['&rsquo;', '&#8217;', true, 'right single quotation mark'],
43
+ ['&ldquo;', '&#8220;', true, 'left double quotation mark'],
44
+ ['&rdquo;', '&#8221;', true, 'right double quotation mark'],
45
+ ['&sbquo;', '&#8218;', true, 'single low-9 quotation mark'],
46
+ ['&bdquo;', '&#8222;', true, 'double low-9 quotation mark'],
47
+ ['&lt;', '&#60;', true, 'less-than sign'],
48
+ ['&gt;', '&#62;', true, 'greater-than sign'],
49
+ ['&le;', '&#8804;', true, 'less-than or equal to'],
50
+ ['&ge;', '&#8805;', true, 'greater-than or equal to'],
51
+ ['&ndash;', '&#8211;', true, 'en dash'],
52
+ ['&mdash;', '&#8212;', true, 'em dash'],
53
+ ['&macr;', '&#175;', true, 'macron'],
54
+ ['&oline;', '&#8254;', true, 'overline'],
55
+ ['&curren;', '&#164;', true, 'currency sign'],
56
+ ['&brvbar;', '&#166;', true, 'broken bar'],
57
+ ['&uml;', '&#168;', true, 'diaeresis'],
58
+ ['&iexcl;', '&#161;', true, 'inverted exclamation mark'],
59
+ ['&iquest;', '&#191;', true, 'turned question mark'],
60
+ ['&circ;', '&#710;', true, 'circumflex accent'],
61
+ ['&tilde;', '&#732;', true, 'small tilde'],
62
+ ['&deg;', '&#176;', true, 'degree sign'],
63
+ ['&minus;', '&#8722;', true, 'minus sign'],
64
+ ['&plusmn;', '&#177;', true, 'plus-minus sign'],
65
+ ['&divide;', '&#247;', true, 'division sign'],
66
+ ['&frasl;', '&#8260;', true, 'fraction slash'],
67
+ ['&times;', '&#215;', true, 'multiplication sign'],
68
+ ['&sup1;', '&#185;', true, 'superscript one'],
69
+ ['&sup2;', '&#178;', true, 'superscript two'],
70
+ ['&sup3;', '&#179;', true, 'superscript three'],
71
+ ['&frac14;', '&#188;', true, 'fraction one quarter'],
72
+ ['&frac12;', '&#189;', true, 'fraction one half'],
73
+ ['&frac34;', '&#190;', true, 'fraction three quarters'],
74
+ // math / logical
75
+ ['&fnof;', '&#402;', true, 'function / florin'],
76
+ ['&int;', '&#8747;', true, 'integral'],
77
+ ['&sum;', '&#8721;', true, 'n-ary sumation'],
78
+ ['&infin;', '&#8734;', true, 'infinity'],
79
+ ['&radic;', '&#8730;', true, 'square root'],
80
+ ['&sim;', '&#8764;', false,'similar to'],
81
+ ['&cong;', '&#8773;', false,'approximately equal to'],
82
+ ['&asymp;', '&#8776;', true, 'almost equal to'],
83
+ ['&ne;', '&#8800;', true, 'not equal to'],
84
+ ['&equiv;', '&#8801;', true, 'identical to'],
85
+ ['&isin;', '&#8712;', false,'element of'],
86
+ ['&notin;', '&#8713;', false,'not an element of'],
87
+ ['&ni;', '&#8715;', false,'contains as member'],
88
+ ['&prod;', '&#8719;', true, 'n-ary product'],
89
+ ['&and;', '&#8743;', false,'logical and'],
90
+ ['&or;', '&#8744;', false,'logical or'],
91
+ ['&not;', '&#172;', true, 'not sign'],
92
+ ['&cap;', '&#8745;', true, 'intersection'],
93
+ ['&cup;', '&#8746;', false,'union'],
94
+ ['&part;', '&#8706;', true, 'partial differential'],
95
+ ['&forall;', '&#8704;', false,'for all'],
96
+ ['&exist;', '&#8707;', false,'there exists'],
97
+ ['&empty;', '&#8709;', false,'diameter'],
98
+ ['&nabla;', '&#8711;', false,'backward difference'],
99
+ ['&lowast;', '&#8727;', false,'asterisk operator'],
100
+ ['&prop;', '&#8733;', false,'proportional to'],
101
+ ['&ang;', '&#8736;', false,'angle'],
102
+ // undefined
103
+ ['&acute;', '&#180;', true, 'acute accent'],
104
+ ['&cedil;', '&#184;', true, 'cedilla'],
105
+ ['&ordf;', '&#170;', true, 'feminine ordinal indicator'],
106
+ ['&ordm;', '&#186;', true, 'masculine ordinal indicator'],
107
+ ['&dagger;', '&#8224;', true, 'dagger'],
108
+ ['&Dagger;', '&#8225;', true, 'double dagger'],
109
+ // alphabetical special chars
110
+ ['&Agrave;', '&#192;', true, 'A - grave'],
111
+ ['&Aacute;', '&#193;', true, 'A - acute'],
112
+ ['&Acirc;', '&#194;', true, 'A - circumflex'],
113
+ ['&Atilde;', '&#195;', true, 'A - tilde'],
114
+ ['&Auml;', '&#196;', true, 'A - diaeresis'],
115
+ ['&Aring;', '&#197;', true, 'A - ring above'],
116
+ ['&AElig;', '&#198;', true, 'ligature AE'],
117
+ ['&Ccedil;', '&#199;', true, 'C - cedilla'],
118
+ ['&Egrave;', '&#200;', true, 'E - grave'],
119
+ ['&Eacute;', '&#201;', true, 'E - acute'],
120
+ ['&Ecirc;', '&#202;', true, 'E - circumflex'],
121
+ ['&Euml;', '&#203;', true, 'E - diaeresis'],
122
+ ['&Igrave;', '&#204;', true, 'I - grave'],
123
+ ['&Iacute;', '&#205;', true, 'I - acute'],
124
+ ['&Icirc;', '&#206;', true, 'I - circumflex'],
125
+ ['&Iuml;', '&#207;', true, 'I - diaeresis'],
126
+ ['&ETH;', '&#208;', true, 'ETH'],
127
+ ['&Ntilde;', '&#209;', true, 'N - tilde'],
128
+ ['&Ograve;', '&#210;', true, 'O - grave'],
129
+ ['&Oacute;', '&#211;', true, 'O - acute'],
130
+ ['&Ocirc;', '&#212;', true, 'O - circumflex'],
131
+ ['&Otilde;', '&#213;', true, 'O - tilde'],
132
+ ['&Ouml;', '&#214;', true, 'O - diaeresis'],
133
+ ['&Oslash;', '&#216;', true, 'O - slash'],
134
+ ['&OElig;', '&#338;', true, 'ligature OE'],
135
+ ['&Scaron;', '&#352;', true, 'S - caron'],
136
+ ['&Ugrave;', '&#217;', true, 'U - grave'],
137
+ ['&Uacute;', '&#218;', true, 'U - acute'],
138
+ ['&Ucirc;', '&#219;', true, 'U - circumflex'],
139
+ ['&Uuml;', '&#220;', true, 'U - diaeresis'],
140
+ ['&Yacute;', '&#221;', true, 'Y - acute'],
141
+ ['&Yuml;', '&#376;', true, 'Y - diaeresis'],
142
+ ['&THORN;', '&#222;', true, 'THORN'],
143
+ ['&agrave;', '&#224;', true, 'a - grave'],
144
+ ['&aacute;', '&#225;', true, 'a - acute'],
145
+ ['&acirc;', '&#226;', true, 'a - circumflex'],
146
+ ['&atilde;', '&#227;', true, 'a - tilde'],
147
+ ['&auml;', '&#228;', true, 'a - diaeresis'],
148
+ ['&aring;', '&#229;', true, 'a - ring above'],
149
+ ['&aelig;', '&#230;', true, 'ligature ae'],
150
+ ['&ccedil;', '&#231;', true, 'c - cedilla'],
151
+ ['&egrave;', '&#232;', true, 'e - grave'],
152
+ ['&eacute;', '&#233;', true, 'e - acute'],
153
+ ['&ecirc;', '&#234;', true, 'e - circumflex'],
154
+ ['&euml;', '&#235;', true, 'e - diaeresis'],
155
+ ['&igrave;', '&#236;', true, 'i - grave'],
156
+ ['&iacute;', '&#237;', true, 'i - acute'],
157
+ ['&icirc;', '&#238;', true, 'i - circumflex'],
158
+ ['&iuml;', '&#239;', true, 'i - diaeresis'],
159
+ ['&eth;', '&#240;', true, 'eth'],
160
+ ['&ntilde;', '&#241;', true, 'n - tilde'],
161
+ ['&ograve;', '&#242;', true, 'o - grave'],
162
+ ['&oacute;', '&#243;', true, 'o - acute'],
163
+ ['&ocirc;', '&#244;', true, 'o - circumflex'],
164
+ ['&otilde;', '&#245;', true, 'o - tilde'],
165
+ ['&ouml;', '&#246;', true, 'o - diaeresis'],
166
+ ['&oslash;', '&#248;', true, 'o slash'],
167
+ ['&oelig;', '&#339;', true, 'ligature oe'],
168
+ ['&scaron;', '&#353;', true, 's - caron'],
169
+ ['&ugrave;', '&#249;', true, 'u - grave'],
170
+ ['&uacute;', '&#250;', true, 'u - acute'],
171
+ ['&ucirc;', '&#251;', true, 'u - circumflex'],
172
+ ['&uuml;', '&#252;', true, 'u - diaeresis'],
173
+ ['&yacute;', '&#253;', true, 'y - acute'],
174
+ ['&thorn;', '&#254;', true, 'thorn'],
175
+ ['&yuml;', '&#255;', true, 'y - diaeresis'],
176
+ ['&Alpha;', '&#913;', true, 'Alpha'],
177
+ ['&Beta;', '&#914;', true, 'Beta'],
178
+ ['&Gamma;', '&#915;', true, 'Gamma'],
179
+ ['&Delta;', '&#916;', true, 'Delta'],
180
+ ['&Epsilon;', '&#917;', true, 'Epsilon'],
181
+ ['&Zeta;', '&#918;', true, 'Zeta'],
182
+ ['&Eta;', '&#919;', true, 'Eta'],
183
+ ['&Theta;', '&#920;', true, 'Theta'],
184
+ ['&Iota;', '&#921;', true, 'Iota'],
185
+ ['&Kappa;', '&#922;', true, 'Kappa'],
186
+ ['&Lambda;', '&#923;', true, 'Lambda'],
187
+ ['&Mu;', '&#924;', true, 'Mu'],
188
+ ['&Nu;', '&#925;', true, 'Nu'],
189
+ ['&Xi;', '&#926;', true, 'Xi'],
190
+ ['&Omicron;', '&#927;', true, 'Omicron'],
191
+ ['&Pi;', '&#928;', true, 'Pi'],
192
+ ['&Rho;', '&#929;', true, 'Rho'],
193
+ ['&Sigma;', '&#931;', true, 'Sigma'],
194
+ ['&Tau;', '&#932;', true, 'Tau'],
195
+ ['&Upsilon;', '&#933;', true, 'Upsilon'],
196
+ ['&Phi;', '&#934;', true, 'Phi'],
197
+ ['&Chi;', '&#935;', true, 'Chi'],
198
+ ['&Psi;', '&#936;', true, 'Psi'],
199
+ ['&Omega;', '&#937;', true, 'Omega'],
200
+ ['&alpha;', '&#945;', true, 'alpha'],
201
+ ['&beta;', '&#946;', true, 'beta'],
202
+ ['&gamma;', '&#947;', true, 'gamma'],
203
+ ['&delta;', '&#948;', true, 'delta'],
204
+ ['&epsilon;', '&#949;', true, 'epsilon'],
205
+ ['&zeta;', '&#950;', true, 'zeta'],
206
+ ['&eta;', '&#951;', true, 'eta'],
207
+ ['&theta;', '&#952;', true, 'theta'],
208
+ ['&iota;', '&#953;', true, 'iota'],
209
+ ['&kappa;', '&#954;', true, 'kappa'],
210
+ ['&lambda;', '&#955;', true, 'lambda'],
211
+ ['&mu;', '&#956;', true, 'mu'],
212
+ ['&nu;', '&#957;', true, 'nu'],
213
+ ['&xi;', '&#958;', true, 'xi'],
214
+ ['&omicron;', '&#959;', true, 'omicron'],
215
+ ['&pi;', '&#960;', true, 'pi'],
216
+ ['&rho;', '&#961;', true, 'rho'],
217
+ ['&sigmaf;', '&#962;', true, 'final sigma'],
218
+ ['&sigma;', '&#963;', true, 'sigma'],
219
+ ['&tau;', '&#964;', true, 'tau'],
220
+ ['&upsilon;', '&#965;', true, 'upsilon'],
221
+ ['&phi;', '&#966;', true, 'phi'],
222
+ ['&chi;', '&#967;', true, 'chi'],
223
+ ['&psi;', '&#968;', true, 'psi'],
224
+ ['&omega;', '&#969;', true, 'omega'],
225
+ // symbols
226
+ ['&alefsym;', '&#8501;', false,'alef symbol'],
227
+ ['&piv;', '&#982;', false,'pi symbol'],
228
+ ['&real;', '&#8476;', false,'real part symbol'],
229
+ ['&thetasym;','&#977;', false,'theta symbol'],
230
+ ['&upsih;', '&#978;', false,'upsilon - hook symbol'],
231
+ ['&weierp;', '&#8472;', false,'Weierstrass p'],
232
+ ['&image;', '&#8465;', false,'imaginary part'],
233
+ // arrows
234
+ ['&larr;', '&#8592;', true, 'leftwards arrow'],
235
+ ['&uarr;', '&#8593;', true, 'upwards arrow'],
236
+ ['&rarr;', '&#8594;', true, 'rightwards arrow'],
237
+ ['&darr;', '&#8595;', true, 'downwards arrow'],
238
+ ['&harr;', '&#8596;', true, 'left right arrow'],
239
+ ['&crarr;', '&#8629;', false,'carriage return'],
240
+ ['&lArr;', '&#8656;', false,'leftwards double arrow'],
241
+ ['&uArr;', '&#8657;', false,'upwards double arrow'],
242
+ ['&rArr;', '&#8658;', false,'rightwards double arrow'],
243
+ ['&dArr;', '&#8659;', false,'downwards double arrow'],
244
+ ['&hArr;', '&#8660;', false,'left right double arrow'],
245
+ ['&there4;', '&#8756;', false,'therefore'],
246
+ ['&sub;', '&#8834;', false,'subset of'],
247
+ ['&sup;', '&#8835;', false,'superset of'],
248
+ ['&nsub;', '&#8836;', false,'not a subset of'],
249
+ ['&sube;', '&#8838;', false,'subset of or equal to'],
250
+ ['&supe;', '&#8839;', false,'superset of or equal to'],
251
+ ['&oplus;', '&#8853;', false,'circled plus'],
252
+ ['&otimes;', '&#8855;', false,'circled times'],
253
+ ['&perp;', '&#8869;', false,'perpendicular'],
254
+ ['&sdot;', '&#8901;', false,'dot operator'],
255
+ ['&lceil;', '&#8968;', false,'left ceiling'],
256
+ ['&rceil;', '&#8969;', false,'right ceiling'],
257
+ ['&lfloor;', '&#8970;', false,'left floor'],
258
+ ['&rfloor;', '&#8971;', false,'right floor'],
259
+ ['&lang;', '&#9001;', false,'left-pointing angle bracket'],
260
+ ['&rang;', '&#9002;', false,'right-pointing angle bracket'],
261
+ ['&loz;', '&#9674;', true,'lozenge'],
262
+ ['&spades;', '&#9824;', false,'black spade suit'],
263
+ ['&clubs;', '&#9827;', true, 'black club suit'],
264
+ ['&hearts;', '&#9829;', true, 'black heart suit'],
265
+ ['&diams;', '&#9830;', true, 'black diamond suit'],
266
+ ['&ensp;', '&#8194;', false,'en space'],
267
+ ['&emsp;', '&#8195;', false,'em space'],
268
+ ['&thinsp;', '&#8201;', false,'thin space'],
269
+ ['&zwnj;', '&#8204;', false,'zero width non-joiner'],
270
+ ['&zwj;', '&#8205;', false,'zero width joiner'],
271
+ ['&lrm;', '&#8206;', false,'left-to-right mark'],
272
+ ['&rlm;', '&#8207;', false,'right-to-left mark'],
273
+ ['&shy;', '&#173;', false,'soft hyphen']
274
+ ];
275
+
276
+ tinyMCEPopup.onInit.add(function() {
277
+ tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML());
278
+ });
279
+
280
+ function renderCharMapHTML() {
281
+ var charsPerRow = 20, tdWidth=20, tdHeight=20, i;
282
+ var html = '<table border="0" cellspacing="1" cellpadding="0" width="' + (tdWidth*charsPerRow) + '"><tr height="' + tdHeight + '">';
283
+ var cols=-1;
284
+
285
+ for (i=0; i<charmap.length; i++) {
286
+ if (charmap[i][2]==true) {
287
+ cols++;
288
+ html += ''
289
+ + '<td class="charmap">'
290
+ + '<a onmouseover="previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');" onfocus="previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');" href="javascript:void(0)" onclick="insertChar(\'' + charmap[i][1].substring(2,charmap[i][1].length-1) + '\');" onclick="return false;" onmousedown="return false;" title="' + charmap[i][3] + '">'
291
+ + charmap[i][1]
292
+ + '</a></td>';
293
+ if ((cols+1) % charsPerRow == 0)
294
+ html += '</tr><tr height="' + tdHeight + '">';
295
+ }
296
+ }
297
+
298
+ if (cols % charsPerRow > 0) {
299
+ var padd = charsPerRow - (cols % charsPerRow);
300
+ for (var i=0; i<padd-1; i++)
301
+ html += '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap">&nbsp;</td>';
302
+ }
303
+
304
+ html += '</tr></table>';
305
+
306
+ return html;
307
+ }
308
+
309
+ function insertChar(chr) {
310
+ tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';');
311
+
312
+ // Refocus in window
313
+ if (tinyMCEPopup.isWindow)
314
+ window.focus();
315
+
316
+ tinyMCEPopup.editor.focus();
317
+ tinyMCEPopup.close();
318
+ }
319
+
320
+ function previewChar(codeA, codeB, codeN) {
321
+ var elmA = document.getElementById('codeA');
322
+ var elmB = document.getElementById('codeB');
323
+ var elmV = document.getElementById('codeV');
324
+ var elmN = document.getElementById('codeN');
325
+
326
+ if (codeA=='#160;') {
327
+ elmV.innerHTML = '__';
328
+ } else {
329
+ elmV.innerHTML = '&' + codeA;
330
+ }
331
+
332
+ elmB.innerHTML = '&amp;' + codeA;
333
+ elmA.innerHTML = '&amp;' + codeB;
334
+ elmN.innerHTML = codeN;
335
+ }