kitsune 0.1.0 → 0.1.1

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