lolita 3.2.0.rc.17 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +22 -17
- data/Rakefile +3 -0
- data/app/assets/javascripts/lolita/list.js +2 -2
- data/app/assets/javascripts/lolita/main.js +2 -2
- data/app/assets/javascripts/lolita/tab.js +7 -7
- data/app/assets/stylesheets/lolita/PIE-custom.htc +87 -87
- data/app/assets/stylesheets/lolita/PIE.htc +81 -81
- data/app/assets/stylesheets/lolita/application.css +6 -6
- data/app/assets/stylesheets/lolita/default.css.erb +169 -169
- data/app/assets/stylesheets/lolita/jquery-ui-1.8.16.lolita.css.erb +567 -567
- data/app/assets/stylesheets/lolita/style.css.erb +4 -1
- data/app/helpers/components/lolita/configuration/list_component.rb +10 -10
- data/app/views/components/lolita/configuration/column/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_first.html.haml +1 -1
- data/app/views/components/lolita/configuration/column/header/_sort.html.haml +6 -6
- data/app/views/components/lolita/configuration/columns/header/_display.html.haml +5 -5
- data/app/views/components/lolita/configuration/field/array/checkbox/_display.html.haml +7 -7
- data/app/views/components/lolita/configuration/filter/_display.html.haml +2 -2
- data/app/views/components/lolita/configuration/search/_display.html.haml +2 -2
- data/app/views/kaminari/lolita/_first_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_gap.html.erb +8 -8
- data/app/views/kaminari/lolita/_last_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_next_page.html.erb +11 -11
- data/app/views/kaminari/lolita/_page.html.erb +12 -12
- data/app/views/kaminari/lolita/_paginator.html.erb +23 -23
- data/app/views/kaminari/lolita/_prev_page.html.erb +11 -11
- data/app/views/lolita/info/index.html.erb +232 -232
- data/app/views/lolita/rest/index.html.haml +1 -1
- data/config/routes.rb +6 -6
- data/lib/generators/lolita/install_generator.rb +2 -4
- data/lib/generators/lolita/uninstall_generator.rb +3 -8
- data/lib/generators/templates/lolita.rb +13 -16
- data/lib/lolita.rb +4 -5
- data/lib/lolita/adapter/active_record.rb +4 -4
- data/lib/lolita/adapter/common_helper.rb +45 -71
- data/lib/lolita/adapter/field_helper.rb +18 -18
- data/lib/lolita/adapter/mongoid.rb +8 -8
- data/lib/lolita/configuration/field/big_decimal.rb +12 -12
- data/lib/lolita/configuration/field/boolean.rb +12 -12
- data/lib/lolita/configuration/field/date.rb +12 -12
- data/lib/lolita/configuration/field/hidden.rb +12 -12
- data/lib/lolita/configuration/field/integer.rb +11 -11
- data/lib/lolita/configuration/field/string.rb +16 -16
- data/lib/lolita/configuration/field/time.rb +13 -13
- data/lib/lolita/configuration/field_set.rb +25 -25
- data/lib/lolita/configuration/filter.rb +6 -0
- data/lib/lolita/configuration/list.rb +10 -10
- data/lib/lolita/configuration/nested_form.rb +104 -104
- data/lib/lolita/configuration/search.rb +104 -104
- data/lib/lolita/configuration/tab/content.rb +3 -3
- data/lib/lolita/controllers/component_helpers.rb +9 -9
- data/lib/lolita/controllers/rails_helpers.rb +5 -5
- data/lib/lolita/dbi/base.rb +56 -56
- data/lib/lolita/hooks.rb +16 -16
- data/lib/lolita/hooks/named_hook.rb +125 -125
- data/lib/lolita/lazy_loader.rb +54 -54
- data/lib/lolita/navigation/tree.rb +132 -132
- data/lib/lolita/rails/engine.rb +2 -2
- data/lib/lolita/rails/routes.rb +9 -9
- data/lib/lolita/ruby_ext/accessors.rb +26 -26
- data/lib/lolita/ruby_ext/lolita_model_name.rb +10 -2
- data/lib/lolita/search/simple.rb +75 -75
- data/lib/lolita/support/formatter.rb +62 -62
- data/lib/lolita/support/formatter/rails.rb +56 -56
- data/lib/lolita/test/matchers.rb +77 -77
- data/lib/lolita/version.rb +2 -2
- data/spec/adapter/common_helper_spec.rb +96 -0
- data/spec/adapter_helper.rb +3 -4
- data/spec/builder_spec.rb +120 -120
- data/spec/configuration/base_spec.rb +1 -1
- data/spec/configuration/column_spec.rb +1 -1
- data/spec/configuration/columns_spec.rb +1 -1
- data/spec/configuration/core_spec.rb +1 -1
- data/spec/configuration/field_set_spec.rb +1 -1
- data/spec/configuration/field_spec.rb +1 -1
- data/spec/configuration/filter_spec.rb +30 -1
- data/spec/configuration/list_spec.rb +44 -145
- data/spec/configuration/nested_list_spec.rb +1 -1
- data/spec/configuration/search_spec.rb +1 -1
- data/spec/configuration/tab_spec.rb +1 -1
- data/spec/configuration/tabs_spec.rb +1 -2
- data/spec/controllers/component_helpers_spec.rb +1 -1
- data/spec/controllers/configuration_spec.rb +1 -1
- data/spec/controllers/internal_helpers_spec.rb +1 -1
- data/spec/controllers/lolita_rest_nested_resources_spec.rb +1 -1
- data/spec/controllers/lolita_rest_spec.rb +2 -2
- data/spec/dbi/base_spec.rb +1 -4
- data/spec/extensions/authorization/cancan_adapter_spec.rb +4 -4
- data/spec/extensions/extensions_spec.rb +1 -1
- data/spec/generators/lolita/install_generator_spec.rb +55 -0
- data/spec/generators/lolita/uninstall_generator_spec.rb +49 -0
- data/spec/hooks_spec.rb +25 -25
- data/spec/mapping_spec.rb +1 -1
- data/spec/navigation/branch_spec.rb +1 -1
- data/spec/navigation/tree_spec.rb +1 -1
- data/spec/rails_app/app/controllers/application_controller.rb +3 -3
- data/spec/rails_app/app/helpers/application_helper.rb +3 -3
- data/spec/rails_app/app/mongoid/address.rb +7 -7
- data/spec/rails_app/app/mongoid/comment.rb +5 -5
- data/spec/rails_app/app/mongoid/preference.rb +5 -5
- data/spec/rails_app/app/mongoid/profile.rb +13 -13
- data/spec/rails_app/app/mongoid/tag.rb +3 -3
- data/spec/rails_app/app/views/components/lolita/configuration/list/_body_cell.html.erb +1 -1
- data/spec/rails_app/config/boot.rb +4 -9
- data/spec/rails_app/config/environment.rb +5 -5
- data/spec/rails_app/config/environments/production.rb +37 -37
- data/spec/rails_app/config/environments/test.rb +37 -37
- data/spec/rails_app/config/initializers/backtrace_silencers.rb +7 -7
- data/spec/rails_app/config/initializers/inflections.rb +2 -2
- data/spec/rails_app/config/initializers/secret_token.rb +1 -1
- data/spec/rails_app/config/routes.rb +1 -1
- data/spec/rails_app/lib/lolita/configuration/field/my_custom_collection.rb +13 -13
- data/spec/rails_app/log/development.log +12940 -43222
- data/spec/rails_app/public/javascripts/jquery-1.5.1.min.js +15 -15
- data/spec/rails_app/public/javascripts/lolita/main.js +6 -6
- data/spec/rails_app/public/javascripts/modernizr-1.7.min.js +1 -1
- data/spec/rails_app/public/javascripts/rails.js +137 -137
- data/spec/rails_app/public/javascripts/tinymce/langs/en.js +221 -221
- data/spec/rails_app/public/javascripts/tinymce/license.txt +504 -504
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/about.htm +52 -52
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/anchor.htm +26 -26
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/charmap.htm +51 -51
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/color_picker.htm +74 -74
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/editor_template_src.js +1328 -1328
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/image.htm +80 -80
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/about.js +73 -73
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/anchor.js +42 -42
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/charmap.js +354 -354
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/color_picker.js +329 -329
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/image.js +247 -247
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/link.js +153 -153
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/js/source_editor.js +56 -56
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en.js +68 -68
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/langs/en_dlg.js +53 -53
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/link.htm +57 -57
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/shortcuts.htm +47 -47
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/spec/rails_app/public/javascripts/tinymce/themes/advanced/source_editor.htm +25 -25
- data/spec/rails_app/public/javascripts/tinymce/tiny_mce_popup.js +4 -4
- data/spec/rails_app/public/stylesheets/lolita/default.css +169 -169
- data/spec/rails_app/public/stylesheets/lolita/style.css +214 -214
- data/spec/routing/routes_spec.rb +1 -1
- data/spec/search/simple_spec.rb +1 -1
- data/spec/simple_spec_helper.rb +1 -1
- data/spec/spec_helper.rb +6 -4
- data/spec/support/formatter_spec.rb +1 -1
- data/spec/tmp/config/routes.rb +0 -0
- data/vendor/assets/javascripts/jquery-numeric.js +279 -279
- data/vendor/assets/javascripts/modernizr_1_7_min.js +1 -1
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/content.css +66 -66
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/dialog.css +117 -117
- data/vendor/assets/javascripts/tinymce/themes/advanced/skins/cirkuit/ui.css +988 -988
- data/vendor/assets/stylesheets/jquery-ui-1.8.16.custom.css +567 -567
- metadata +380 -395
- data/spec/rails_app/coverage.data +0 -1
- data/spec/rails_app/log/test.log +0 -370
@@ -1,80 +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"> </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>
|
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"> </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>
|
@@ -1,73 +1,73 @@
|
|
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
|
-
document.getElementById('help_tab').setAttribute("aria-hidden", "false");
|
70
|
-
}
|
71
|
-
}
|
72
|
-
|
73
|
-
tinyMCEPopup.onInit.add(init);
|
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
|
+
document.getElementById('help_tab').setAttribute("aria-hidden", "false");
|
70
|
+
}
|
71
|
+
}
|
72
|
+
|
73
|
+
tinyMCEPopup.onInit.add(init);
|
@@ -1,42 +1,42 @@
|
|
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
|
-
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
23
|
-
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
24
|
-
return;
|
25
|
-
}
|
26
|
-
|
27
|
-
tinyMCEPopup.restoreSelection();
|
28
|
-
|
29
|
-
if (this.action != 'update')
|
30
|
-
ed.selection.collapse(1);
|
31
|
-
|
32
|
-
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
33
|
-
if (elm)
|
34
|
-
elm.name = name;
|
35
|
-
else
|
36
|
-
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, ''));
|
37
|
-
|
38
|
-
tinyMCEPopup.close();
|
39
|
-
}
|
40
|
-
};
|
41
|
-
|
42
|
-
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
|
+
if (!name || !/^[a-z][a-z0-9\-\_:\.]*$/i.test(name)) {
|
23
|
+
tinyMCEPopup.alert('advanced_dlg.anchor_invalid');
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
|
27
|
+
tinyMCEPopup.restoreSelection();
|
28
|
+
|
29
|
+
if (this.action != 'update')
|
30
|
+
ed.selection.collapse(1);
|
31
|
+
|
32
|
+
elm = ed.dom.getParent(ed.selection.getNode(), 'A');
|
33
|
+
if (elm)
|
34
|
+
elm.name = name;
|
35
|
+
else
|
36
|
+
ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', {name : name, 'class' : 'mceItemAnchor'}, ''));
|
37
|
+
|
38
|
+
tinyMCEPopup.close();
|
39
|
+
}
|
40
|
+
};
|
41
|
+
|
42
|
+
tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog);
|
@@ -1,354 +1,354 @@
|
|
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
|
-
[' ', ' ', true, 'no-break space'],
|
15
|
-
['&', '&', true, 'ampersand'],
|
16
|
-
['"', '"', true, 'quotation mark'],
|
17
|
-
// finance
|
18
|
-
['¢', '¢', true, 'cent sign'],
|
19
|
-
['€', '€', true, 'euro sign'],
|
20
|
-
['£', '£', true, 'pound sign'],
|
21
|
-
['¥', '¥', true, 'yen sign'],
|
22
|
-
// signs
|
23
|
-
['©', '©', true, 'copyright sign'],
|
24
|
-
['®', '®', true, 'registered sign'],
|
25
|
-
['™', '™', true, 'trade mark sign'],
|
26
|
-
['‰', '‰', true, 'per mille sign'],
|
27
|
-
['µ', 'µ', true, 'micro sign'],
|
28
|
-
['·', '·', true, 'middle dot'],
|
29
|
-
['•', '•', true, 'bullet'],
|
30
|
-
['…', '…', true, 'three dot leader'],
|
31
|
-
['′', '′', true, 'minutes / feet'],
|
32
|
-
['″', '″', true, 'seconds / inches'],
|
33
|
-
['§', '§', true, 'section sign'],
|
34
|
-
['¶', '¶', true, 'paragraph sign'],
|
35
|
-
['ß', 'ß', true, 'sharp s / ess-zed'],
|
36
|
-
// quotations
|
37
|
-
['‹', '‹', true, 'single left-pointing angle quotation mark'],
|
38
|
-
['›', '›', true, 'single right-pointing angle quotation mark'],
|
39
|
-
['«', '«', true, 'left pointing guillemet'],
|
40
|
-
['»', '»', true, 'right pointing guillemet'],
|
41
|
-
['‘', '‘', true, 'left single quotation mark'],
|
42
|
-
['’', '’', true, 'right single quotation mark'],
|
43
|
-
['“', '“', true, 'left double quotation mark'],
|
44
|
-
['”', '”', true, 'right double quotation mark'],
|
45
|
-
['‚', '‚', true, 'single low-9 quotation mark'],
|
46
|
-
['„', '„', true, 'double low-9 quotation mark'],
|
47
|
-
['<', '<', true, 'less-than sign'],
|
48
|
-
['>', '>', true, 'greater-than sign'],
|
49
|
-
['≤', '≤', true, 'less-than or equal to'],
|
50
|
-
['≥', '≥', true, 'greater-than or equal to'],
|
51
|
-
['–', '–', true, 'en dash'],
|
52
|
-
['—', '—', true, 'em dash'],
|
53
|
-
['¯', '¯', true, 'macron'],
|
54
|
-
['‾', '‾', true, 'overline'],
|
55
|
-
['¤', '¤', true, 'currency sign'],
|
56
|
-
['¦', '¦', true, 'broken bar'],
|
57
|
-
['¨', '¨', true, 'diaeresis'],
|
58
|
-
['¡', '¡', true, 'inverted exclamation mark'],
|
59
|
-
['¿', '¿', true, 'turned question mark'],
|
60
|
-
['ˆ', 'ˆ', true, 'circumflex accent'],
|
61
|
-
['˜', '˜', true, 'small tilde'],
|
62
|
-
['°', '°', true, 'degree sign'],
|
63
|
-
['−', '−', true, 'minus sign'],
|
64
|
-
['±', '±', true, 'plus-minus sign'],
|
65
|
-
['÷', '÷', true, 'division sign'],
|
66
|
-
['⁄', '⁄', true, 'fraction slash'],
|
67
|
-
['×', '×', true, 'multiplication sign'],
|
68
|
-
['¹', '¹', true, 'superscript one'],
|
69
|
-
['²', '²', true, 'superscript two'],
|
70
|
-
['³', '³', true, 'superscript three'],
|
71
|
-
['¼', '¼', true, 'fraction one quarter'],
|
72
|
-
['½', '½', true, 'fraction one half'],
|
73
|
-
['¾', '¾', true, 'fraction three quarters'],
|
74
|
-
// math / logical
|
75
|
-
['ƒ', 'ƒ', true, 'function / florin'],
|
76
|
-
['∫', '∫', true, 'integral'],
|
77
|
-
['∑', '∑', true, 'n-ary sumation'],
|
78
|
-
['∞', '∞', true, 'infinity'],
|
79
|
-
['√', '√', true, 'square root'],
|
80
|
-
['∼', '∼', false,'similar to'],
|
81
|
-
['≅', '≅', false,'approximately equal to'],
|
82
|
-
['≈', '≈', true, 'almost equal to'],
|
83
|
-
['≠', '≠', true, 'not equal to'],
|
84
|
-
['≡', '≡', true, 'identical to'],
|
85
|
-
['∈', '∈', false,'element of'],
|
86
|
-
['∉', '∉', false,'not an element of'],
|
87
|
-
['∋', '∋', false,'contains as member'],
|
88
|
-
['∏', '∏', true, 'n-ary product'],
|
89
|
-
['∧', '∧', false,'logical and'],
|
90
|
-
['∨', '∨', false,'logical or'],
|
91
|
-
['¬', '¬', true, 'not sign'],
|
92
|
-
['∩', '∩', true, 'intersection'],
|
93
|
-
['∪', '∪', false,'union'],
|
94
|
-
['∂', '∂', true, 'partial differential'],
|
95
|
-
['∀', '∀', false,'for all'],
|
96
|
-
['∃', '∃', false,'there exists'],
|
97
|
-
['∅', '∅', false,'diameter'],
|
98
|
-
['∇', '∇', false,'backward difference'],
|
99
|
-
['∗', '∗', false,'asterisk operator'],
|
100
|
-
['∝', '∝', false,'proportional to'],
|
101
|
-
['∠', '∠', false,'angle'],
|
102
|
-
// undefined
|
103
|
-
['´', '´', true, 'acute accent'],
|
104
|
-
['¸', '¸', true, 'cedilla'],
|
105
|
-
['ª', 'ª', true, 'feminine ordinal indicator'],
|
106
|
-
['º', 'º', true, 'masculine ordinal indicator'],
|
107
|
-
['†', '†', true, 'dagger'],
|
108
|
-
['‡', '‡', true, 'double dagger'],
|
109
|
-
// alphabetical special chars
|
110
|
-
['À', 'À', true, 'A - grave'],
|
111
|
-
['Á', 'Á', true, 'A - acute'],
|
112
|
-
['Â', 'Â', true, 'A - circumflex'],
|
113
|
-
['Ã', 'Ã', true, 'A - tilde'],
|
114
|
-
['Ä', 'Ä', true, 'A - diaeresis'],
|
115
|
-
['Å', 'Å', true, 'A - ring above'],
|
116
|
-
['Æ', 'Æ', true, 'ligature AE'],
|
117
|
-
['Ç', 'Ç', true, 'C - cedilla'],
|
118
|
-
['È', 'È', true, 'E - grave'],
|
119
|
-
['É', 'É', true, 'E - acute'],
|
120
|
-
['Ê', 'Ê', true, 'E - circumflex'],
|
121
|
-
['Ë', 'Ë', true, 'E - diaeresis'],
|
122
|
-
['Ì', 'Ì', true, 'I - grave'],
|
123
|
-
['Í', 'Í', true, 'I - acute'],
|
124
|
-
['Î', 'Î', true, 'I - circumflex'],
|
125
|
-
['Ï', 'Ï', true, 'I - diaeresis'],
|
126
|
-
['Ð', 'Ð', true, 'ETH'],
|
127
|
-
['Ñ', 'Ñ', true, 'N - tilde'],
|
128
|
-
['Ò', 'Ò', true, 'O - grave'],
|
129
|
-
['Ó', 'Ó', true, 'O - acute'],
|
130
|
-
['Ô', 'Ô', true, 'O - circumflex'],
|
131
|
-
['Õ', 'Õ', true, 'O - tilde'],
|
132
|
-
['Ö', 'Ö', true, 'O - diaeresis'],
|
133
|
-
['Ø', 'Ø', true, 'O - slash'],
|
134
|
-
['Œ', 'Œ', true, 'ligature OE'],
|
135
|
-
['Š', 'Š', true, 'S - caron'],
|
136
|
-
['Ù', 'Ù', true, 'U - grave'],
|
137
|
-
['Ú', 'Ú', true, 'U - acute'],
|
138
|
-
['Û', 'Û', true, 'U - circumflex'],
|
139
|
-
['Ü', 'Ü', true, 'U - diaeresis'],
|
140
|
-
['Ý', 'Ý', true, 'Y - acute'],
|
141
|
-
['Ÿ', 'Ÿ', true, 'Y - diaeresis'],
|
142
|
-
['Þ', 'Þ', true, 'THORN'],
|
143
|
-
['à', 'à', true, 'a - grave'],
|
144
|
-
['á', 'á', true, 'a - acute'],
|
145
|
-
['â', 'â', true, 'a - circumflex'],
|
146
|
-
['ã', 'ã', true, 'a - tilde'],
|
147
|
-
['ä', 'ä', true, 'a - diaeresis'],
|
148
|
-
['å', 'å', true, 'a - ring above'],
|
149
|
-
['æ', 'æ', true, 'ligature ae'],
|
150
|
-
['ç', 'ç', true, 'c - cedilla'],
|
151
|
-
['è', 'è', true, 'e - grave'],
|
152
|
-
['é', 'é', true, 'e - acute'],
|
153
|
-
['ê', 'ê', true, 'e - circumflex'],
|
154
|
-
['ë', 'ë', true, 'e - diaeresis'],
|
155
|
-
['ì', 'ì', true, 'i - grave'],
|
156
|
-
['í', 'í', true, 'i - acute'],
|
157
|
-
['î', 'î', true, 'i - circumflex'],
|
158
|
-
['ï', 'ï', true, 'i - diaeresis'],
|
159
|
-
['ð', 'ð', true, 'eth'],
|
160
|
-
['ñ', 'ñ', true, 'n - tilde'],
|
161
|
-
['ò', 'ò', true, 'o - grave'],
|
162
|
-
['ó', 'ó', true, 'o - acute'],
|
163
|
-
['ô', 'ô', true, 'o - circumflex'],
|
164
|
-
['õ', 'õ', true, 'o - tilde'],
|
165
|
-
['ö', 'ö', true, 'o - diaeresis'],
|
166
|
-
['ø', 'ø', true, 'o slash'],
|
167
|
-
['œ', 'œ', true, 'ligature oe'],
|
168
|
-
['š', 'š', true, 's - caron'],
|
169
|
-
['ù', 'ù', true, 'u - grave'],
|
170
|
-
['ú', 'ú', true, 'u - acute'],
|
171
|
-
['û', 'û', true, 'u - circumflex'],
|
172
|
-
['ü', 'ü', true, 'u - diaeresis'],
|
173
|
-
['ý', 'ý', true, 'y - acute'],
|
174
|
-
['þ', 'þ', true, 'thorn'],
|
175
|
-
['ÿ', 'ÿ', true, 'y - diaeresis'],
|
176
|
-
['Α', 'Α', true, 'Alpha'],
|
177
|
-
['Β', 'Β', true, 'Beta'],
|
178
|
-
['Γ', 'Γ', true, 'Gamma'],
|
179
|
-
['Δ', 'Δ', true, 'Delta'],
|
180
|
-
['Ε', 'Ε', true, 'Epsilon'],
|
181
|
-
['Ζ', 'Ζ', true, 'Zeta'],
|
182
|
-
['Η', 'Η', true, 'Eta'],
|
183
|
-
['Θ', 'Θ', true, 'Theta'],
|
184
|
-
['Ι', 'Ι', true, 'Iota'],
|
185
|
-
['Κ', 'Κ', true, 'Kappa'],
|
186
|
-
['Λ', 'Λ', true, 'Lambda'],
|
187
|
-
['Μ', 'Μ', true, 'Mu'],
|
188
|
-
['Ν', 'Ν', true, 'Nu'],
|
189
|
-
['Ξ', 'Ξ', true, 'Xi'],
|
190
|
-
['Ο', 'Ο', true, 'Omicron'],
|
191
|
-
['Π', 'Π', true, 'Pi'],
|
192
|
-
['Ρ', 'Ρ', true, 'Rho'],
|
193
|
-
['Σ', 'Σ', true, 'Sigma'],
|
194
|
-
['Τ', 'Τ', true, 'Tau'],
|
195
|
-
['Υ', 'Υ', true, 'Upsilon'],
|
196
|
-
['Φ', 'Φ', true, 'Phi'],
|
197
|
-
['Χ', 'Χ', true, 'Chi'],
|
198
|
-
['Ψ', 'Ψ', true, 'Psi'],
|
199
|
-
['Ω', 'Ω', true, 'Omega'],
|
200
|
-
['α', 'α', true, 'alpha'],
|
201
|
-
['β', 'β', true, 'beta'],
|
202
|
-
['γ', 'γ', true, 'gamma'],
|
203
|
-
['δ', 'δ', true, 'delta'],
|
204
|
-
['ε', 'ε', true, 'epsilon'],
|
205
|
-
['ζ', 'ζ', true, 'zeta'],
|
206
|
-
['η', 'η', true, 'eta'],
|
207
|
-
['θ', 'θ', true, 'theta'],
|
208
|
-
['ι', 'ι', true, 'iota'],
|
209
|
-
['κ', 'κ', true, 'kappa'],
|
210
|
-
['λ', 'λ', true, 'lambda'],
|
211
|
-
['μ', 'μ', true, 'mu'],
|
212
|
-
['ν', 'ν', true, 'nu'],
|
213
|
-
['ξ', 'ξ', true, 'xi'],
|
214
|
-
['ο', 'ο', true, 'omicron'],
|
215
|
-
['π', 'π', true, 'pi'],
|
216
|
-
['ρ', 'ρ', true, 'rho'],
|
217
|
-
['ς', 'ς', true, 'final sigma'],
|
218
|
-
['σ', 'σ', true, 'sigma'],
|
219
|
-
['τ', 'τ', true, 'tau'],
|
220
|
-
['υ', 'υ', true, 'upsilon'],
|
221
|
-
['φ', 'φ', true, 'phi'],
|
222
|
-
['χ', 'χ', true, 'chi'],
|
223
|
-
['ψ', 'ψ', true, 'psi'],
|
224
|
-
['ω', 'ω', true, 'omega'],
|
225
|
-
// symbols
|
226
|
-
['ℵ', 'ℵ', false,'alef symbol'],
|
227
|
-
['ϖ', 'ϖ', false,'pi symbol'],
|
228
|
-
['ℜ', 'ℜ', false,'real part symbol'],
|
229
|
-
['ϑ','ϑ', false,'theta symbol'],
|
230
|
-
['ϒ', 'ϒ', false,'upsilon - hook symbol'],
|
231
|
-
['℘', '℘', false,'Weierstrass p'],
|
232
|
-
['ℑ', 'ℑ', false,'imaginary part'],
|
233
|
-
// arrows
|
234
|
-
['←', '←', true, 'leftwards arrow'],
|
235
|
-
['↑', '↑', true, 'upwards arrow'],
|
236
|
-
['→', '→', true, 'rightwards arrow'],
|
237
|
-
['↓', '↓', true, 'downwards arrow'],
|
238
|
-
['↔', '↔', true, 'left right arrow'],
|
239
|
-
['↵', '↵', false,'carriage return'],
|
240
|
-
['⇐', '⇐', false,'leftwards double arrow'],
|
241
|
-
['⇑', '⇑', false,'upwards double arrow'],
|
242
|
-
['⇒', '⇒', false,'rightwards double arrow'],
|
243
|
-
['⇓', '⇓', false,'downwards double arrow'],
|
244
|
-
['⇔', '⇔', false,'left right double arrow'],
|
245
|
-
['∴', '∴', false,'therefore'],
|
246
|
-
['⊂', '⊂', false,'subset of'],
|
247
|
-
['⊃', '⊃', false,'superset of'],
|
248
|
-
['⊄', '⊄', false,'not a subset of'],
|
249
|
-
['⊆', '⊆', false,'subset of or equal to'],
|
250
|
-
['⊇', '⊇', false,'superset of or equal to'],
|
251
|
-
['⊕', '⊕', false,'circled plus'],
|
252
|
-
['⊗', '⊗', false,'circled times'],
|
253
|
-
['⊥', '⊥', false,'perpendicular'],
|
254
|
-
['⋅', '⋅', false,'dot operator'],
|
255
|
-
['⌈', '⌈', false,'left ceiling'],
|
256
|
-
['⌉', '⌉', false,'right ceiling'],
|
257
|
-
['⌊', '⌊', false,'left floor'],
|
258
|
-
['⌋', '⌋', false,'right floor'],
|
259
|
-
['⟨', '〈', false,'left-pointing angle bracket'],
|
260
|
-
['⟩', '〉', false,'right-pointing angle bracket'],
|
261
|
-
['◊', '◊', true,'lozenge'],
|
262
|
-
['♠', '♠', false,'black spade suit'],
|
263
|
-
['♣', '♣', true, 'black club suit'],
|
264
|
-
['♥', '♥', true, 'black heart suit'],
|
265
|
-
['♦', '♦', true, 'black diamond suit'],
|
266
|
-
[' ', ' ', false,'en space'],
|
267
|
-
[' ', ' ', false,'em space'],
|
268
|
-
[' ', ' ', false,'thin space'],
|
269
|
-
['‌', '‌', false,'zero width non-joiner'],
|
270
|
-
['‍', '‍', false,'zero width joiner'],
|
271
|
-
['‎', '‎', false,'left-to-right mark'],
|
272
|
-
['‏', '‏', false,'right-to-left mark'],
|
273
|
-
['­', '­', false,'soft hyphen']
|
274
|
-
];
|
275
|
-
|
276
|
-
tinyMCEPopup.onInit.add(function() {
|
277
|
-
tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML());
|
278
|
-
addKeyboardNavigation();
|
279
|
-
});
|
280
|
-
|
281
|
-
function addKeyboardNavigation(){
|
282
|
-
var tableElm, cells, settings;
|
283
|
-
|
284
|
-
cells = tinyMCEPopup.dom.select(".charmaplink", "charmapgroup");
|
285
|
-
|
286
|
-
settings ={
|
287
|
-
root: "charmapgroup",
|
288
|
-
items: cells
|
289
|
-
};
|
290
|
-
|
291
|
-
tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom);
|
292
|
-
}
|
293
|
-
|
294
|
-
function renderCharMapHTML() {
|
295
|
-
var charsPerRow = 20, tdWidth=20, tdHeight=20, i;
|
296
|
-
var html = '<div id="charmapgroup" aria-labelledby="charmap_label" tabindex="0" role="listbox">'+
|
297
|
-
'<table role="presentation" border="0" cellspacing="1" cellpadding="0" width="' + (tdWidth*charsPerRow) +
|
298
|
-
'"><tr height="' + tdHeight + '">';
|
299
|
-
var cols=-1;
|
300
|
-
|
301
|
-
for (i=0; i<charmap.length; i++) {
|
302
|
-
var previewCharFn;
|
303
|
-
|
304
|
-
if (charmap[i][2]==true) {
|
305
|
-
cols++;
|
306
|
-
previewCharFn = 'previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');';
|
307
|
-
html += ''
|
308
|
-
+ '<td class="charmap">'
|
309
|
-
+ '<a class="charmaplink" role="button" onmouseover="'+previewCharFn+'" onfocus="'+previewCharFn+'" 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] + '">'
|
310
|
-
+ charmap[i][1]
|
311
|
-
+ '</a></td>';
|
312
|
-
if ((cols+1) % charsPerRow == 0)
|
313
|
-
html += '</tr><tr height="' + tdHeight + '">';
|
314
|
-
}
|
315
|
-
}
|
316
|
-
|
317
|
-
if (cols % charsPerRow > 0) {
|
318
|
-
var padd = charsPerRow - (cols % charsPerRow);
|
319
|
-
for (var i=0; i<padd-1; i++)
|
320
|
-
html += '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap"> </td>';
|
321
|
-
}
|
322
|
-
|
323
|
-
html += '</tr></table></div>';
|
324
|
-
|
325
|
-
return html;
|
326
|
-
}
|
327
|
-
|
328
|
-
function insertChar(chr) {
|
329
|
-
tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';');
|
330
|
-
|
331
|
-
// Refocus in window
|
332
|
-
if (tinyMCEPopup.isWindow)
|
333
|
-
window.focus();
|
334
|
-
|
335
|
-
tinyMCEPopup.editor.focus();
|
336
|
-
tinyMCEPopup.close();
|
337
|
-
}
|
338
|
-
|
339
|
-
function previewChar(codeA, codeB, codeN) {
|
340
|
-
var elmA = document.getElementById('codeA');
|
341
|
-
var elmB = document.getElementById('codeB');
|
342
|
-
var elmV = document.getElementById('codeV');
|
343
|
-
var elmN = document.getElementById('codeN');
|
344
|
-
|
345
|
-
if (codeA=='#160;') {
|
346
|
-
elmV.innerHTML = '__';
|
347
|
-
} else {
|
348
|
-
elmV.innerHTML = '&' + codeA;
|
349
|
-
}
|
350
|
-
|
351
|
-
elmB.innerHTML = '&' + codeA;
|
352
|
-
elmA.innerHTML = '&' + codeB;
|
353
|
-
elmN.innerHTML = codeN;
|
354
|
-
}
|
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
|
+
[' ', ' ', true, 'no-break space'],
|
15
|
+
['&', '&', true, 'ampersand'],
|
16
|
+
['"', '"', true, 'quotation mark'],
|
17
|
+
// finance
|
18
|
+
['¢', '¢', true, 'cent sign'],
|
19
|
+
['€', '€', true, 'euro sign'],
|
20
|
+
['£', '£', true, 'pound sign'],
|
21
|
+
['¥', '¥', true, 'yen sign'],
|
22
|
+
// signs
|
23
|
+
['©', '©', true, 'copyright sign'],
|
24
|
+
['®', '®', true, 'registered sign'],
|
25
|
+
['™', '™', true, 'trade mark sign'],
|
26
|
+
['‰', '‰', true, 'per mille sign'],
|
27
|
+
['µ', 'µ', true, 'micro sign'],
|
28
|
+
['·', '·', true, 'middle dot'],
|
29
|
+
['•', '•', true, 'bullet'],
|
30
|
+
['…', '…', true, 'three dot leader'],
|
31
|
+
['′', '′', true, 'minutes / feet'],
|
32
|
+
['″', '″', true, 'seconds / inches'],
|
33
|
+
['§', '§', true, 'section sign'],
|
34
|
+
['¶', '¶', true, 'paragraph sign'],
|
35
|
+
['ß', 'ß', true, 'sharp s / ess-zed'],
|
36
|
+
// quotations
|
37
|
+
['‹', '‹', true, 'single left-pointing angle quotation mark'],
|
38
|
+
['›', '›', true, 'single right-pointing angle quotation mark'],
|
39
|
+
['«', '«', true, 'left pointing guillemet'],
|
40
|
+
['»', '»', true, 'right pointing guillemet'],
|
41
|
+
['‘', '‘', true, 'left single quotation mark'],
|
42
|
+
['’', '’', true, 'right single quotation mark'],
|
43
|
+
['“', '“', true, 'left double quotation mark'],
|
44
|
+
['”', '”', true, 'right double quotation mark'],
|
45
|
+
['‚', '‚', true, 'single low-9 quotation mark'],
|
46
|
+
['„', '„', true, 'double low-9 quotation mark'],
|
47
|
+
['<', '<', true, 'less-than sign'],
|
48
|
+
['>', '>', true, 'greater-than sign'],
|
49
|
+
['≤', '≤', true, 'less-than or equal to'],
|
50
|
+
['≥', '≥', true, 'greater-than or equal to'],
|
51
|
+
['–', '–', true, 'en dash'],
|
52
|
+
['—', '—', true, 'em dash'],
|
53
|
+
['¯', '¯', true, 'macron'],
|
54
|
+
['‾', '‾', true, 'overline'],
|
55
|
+
['¤', '¤', true, 'currency sign'],
|
56
|
+
['¦', '¦', true, 'broken bar'],
|
57
|
+
['¨', '¨', true, 'diaeresis'],
|
58
|
+
['¡', '¡', true, 'inverted exclamation mark'],
|
59
|
+
['¿', '¿', true, 'turned question mark'],
|
60
|
+
['ˆ', 'ˆ', true, 'circumflex accent'],
|
61
|
+
['˜', '˜', true, 'small tilde'],
|
62
|
+
['°', '°', true, 'degree sign'],
|
63
|
+
['−', '−', true, 'minus sign'],
|
64
|
+
['±', '±', true, 'plus-minus sign'],
|
65
|
+
['÷', '÷', true, 'division sign'],
|
66
|
+
['⁄', '⁄', true, 'fraction slash'],
|
67
|
+
['×', '×', true, 'multiplication sign'],
|
68
|
+
['¹', '¹', true, 'superscript one'],
|
69
|
+
['²', '²', true, 'superscript two'],
|
70
|
+
['³', '³', true, 'superscript three'],
|
71
|
+
['¼', '¼', true, 'fraction one quarter'],
|
72
|
+
['½', '½', true, 'fraction one half'],
|
73
|
+
['¾', '¾', true, 'fraction three quarters'],
|
74
|
+
// math / logical
|
75
|
+
['ƒ', 'ƒ', true, 'function / florin'],
|
76
|
+
['∫', '∫', true, 'integral'],
|
77
|
+
['∑', '∑', true, 'n-ary sumation'],
|
78
|
+
['∞', '∞', true, 'infinity'],
|
79
|
+
['√', '√', true, 'square root'],
|
80
|
+
['∼', '∼', false,'similar to'],
|
81
|
+
['≅', '≅', false,'approximately equal to'],
|
82
|
+
['≈', '≈', true, 'almost equal to'],
|
83
|
+
['≠', '≠', true, 'not equal to'],
|
84
|
+
['≡', '≡', true, 'identical to'],
|
85
|
+
['∈', '∈', false,'element of'],
|
86
|
+
['∉', '∉', false,'not an element of'],
|
87
|
+
['∋', '∋', false,'contains as member'],
|
88
|
+
['∏', '∏', true, 'n-ary product'],
|
89
|
+
['∧', '∧', false,'logical and'],
|
90
|
+
['∨', '∨', false,'logical or'],
|
91
|
+
['¬', '¬', true, 'not sign'],
|
92
|
+
['∩', '∩', true, 'intersection'],
|
93
|
+
['∪', '∪', false,'union'],
|
94
|
+
['∂', '∂', true, 'partial differential'],
|
95
|
+
['∀', '∀', false,'for all'],
|
96
|
+
['∃', '∃', false,'there exists'],
|
97
|
+
['∅', '∅', false,'diameter'],
|
98
|
+
['∇', '∇', false,'backward difference'],
|
99
|
+
['∗', '∗', false,'asterisk operator'],
|
100
|
+
['∝', '∝', false,'proportional to'],
|
101
|
+
['∠', '∠', false,'angle'],
|
102
|
+
// undefined
|
103
|
+
['´', '´', true, 'acute accent'],
|
104
|
+
['¸', '¸', true, 'cedilla'],
|
105
|
+
['ª', 'ª', true, 'feminine ordinal indicator'],
|
106
|
+
['º', 'º', true, 'masculine ordinal indicator'],
|
107
|
+
['†', '†', true, 'dagger'],
|
108
|
+
['‡', '‡', true, 'double dagger'],
|
109
|
+
// alphabetical special chars
|
110
|
+
['À', 'À', true, 'A - grave'],
|
111
|
+
['Á', 'Á', true, 'A - acute'],
|
112
|
+
['Â', 'Â', true, 'A - circumflex'],
|
113
|
+
['Ã', 'Ã', true, 'A - tilde'],
|
114
|
+
['Ä', 'Ä', true, 'A - diaeresis'],
|
115
|
+
['Å', 'Å', true, 'A - ring above'],
|
116
|
+
['Æ', 'Æ', true, 'ligature AE'],
|
117
|
+
['Ç', 'Ç', true, 'C - cedilla'],
|
118
|
+
['È', 'È', true, 'E - grave'],
|
119
|
+
['É', 'É', true, 'E - acute'],
|
120
|
+
['Ê', 'Ê', true, 'E - circumflex'],
|
121
|
+
['Ë', 'Ë', true, 'E - diaeresis'],
|
122
|
+
['Ì', 'Ì', true, 'I - grave'],
|
123
|
+
['Í', 'Í', true, 'I - acute'],
|
124
|
+
['Î', 'Î', true, 'I - circumflex'],
|
125
|
+
['Ï', 'Ï', true, 'I - diaeresis'],
|
126
|
+
['Ð', 'Ð', true, 'ETH'],
|
127
|
+
['Ñ', 'Ñ', true, 'N - tilde'],
|
128
|
+
['Ò', 'Ò', true, 'O - grave'],
|
129
|
+
['Ó', 'Ó', true, 'O - acute'],
|
130
|
+
['Ô', 'Ô', true, 'O - circumflex'],
|
131
|
+
['Õ', 'Õ', true, 'O - tilde'],
|
132
|
+
['Ö', 'Ö', true, 'O - diaeresis'],
|
133
|
+
['Ø', 'Ø', true, 'O - slash'],
|
134
|
+
['Œ', 'Œ', true, 'ligature OE'],
|
135
|
+
['Š', 'Š', true, 'S - caron'],
|
136
|
+
['Ù', 'Ù', true, 'U - grave'],
|
137
|
+
['Ú', 'Ú', true, 'U - acute'],
|
138
|
+
['Û', 'Û', true, 'U - circumflex'],
|
139
|
+
['Ü', 'Ü', true, 'U - diaeresis'],
|
140
|
+
['Ý', 'Ý', true, 'Y - acute'],
|
141
|
+
['Ÿ', 'Ÿ', true, 'Y - diaeresis'],
|
142
|
+
['Þ', 'Þ', true, 'THORN'],
|
143
|
+
['à', 'à', true, 'a - grave'],
|
144
|
+
['á', 'á', true, 'a - acute'],
|
145
|
+
['â', 'â', true, 'a - circumflex'],
|
146
|
+
['ã', 'ã', true, 'a - tilde'],
|
147
|
+
['ä', 'ä', true, 'a - diaeresis'],
|
148
|
+
['å', 'å', true, 'a - ring above'],
|
149
|
+
['æ', 'æ', true, 'ligature ae'],
|
150
|
+
['ç', 'ç', true, 'c - cedilla'],
|
151
|
+
['è', 'è', true, 'e - grave'],
|
152
|
+
['é', 'é', true, 'e - acute'],
|
153
|
+
['ê', 'ê', true, 'e - circumflex'],
|
154
|
+
['ë', 'ë', true, 'e - diaeresis'],
|
155
|
+
['ì', 'ì', true, 'i - grave'],
|
156
|
+
['í', 'í', true, 'i - acute'],
|
157
|
+
['î', 'î', true, 'i - circumflex'],
|
158
|
+
['ï', 'ï', true, 'i - diaeresis'],
|
159
|
+
['ð', 'ð', true, 'eth'],
|
160
|
+
['ñ', 'ñ', true, 'n - tilde'],
|
161
|
+
['ò', 'ò', true, 'o - grave'],
|
162
|
+
['ó', 'ó', true, 'o - acute'],
|
163
|
+
['ô', 'ô', true, 'o - circumflex'],
|
164
|
+
['õ', 'õ', true, 'o - tilde'],
|
165
|
+
['ö', 'ö', true, 'o - diaeresis'],
|
166
|
+
['ø', 'ø', true, 'o slash'],
|
167
|
+
['œ', 'œ', true, 'ligature oe'],
|
168
|
+
['š', 'š', true, 's - caron'],
|
169
|
+
['ù', 'ù', true, 'u - grave'],
|
170
|
+
['ú', 'ú', true, 'u - acute'],
|
171
|
+
['û', 'û', true, 'u - circumflex'],
|
172
|
+
['ü', 'ü', true, 'u - diaeresis'],
|
173
|
+
['ý', 'ý', true, 'y - acute'],
|
174
|
+
['þ', 'þ', true, 'thorn'],
|
175
|
+
['ÿ', 'ÿ', true, 'y - diaeresis'],
|
176
|
+
['Α', 'Α', true, 'Alpha'],
|
177
|
+
['Β', 'Β', true, 'Beta'],
|
178
|
+
['Γ', 'Γ', true, 'Gamma'],
|
179
|
+
['Δ', 'Δ', true, 'Delta'],
|
180
|
+
['Ε', 'Ε', true, 'Epsilon'],
|
181
|
+
['Ζ', 'Ζ', true, 'Zeta'],
|
182
|
+
['Η', 'Η', true, 'Eta'],
|
183
|
+
['Θ', 'Θ', true, 'Theta'],
|
184
|
+
['Ι', 'Ι', true, 'Iota'],
|
185
|
+
['Κ', 'Κ', true, 'Kappa'],
|
186
|
+
['Λ', 'Λ', true, 'Lambda'],
|
187
|
+
['Μ', 'Μ', true, 'Mu'],
|
188
|
+
['Ν', 'Ν', true, 'Nu'],
|
189
|
+
['Ξ', 'Ξ', true, 'Xi'],
|
190
|
+
['Ο', 'Ο', true, 'Omicron'],
|
191
|
+
['Π', 'Π', true, 'Pi'],
|
192
|
+
['Ρ', 'Ρ', true, 'Rho'],
|
193
|
+
['Σ', 'Σ', true, 'Sigma'],
|
194
|
+
['Τ', 'Τ', true, 'Tau'],
|
195
|
+
['Υ', 'Υ', true, 'Upsilon'],
|
196
|
+
['Φ', 'Φ', true, 'Phi'],
|
197
|
+
['Χ', 'Χ', true, 'Chi'],
|
198
|
+
['Ψ', 'Ψ', true, 'Psi'],
|
199
|
+
['Ω', 'Ω', true, 'Omega'],
|
200
|
+
['α', 'α', true, 'alpha'],
|
201
|
+
['β', 'β', true, 'beta'],
|
202
|
+
['γ', 'γ', true, 'gamma'],
|
203
|
+
['δ', 'δ', true, 'delta'],
|
204
|
+
['ε', 'ε', true, 'epsilon'],
|
205
|
+
['ζ', 'ζ', true, 'zeta'],
|
206
|
+
['η', 'η', true, 'eta'],
|
207
|
+
['θ', 'θ', true, 'theta'],
|
208
|
+
['ι', 'ι', true, 'iota'],
|
209
|
+
['κ', 'κ', true, 'kappa'],
|
210
|
+
['λ', 'λ', true, 'lambda'],
|
211
|
+
['μ', 'μ', true, 'mu'],
|
212
|
+
['ν', 'ν', true, 'nu'],
|
213
|
+
['ξ', 'ξ', true, 'xi'],
|
214
|
+
['ο', 'ο', true, 'omicron'],
|
215
|
+
['π', 'π', true, 'pi'],
|
216
|
+
['ρ', 'ρ', true, 'rho'],
|
217
|
+
['ς', 'ς', true, 'final sigma'],
|
218
|
+
['σ', 'σ', true, 'sigma'],
|
219
|
+
['τ', 'τ', true, 'tau'],
|
220
|
+
['υ', 'υ', true, 'upsilon'],
|
221
|
+
['φ', 'φ', true, 'phi'],
|
222
|
+
['χ', 'χ', true, 'chi'],
|
223
|
+
['ψ', 'ψ', true, 'psi'],
|
224
|
+
['ω', 'ω', true, 'omega'],
|
225
|
+
// symbols
|
226
|
+
['ℵ', 'ℵ', false,'alef symbol'],
|
227
|
+
['ϖ', 'ϖ', false,'pi symbol'],
|
228
|
+
['ℜ', 'ℜ', false,'real part symbol'],
|
229
|
+
['ϑ','ϑ', false,'theta symbol'],
|
230
|
+
['ϒ', 'ϒ', false,'upsilon - hook symbol'],
|
231
|
+
['℘', '℘', false,'Weierstrass p'],
|
232
|
+
['ℑ', 'ℑ', false,'imaginary part'],
|
233
|
+
// arrows
|
234
|
+
['←', '←', true, 'leftwards arrow'],
|
235
|
+
['↑', '↑', true, 'upwards arrow'],
|
236
|
+
['→', '→', true, 'rightwards arrow'],
|
237
|
+
['↓', '↓', true, 'downwards arrow'],
|
238
|
+
['↔', '↔', true, 'left right arrow'],
|
239
|
+
['↵', '↵', false,'carriage return'],
|
240
|
+
['⇐', '⇐', false,'leftwards double arrow'],
|
241
|
+
['⇑', '⇑', false,'upwards double arrow'],
|
242
|
+
['⇒', '⇒', false,'rightwards double arrow'],
|
243
|
+
['⇓', '⇓', false,'downwards double arrow'],
|
244
|
+
['⇔', '⇔', false,'left right double arrow'],
|
245
|
+
['∴', '∴', false,'therefore'],
|
246
|
+
['⊂', '⊂', false,'subset of'],
|
247
|
+
['⊃', '⊃', false,'superset of'],
|
248
|
+
['⊄', '⊄', false,'not a subset of'],
|
249
|
+
['⊆', '⊆', false,'subset of or equal to'],
|
250
|
+
['⊇', '⊇', false,'superset of or equal to'],
|
251
|
+
['⊕', '⊕', false,'circled plus'],
|
252
|
+
['⊗', '⊗', false,'circled times'],
|
253
|
+
['⊥', '⊥', false,'perpendicular'],
|
254
|
+
['⋅', '⋅', false,'dot operator'],
|
255
|
+
['⌈', '⌈', false,'left ceiling'],
|
256
|
+
['⌉', '⌉', false,'right ceiling'],
|
257
|
+
['⌊', '⌊', false,'left floor'],
|
258
|
+
['⌋', '⌋', false,'right floor'],
|
259
|
+
['⟨', '〈', false,'left-pointing angle bracket'],
|
260
|
+
['⟩', '〉', false,'right-pointing angle bracket'],
|
261
|
+
['◊', '◊', true,'lozenge'],
|
262
|
+
['♠', '♠', false,'black spade suit'],
|
263
|
+
['♣', '♣', true, 'black club suit'],
|
264
|
+
['♥', '♥', true, 'black heart suit'],
|
265
|
+
['♦', '♦', true, 'black diamond suit'],
|
266
|
+
[' ', ' ', false,'en space'],
|
267
|
+
[' ', ' ', false,'em space'],
|
268
|
+
[' ', ' ', false,'thin space'],
|
269
|
+
['‌', '‌', false,'zero width non-joiner'],
|
270
|
+
['‍', '‍', false,'zero width joiner'],
|
271
|
+
['‎', '‎', false,'left-to-right mark'],
|
272
|
+
['‏', '‏', false,'right-to-left mark'],
|
273
|
+
['­', '­', false,'soft hyphen']
|
274
|
+
];
|
275
|
+
|
276
|
+
tinyMCEPopup.onInit.add(function() {
|
277
|
+
tinyMCEPopup.dom.setHTML('charmapView', renderCharMapHTML());
|
278
|
+
addKeyboardNavigation();
|
279
|
+
});
|
280
|
+
|
281
|
+
function addKeyboardNavigation(){
|
282
|
+
var tableElm, cells, settings;
|
283
|
+
|
284
|
+
cells = tinyMCEPopup.dom.select(".charmaplink", "charmapgroup");
|
285
|
+
|
286
|
+
settings ={
|
287
|
+
root: "charmapgroup",
|
288
|
+
items: cells
|
289
|
+
};
|
290
|
+
|
291
|
+
tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom);
|
292
|
+
}
|
293
|
+
|
294
|
+
function renderCharMapHTML() {
|
295
|
+
var charsPerRow = 20, tdWidth=20, tdHeight=20, i;
|
296
|
+
var html = '<div id="charmapgroup" aria-labelledby="charmap_label" tabindex="0" role="listbox">'+
|
297
|
+
'<table role="presentation" border="0" cellspacing="1" cellpadding="0" width="' + (tdWidth*charsPerRow) +
|
298
|
+
'"><tr height="' + tdHeight + '">';
|
299
|
+
var cols=-1;
|
300
|
+
|
301
|
+
for (i=0; i<charmap.length; i++) {
|
302
|
+
var previewCharFn;
|
303
|
+
|
304
|
+
if (charmap[i][2]==true) {
|
305
|
+
cols++;
|
306
|
+
previewCharFn = 'previewChar(\'' + charmap[i][1].substring(1,charmap[i][1].length) + '\',\'' + charmap[i][0].substring(1,charmap[i][0].length) + '\',\'' + charmap[i][3] + '\');';
|
307
|
+
html += ''
|
308
|
+
+ '<td class="charmap">'
|
309
|
+
+ '<a class="charmaplink" role="button" onmouseover="'+previewCharFn+'" onfocus="'+previewCharFn+'" 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] + '">'
|
310
|
+
+ charmap[i][1]
|
311
|
+
+ '</a></td>';
|
312
|
+
if ((cols+1) % charsPerRow == 0)
|
313
|
+
html += '</tr><tr height="' + tdHeight + '">';
|
314
|
+
}
|
315
|
+
}
|
316
|
+
|
317
|
+
if (cols % charsPerRow > 0) {
|
318
|
+
var padd = charsPerRow - (cols % charsPerRow);
|
319
|
+
for (var i=0; i<padd-1; i++)
|
320
|
+
html += '<td width="' + tdWidth + '" height="' + tdHeight + '" class="charmap"> </td>';
|
321
|
+
}
|
322
|
+
|
323
|
+
html += '</tr></table></div>';
|
324
|
+
|
325
|
+
return html;
|
326
|
+
}
|
327
|
+
|
328
|
+
function insertChar(chr) {
|
329
|
+
tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';');
|
330
|
+
|
331
|
+
// Refocus in window
|
332
|
+
if (tinyMCEPopup.isWindow)
|
333
|
+
window.focus();
|
334
|
+
|
335
|
+
tinyMCEPopup.editor.focus();
|
336
|
+
tinyMCEPopup.close();
|
337
|
+
}
|
338
|
+
|
339
|
+
function previewChar(codeA, codeB, codeN) {
|
340
|
+
var elmA = document.getElementById('codeA');
|
341
|
+
var elmB = document.getElementById('codeB');
|
342
|
+
var elmV = document.getElementById('codeV');
|
343
|
+
var elmN = document.getElementById('codeN');
|
344
|
+
|
345
|
+
if (codeA=='#160;') {
|
346
|
+
elmV.innerHTML = '__';
|
347
|
+
} else {
|
348
|
+
elmV.innerHTML = '&' + codeA;
|
349
|
+
}
|
350
|
+
|
351
|
+
elmB.innerHTML = '&' + codeA;
|
352
|
+
elmA.innerHTML = '&' + codeB;
|
353
|
+
elmN.innerHTML = codeN;
|
354
|
+
}
|