alchemy_cms 2.0.pre2 → 2.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +5 -1
- data/Gemfile +3 -0
- data/Rakefile +16 -14
- data/{alchemy.gemspec → alchemy_cms.gemspec} +1 -1
- data/app/models/message.rb +1 -1
- data/app/views/elements/_searchresult_view.html.erb +1 -1
- data/config/initializers/fast_gettext.rb +1 -1
- data/config/routes.rb +3 -0
- data/lib/alchemy/version.rb +1 -1
- data/lib/{alchemy.rb → alchemy_cms.rb} +0 -0
- data/lib/rails/generators/alchemy/scaffold/scaffold_generator.rb +2 -2
- data/lib/rails/templates/alchemy.rb +1 -1
- data/spec/alchemy_spec.rb +7 -0
- data/spec/config_spec.rb +7 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/alchemy/config.yml +199 -0
- data/spec/dummy/config/alchemy/elements.yml +91 -0
- data/spec/dummy/config/alchemy/page_layouts.yml +29 -0
- data/spec/dummy/config/application.rb +45 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/database.yml +22 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +26 -0
- data/spec/dummy/config/environments/production.rb +49 -0
- data/spec/dummy/config/environments/test.rb +35 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +10 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/routes.rb +58 -0
- data/spec/dummy/db/schema.rb +267 -0
- data/spec/dummy/log/production.log +0 -0
- data/spec/dummy/log/server.log +0 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +26 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/public/images/alchemy/ajax_loader.gif +0 -0
- data/spec/dummy/public/images/alchemy/alchemy-logo.png +0 -0
- data/spec/dummy/public/images/alchemy/flags.png +0 -0
- data/spec/dummy/public/images/alchemy/gui/navi-tab.png +0 -0
- data/spec/dummy/public/images/alchemy/gui/shading.png +0 -0
- data/spec/dummy/public/images/alchemy/gui/shading_90.png +0 -0
- data/spec/dummy/public/images/alchemy/gui/toggle.png +0 -0
- data/spec/dummy/public/images/alchemy/icons.png +0 -0
- data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow.gif +0 -0
- data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow_bg.gif +0 -0
- data/spec/dummy/public/images/alchemy/jquery-sb/select_arrow_bg_hover.gif +0 -0
- data/spec/dummy/public/images/alchemy/jquery-ui/ui-icons_666666_256x240.png +0 -0
- data/spec/dummy/public/images/alchemy/placeholder.png +0 -0
- data/spec/dummy/public/images/alchemy/swfupload/browse_button.png +0 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.element_editor_selector.js +88 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.growler.js +44 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.image_cropper.js +56 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.js +892 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.link_overlay.js +221 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.page_sorter.js +42 -0
- data/spec/dummy/public/javascripts/alchemy/alchemy.preview.js +145 -0
- data/spec/dummy/public/javascripts/alchemy/jquery-ui.js +428 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.Jcrop.min.js +246 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.dialogextend.min.js +8 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.in-place-edit.js +171 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.js +18 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.rails.js +315 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.sb.min.js +14 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.scrollTo-1.4.2-min.js +11 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.ui.nestedSortable.js +291 -0
- data/spec/dummy/public/javascripts/alchemy/jquery.ui.tabspaging.js +281 -0
- data/spec/dummy/public/javascripts/alchemy/swfupload/fileprogress.js +203 -0
- data/spec/dummy/public/javascripts/alchemy/swfupload/handlers.js +171 -0
- data/spec/dummy/public/javascripts/alchemy/swfupload/queue.js +98 -0
- data/spec/dummy/public/javascripts/alchemy/swfupload/swfupload.js +980 -0
- data/spec/dummy/public/javascripts/alchemy/swfupload/swfupload.swf +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/jquery.tinymce.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/langs/de.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/langs/en.js +223 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/license.txt +504 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/editor_plugin.js +43 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/langs/de.js +4 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/alchemy_link/langs/en.js +4 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/fullscreen/editor_plugin.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/fullscreen/fullscreen.htm +109 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/editor_plugin.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/skins/alchemy/window.css +402 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/inlinepopups/template.htm +387 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/lists/editor_plugin.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/editor_plugin.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/js/pastetext.js +36 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/js/pasteword.js +51 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/langs/de_dlg.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/langs/en_dlg.js +5 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/pastetext.htm +27 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/paste/pasteword.htm +21 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/cell.htm +180 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/cell.css +17 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/row.css +25 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/css/table.css +13 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/editor_plugin.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/cell.js +319 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/merge_cells.js +27 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/row.js +237 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/js/table.js +450 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/langs/de_dlg.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/langs/en_dlg.js +75 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/merge_cells.htm +32 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/row.htm +158 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/plugins/table/table.htm +188 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/about.htm +52 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/anchor.htm +26 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/charmap.htm +51 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/color_picker.htm +74 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/editor_template.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/image.htm +80 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/colorpicker.jpg +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/flash.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/icons.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/iframe.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/pagebreak.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/quicktime.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/realmedia.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/shockwave.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/trans.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/video.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/img/windowsmedia.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/about.js +73 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/anchor.js +42 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/charmap.js +355 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/color_picker.js +329 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/image.js +247 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/link.js +153 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/js/source_editor.js +56 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/de.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/de_dlg.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/en.js +68 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/langs/en_dlg.js +54 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/link.htm +57 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/shortcuts.htm +47 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/content.css +47 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/dialog.css +117 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/buttons.png +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/items.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/menu_check.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/progress.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/img/tabs.gif +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/default/ui.css +214 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/content.css +23 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/dialog.css +105 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/highcontrast/ui.css +102 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/content.css +46 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/dialog.css +117 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png +0 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui.css +217 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui_black.css +8 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css +5 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/advanced/source_editor.htm +25 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/themes/simple/langs/de.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/tiny_mce.js +1 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/tiny_mce_popup.js +5 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/editable_selects.js +70 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/form_utils.js +210 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/mctabs.js +162 -0
- data/spec/dummy/public/javascripts/alchemy/tiny_mce/utils/validate.js +252 -0
- data/spec/dummy/public/javascripts/application.js +2 -0
- data/spec/dummy/public/javascripts/controls.js +965 -0
- data/spec/dummy/public/javascripts/dragdrop.js +974 -0
- data/spec/dummy/public/javascripts/effects.js +1123 -0
- data/spec/dummy/public/javascripts/prototype.js +6001 -0
- data/spec/dummy/public/javascripts/rails.js +191 -0
- data/spec/dummy/public/stylesheets/.gitkeep +0 -0
- data/spec/dummy/public/stylesheets/alchemy/Jcrop.gif +0 -0
- data/spec/dummy/public/stylesheets/alchemy/alchemy.css +3629 -0
- data/spec/dummy/public/stylesheets/alchemy/alchemy_tinymce_content.css +94 -0
- data/spec/dummy/public/stylesheets/alchemy/alchemy_tinymce_dialog.css +415 -0
- data/spec/dummy/public/stylesheets/alchemy/default/img/tabs.gif +0 -0
- data/spec/dummy/public/stylesheets/alchemy/elements.css +900 -0
- data/spec/dummy/public/stylesheets/alchemy/flags.css +1 -0
- data/spec/dummy/public/stylesheets/alchemy/ie6.css +18 -0
- data/spec/dummy/public/stylesheets/alchemy/jquery-ui-1.8.7.alchemy.css +2023 -0
- data/spec/dummy/public/stylesheets/alchemy/jquery.Jcrop.css +35 -0
- data/spec/dummy/public/stylesheets/alchemy/jquery.sb.css +244 -0
- data/spec/dummy/public/stylesheets/alchemy/standard_set.css +374 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/integration/navigation_spec.rb +9 -0
- data/spec/integration/security_spec.rb +25 -0
- data/spec/spec_helper.rb +40 -0
- metadata +371 -8
@@ -0,0 +1,52 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title>{#advanced_dlg.about_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="js/about.js"></script>
|
8
|
+
</head>
|
9
|
+
<body id="about" style="display: none">
|
10
|
+
<div class="tabs">
|
11
|
+
<ul>
|
12
|
+
<li id="general_tab" class="current" aria-controls="general_panel"><span><a href="javascript:mcTabs.displayTab('general_tab','general_panel');" onmousedown="return false;">{#advanced_dlg.about_general}</a></span></li>
|
13
|
+
<li id="help_tab" style="display:none" aria-hidden="true" aria-controls="help_panel"><span><a href="javascript:mcTabs.displayTab('help_tab','help_panel');" onmousedown="return false;">{#advanced_dlg.about_help}</a></span></li>
|
14
|
+
<li id="plugins_tab" aria-controls="plugins_panel"><span><a href="javascript:mcTabs.displayTab('plugins_tab','plugins_panel');" onmousedown="return false;">{#advanced_dlg.about_plugins}</a></span></li>
|
15
|
+
</ul>
|
16
|
+
</div>
|
17
|
+
|
18
|
+
<div class="panel_wrapper">
|
19
|
+
<div id="general_panel" class="panel current">
|
20
|
+
<h3>{#advanced_dlg.about_title}</h3>
|
21
|
+
<p>Version: <span id="version"></span> (<span id="date"></span>)</p>
|
22
|
+
<p>TinyMCE is a platform independent web based Javascript HTML WYSIWYG editor control released as Open Source under <a href="../../license.txt" target="_blank">LGPL</a>
|
23
|
+
by Moxiecode Systems AB. It has the ability to convert HTML TEXTAREA fields or other HTML elements to editor instances.</p>
|
24
|
+
<p>Copyright © 2003-2008, <a href="http://www.moxiecode.com" target="_blank">Moxiecode Systems AB</a>, All rights reserved.</p>
|
25
|
+
<p>For more information about this software visit the <a href="http://tinymce.moxiecode.com" target="_blank">TinyMCE website</a>.</p>
|
26
|
+
|
27
|
+
<div id="buttoncontainer">
|
28
|
+
<a href="http://www.moxiecode.com" target="_blank"><img src="http://tinymce.moxiecode.com/images/gotmoxie.png" alt="Got Moxie?" border="0" /></a>
|
29
|
+
</div>
|
30
|
+
</div>
|
31
|
+
|
32
|
+
<div id="plugins_panel" class="panel">
|
33
|
+
<div id="pluginscontainer">
|
34
|
+
<h3>{#advanced_dlg.about_loaded}</h3>
|
35
|
+
|
36
|
+
<div id="plugintablecontainer">
|
37
|
+
</div>
|
38
|
+
|
39
|
+
<p> </p>
|
40
|
+
</div>
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div id="help_panel" class="panel noscroll" style="overflow: visible;">
|
44
|
+
<div id="iframecontainer"></div>
|
45
|
+
</div>
|
46
|
+
</div>
|
47
|
+
|
48
|
+
<div class="mceActionPanel">
|
49
|
+
<input type="button" id="cancel" name="cancel" value="{#close}" onclick="tinyMCEPopup.close();" />
|
50
|
+
</div>
|
51
|
+
</body>
|
52
|
+
</html>
|
@@ -0,0 +1,26 @@
|
|
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.anchor_title}</title>
|
5
|
+
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
6
|
+
<script type="text/javascript" src="js/anchor.js"></script>
|
7
|
+
</head>
|
8
|
+
<body style="display: none" role="application" aria-labelledby="app_title">
|
9
|
+
<form onsubmit="AnchorDialog.update();return false;" action="#">
|
10
|
+
<table border="0" cellpadding="4" cellspacing="0" role="presentation">
|
11
|
+
<tr>
|
12
|
+
<td colspan="2" class="title" id="app_title">{#advanced_dlg.anchor_title}</td>
|
13
|
+
</tr>
|
14
|
+
<tr>
|
15
|
+
<td class="nowrap"><label for="anchorName">{#advanced_dlg.anchor_name}:</label></td>
|
16
|
+
<td><input name="anchorName" type="text" class="mceFocus" id="anchorName" value="" style="width: 200px" aria-required="true" /></td>
|
17
|
+
</tr>
|
18
|
+
</table>
|
19
|
+
|
20
|
+
<div class="mceActionPanel">
|
21
|
+
<input type="submit" id="insert" name="insert" value="{#update}" />
|
22
|
+
<input type="button" id="cancel" name="cancel" value="{#cancel}" onclick="tinyMCEPopup.close();" />
|
23
|
+
</div>
|
24
|
+
</form>
|
25
|
+
</body>
|
26
|
+
</html>
|
@@ -0,0 +1,51 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml">
|
3
|
+
<head>
|
4
|
+
<title>{#advanced_dlg.charmap_title}</title>
|
5
|
+
<script type="text/javascript" src="../../tiny_mce_popup.js"></script>
|
6
|
+
<script type="text/javascript" src="js/charmap.js"></script>
|
7
|
+
</head>
|
8
|
+
<body id="charmap" style="display:none">
|
9
|
+
<table align="center" border="0" cellspacing="0" cellpadding="2" role="presentation">
|
10
|
+
<tr>
|
11
|
+
<td colspan="2" class="title" ><label for="charmapView" id="charmap_label">{#advanced_dlg.charmap_title}</label></td>
|
12
|
+
</tr>
|
13
|
+
<tr>
|
14
|
+
<td id="charmapView" rowspan="2" align="left" valign="top">
|
15
|
+
<!-- Chars will be rendered here -->
|
16
|
+
</td>
|
17
|
+
<td width="100" align="center" valign="top">
|
18
|
+
<table border="0" cellpadding="0" cellspacing="0" width="100" style="height:100px" role="presentation">
|
19
|
+
<tr>
|
20
|
+
<td id="codeV"> </td>
|
21
|
+
</tr>
|
22
|
+
<tr>
|
23
|
+
<td id="codeN"> </td>
|
24
|
+
</tr>
|
25
|
+
</table>
|
26
|
+
</td>
|
27
|
+
</tr>
|
28
|
+
<tr>
|
29
|
+
<td valign="bottom" style="padding-bottom: 3px;">
|
30
|
+
<table width="100" align="center" border="0" cellpadding="2" cellspacing="0" role="presentation">
|
31
|
+
<tr>
|
32
|
+
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;"><label for="codeA">HTML-Code</label></td>
|
33
|
+
</tr>
|
34
|
+
<tr>
|
35
|
+
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeA" align="center"> </td>
|
36
|
+
</tr>
|
37
|
+
<tr>
|
38
|
+
<td style="font-size: 1px;"> </td>
|
39
|
+
</tr>
|
40
|
+
<tr>
|
41
|
+
<td align="center" style="border-left: 1px solid #666699; border-top: 1px solid #666699; border-right: 1px solid #666699;"><label for="codeB">NUM-Code</label></td>
|
42
|
+
</tr>
|
43
|
+
<tr>
|
44
|
+
<td style="font-size: 16px; font-weight: bold; border-left: 1px solid #666699; border-bottom: 1px solid #666699; border-right: 1px solid #666699;" id="codeB" align="center"> </td>
|
45
|
+
</tr>
|
46
|
+
</table>
|
47
|
+
</td>
|
48
|
+
</tr>
|
49
|
+
</table>
|
50
|
+
</body>
|
51
|
+
</html>
|
@@ -0,0 +1,74 @@
|
|
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.colorpicker_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="js/color_picker.js"></script>
|
8
|
+
</head>
|
9
|
+
<body id="colorpicker" style="display: none" role="application" aria-labelledby="app_label">
|
10
|
+
<span class="mceVoiceLabel" id="app_label" style="display:none;">{#advanced_dlg.colorpicker_title}</span>
|
11
|
+
<form onsubmit="insertAction();return false" action="#">
|
12
|
+
<div class="tabs">
|
13
|
+
<ul>
|
14
|
+
<li id="picker_tab" aria-controls="picker_panel" class="current"><span><a href="javascript:mcTabs.displayTab('picker_tab','picker_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_picker_tab}</a></span></li>
|
15
|
+
<li id="rgb_tab" aria-controls="rgb_panel"><span><a href="javascript:;" onclick="mcTabs.displayTab('rgb_tab','rgb_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_palette_tab}</a></span></li>
|
16
|
+
<li id="named_tab" aria-controls="named_panel"><span><a href="javascript:;" onclick="javascript:mcTabs.displayTab('named_tab','named_panel');" onmousedown="return false;">{#advanced_dlg.colorpicker_named_tab}</a></span></li>
|
17
|
+
</ul>
|
18
|
+
</div>
|
19
|
+
|
20
|
+
<div class="panel_wrapper">
|
21
|
+
<div id="picker_panel" class="panel current">
|
22
|
+
<fieldset>
|
23
|
+
<legend>{#advanced_dlg.colorpicker_picker_title}</legend>
|
24
|
+
<div id="picker">
|
25
|
+
<img id="colors" src="img/colorpicker.jpg" onclick="computeColor(event)" onmousedown="isMouseDown = true;return false;" onmouseup="isMouseDown = false;" onmousemove="if (isMouseDown && isMouseOver) computeColor(event); return false;" onmouseover="isMouseOver=true;" onmouseout="isMouseOver=false;" alt="" />
|
26
|
+
|
27
|
+
<div id="light">
|
28
|
+
<!-- Will be filled with divs -->
|
29
|
+
</div>
|
30
|
+
|
31
|
+
<br style="clear: both" />
|
32
|
+
</div>
|
33
|
+
</fieldset>
|
34
|
+
</div>
|
35
|
+
|
36
|
+
<div id="rgb_panel" class="panel">
|
37
|
+
<fieldset>
|
38
|
+
<legend id="webcolors_title">{#advanced_dlg.colorpicker_palette_title}</legend>
|
39
|
+
<div id="webcolors">
|
40
|
+
<!-- Gets filled with web safe colors-->
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<br style="clear: both" />
|
44
|
+
</fieldset>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<div id="named_panel" class="panel">
|
48
|
+
<fieldset id="named_picker_label">
|
49
|
+
<legend id="named_title">{#advanced_dlg.colorpicker_named_title}</legend>
|
50
|
+
<div id="namedcolors" role="listbox" tabindex="0" aria-labelledby="named_picker_label">
|
51
|
+
<!-- Gets filled with named colors-->
|
52
|
+
</div>
|
53
|
+
|
54
|
+
<br style="clear: both" />
|
55
|
+
|
56
|
+
<div id="colornamecontainer">
|
57
|
+
{#advanced_dlg.colorpicker_name} <span id="colorname"></span>
|
58
|
+
</div>
|
59
|
+
</fieldset>
|
60
|
+
</div>
|
61
|
+
</div>
|
62
|
+
|
63
|
+
<div class="mceActionPanel">
|
64
|
+
<input type="submit" id="insert" name="insert" value="{#apply}" />
|
65
|
+
|
66
|
+
<div id="preview"></div>
|
67
|
+
|
68
|
+
<div id="previewblock">
|
69
|
+
<label for="color">{#advanced_dlg.colorpicker_color}</label> <input id="color" type="text" size="8" class="text mceFocus" aria-required="true" />
|
70
|
+
</div>
|
71
|
+
</div>
|
72
|
+
</form>
|
73
|
+
</body>
|
74
|
+
</html>
|
@@ -0,0 +1 @@
|
|
1
|
+
(function(e){var d=e.DOM,b=e.dom.Event,h=e.extend,f=e.each,a=e.util.Cookie,g,c=e.explode;e.ThemeManager.requireLangPack("advanced");e.create("tinymce.themes.AdvancedTheme",{sizes:[8,10,12,14,18,24,36],controls:{bold:["bold_desc","Bold"],italic:["italic_desc","Italic"],underline:["underline_desc","Underline"],strikethrough:["striketrough_desc","Strikethrough"],justifyleft:["justifyleft_desc","JustifyLeft"],justifycenter:["justifycenter_desc","JustifyCenter"],justifyright:["justifyright_desc","JustifyRight"],justifyfull:["justifyfull_desc","JustifyFull"],bullist:["bullist_desc","InsertUnorderedList"],numlist:["numlist_desc","InsertOrderedList"],outdent:["outdent_desc","Outdent"],indent:["indent_desc","Indent"],cut:["cut_desc","Cut"],copy:["copy_desc","Copy"],paste:["paste_desc","Paste"],undo:["undo_desc","Undo"],redo:["redo_desc","Redo"],link:["link_desc","mceLink"],unlink:["unlink_desc","unlink"],image:["image_desc","mceImage"],cleanup:["cleanup_desc","mceCleanup"],help:["help_desc","mceHelp"],code:["code_desc","mceCodeEditor"],hr:["hr_desc","InsertHorizontalRule"],removeformat:["removeformat_desc","RemoveFormat"],sub:["sub_desc","subscript"],sup:["sup_desc","superscript"],forecolor:["forecolor_desc","ForeColor"],forecolorpicker:["forecolor_desc","mceForeColor"],backcolor:["backcolor_desc","HiliteColor"],backcolorpicker:["backcolor_desc","mceBackColor"],charmap:["charmap_desc","mceCharMap"],visualaid:["visualaid_desc","mceToggleVisualAid"],anchor:["anchor_desc","mceInsertAnchor"],newdocument:["newdocument_desc","mceNewDocument"],blockquote:["blockquote_desc","mceBlockQuote"]},stateControls:["bold","italic","underline","strikethrough","bullist","numlist","justifyleft","justifycenter","justifyright","justifyfull","sub","sup","blockquote"],init:function(j,k){var l=this,m,i,n;l.editor=j;l.url=k;l.onResolveName=new e.util.Dispatcher(this);j.forcedHighContrastMode=j.settings.detect_highcontrast&&l._isHighContrast();j.settings.skin=j.forcedHighContrastMode?"highcontrast":j.settings.skin;l.settings=m=h({theme_advanced_path:true,theme_advanced_toolbar_location:"bottom",theme_advanced_buttons1:"bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,|,styleselect,formatselect",theme_advanced_buttons2:"bullist,numlist,|,outdent,indent,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code",theme_advanced_buttons3:"hr,removeformat,visualaid,|,sub,sup,|,charmap",theme_advanced_blockformats:"p,address,pre,h1,h2,h3,h4,h5,h6",theme_advanced_toolbar_align:"center",theme_advanced_fonts:"Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Verdana=verdana,geneva;Webdings=webdings;Wingdings=wingdings,zapf dingbats",theme_advanced_more_colors:1,theme_advanced_row_height:23,theme_advanced_resize_horizontal:1,theme_advanced_resizing_use_cookie:1,theme_advanced_font_sizes:"1,2,3,4,5,6,7",theme_advanced_font_selector:"span",theme_advanced_show_current_color:0,readonly:j.settings.readonly},j.settings);if(!m.font_size_style_values){m.font_size_style_values="8pt,10pt,12pt,14pt,18pt,24pt,36pt"}if(e.is(m.theme_advanced_font_sizes,"string")){m.font_size_style_values=e.explode(m.font_size_style_values);m.font_size_classes=e.explode(m.font_size_classes||"");n={};j.settings.theme_advanced_font_sizes=m.theme_advanced_font_sizes;f(j.getParam("theme_advanced_font_sizes","","hash"),function(q,p){var o;if(p==q&&q>=1&&q<=7){p=q+" ("+l.sizes[q-1]+"pt)";o=m.font_size_classes[q-1];q=m.font_size_style_values[q-1]||(l.sizes[q-1]+"pt")}if(/^\s*\./.test(q)){o=q.replace(/\./g,"")}n[p]=o?{"class":o}:{fontSize:q}});m.theme_advanced_font_sizes=n}if((i=m.theme_advanced_path_location)&&i!="none"){m.theme_advanced_statusbar_location=m.theme_advanced_path_location}if(m.theme_advanced_statusbar_location=="none"){m.theme_advanced_statusbar_location=0}if(j.settings.content_css!==false){j.contentCSS.push(j.baseURI.toAbsolute(k+"/skins/"+j.settings.skin+"/content.css"))}j.onInit.add(function(){if(!j.settings.readonly){j.onNodeChange.add(l._nodeChanged,l);j.onKeyUp.add(l._updateUndoStatus,l);j.onMouseUp.add(l._updateUndoStatus,l);j.dom.bind(j.dom.getRoot(),"dragend",function(){l._updateUndoStatus(j)})}});j.onSetProgressState.add(function(q,o,r){var s,t=q.id,p;if(o){l.progressTimer=setTimeout(function(){s=q.getContainer();s=s.insertBefore(d.create("DIV",{style:"position:relative"}),s.firstChild);p=d.get(q.id+"_tbl");d.add(s,"div",{id:t+"_blocker","class":"mceBlocker",style:{width:p.clientWidth+2,height:p.clientHeight+2}});d.add(s,"div",{id:t+"_progress","class":"mceProgress",style:{left:p.clientWidth/2,top:p.clientHeight/2}})},r||0)}else{d.remove(t+"_blocker");d.remove(t+"_progress");clearTimeout(l.progressTimer)}});d.loadCSS(m.editor_css?j.documentBaseURI.toAbsolute(m.editor_css):k+"/skins/"+j.settings.skin+"/ui.css");if(m.skin_variant){d.loadCSS(k+"/skins/"+j.settings.skin+"/ui_"+m.skin_variant+".css")}},_isHighContrast:function(){var i,j=d.add(d.getRoot(),"div",{style:"background-color: rgb(171,239,86);"});i=(d.getStyle(j,"background-color",true)+"").toLowerCase().replace(/ /g,"");d.remove(j);return i!="rgb(171,239,86)"&&i!="#abef56"},createControl:function(l,i){var j,k;if(k=i.createControl(l)){return k}switch(l){case"styleselect":return this._createStyleSelect();case"formatselect":return this._createBlockFormats();case"fontselect":return this._createFontSelect();case"fontsizeselect":return this._createFontSizeSelect();case"forecolor":return this._createForeColorMenu();case"backcolor":return this._createBackColorMenu()}if((j=this.controls[l])){return i.createButton(l,{title:"advanced."+j[0],cmd:j[1],ui:j[2],value:j[3]})}},execCommand:function(k,j,l){var i=this["_"+k];if(i){i.call(this,j,l);return true}return false},_importClasses:function(k){var i=this.editor,j=i.controlManager.get("styleselect");if(j.getLength()==0){f(i.dom.getClasses(),function(n,l){var m="style_"+l;i.formatter.register(m,{inline:"span",attributes:{"class":n["class"]},selector:"*"});j.add(n["class"],m)})}},_createStyleSelect:function(m){var k=this,i=k.editor,j=i.controlManager,l;l=j.createListBox("styleselect",{title:"advanced.style_select",onselect:function(o){var p,n=[];f(l.items,function(q){n.push(q.value)});i.focus();i.undoManager.add();p=i.formatter.matchAll(n);if(!o||p[0]==o){if(p[0]){i.formatter.remove(p[0])}}else{i.formatter.apply(o)}i.undoManager.add();i.nodeChanged();return false}});i.onInit.add(function(){var o=0,n=i.getParam("style_formats");if(n){f(n,function(p){var q,r=0;f(p,function(){r++});if(r>1){q=p.name=p.name||"style_"+(o++);i.formatter.register(q,p);l.add(p.title,q)}else{l.add(p.title)}})}else{f(i.getParam("theme_advanced_styles","","hash"),function(r,q){var p;if(r){p="style_"+(o++);i.formatter.register(p,{inline:"span",classes:r,selector:"*"});l.add(k.editor.translate(q),p)}})}});if(l.getLength()==0){l.onPostRender.add(function(o,p){if(!l.NativeListBox){b.add(p.id+"_text","focus",k._importClasses,k);b.add(p.id+"_text","mousedown",k._importClasses,k);b.add(p.id+"_open","focus",k._importClasses,k);b.add(p.id+"_open","mousedown",k._importClasses,k)}else{b.add(p.id,"focus",k._importClasses,k)}})}return l},_createFontSelect:function(){var k,j=this,i=j.editor;k=i.controlManager.createListBox("fontselect",{title:"advanced.fontdefault",onselect:function(l){var m=k.items[k.selectedIndex];if(!l&&m){i.execCommand("FontName",false,m.value);return}i.execCommand("FontName",false,l);k.select(function(n){return l==n});if(m&&m.value==l){k.select(null)}return false}});if(k){f(i.getParam("theme_advanced_fonts",j.settings.theme_advanced_fonts,"hash"),function(m,l){k.add(i.translate(l),m,{style:m.indexOf("dings")==-1?"font-family:"+m:""})})}return k},_createFontSizeSelect:function(){var m=this,k=m.editor,n,l=0,j=[];n=k.controlManager.createListBox("fontsizeselect",{title:"advanced.font_size",onselect:function(i){var o=n.items[n.selectedIndex];if(!i&&o){o=o.value;if(o["class"]){k.formatter.toggle("fontsize_class",{value:o["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,o.fontSize)}return}if(i["class"]){k.focus();k.undoManager.add();k.formatter.toggle("fontsize_class",{value:i["class"]});k.undoManager.add();k.nodeChanged()}else{k.execCommand("FontSize",false,i.fontSize)}n.select(function(p){return i==p});if(o&&(o.value.fontSize==i.fontSize||o.value["class"]==i["class"])){n.select(null)}return false}});if(n){f(m.settings.theme_advanced_font_sizes,function(o,i){var p=o.fontSize;if(p>=1&&p<=7){p=m.sizes[parseInt(p)-1]+"pt"}n.add(i,o,{style:"font-size:"+p,"class":"mceFontSize"+(l++)+(" "+(o["class"]||""))})})}return n},_createBlockFormats:function(){var k,i={p:"advanced.paragraph",address:"advanced.address",pre:"advanced.pre",h1:"advanced.h1",h2:"advanced.h2",h3:"advanced.h3",h4:"advanced.h4",h5:"advanced.h5",h6:"advanced.h6",div:"advanced.div",blockquote:"advanced.blockquote",code:"advanced.code",dt:"advanced.dt",dd:"advanced.dd",samp:"advanced.samp"},j=this;k=j.editor.controlManager.createListBox("formatselect",{title:"advanced.block",onselect:function(l){j.editor.execCommand("FormatBlock",false,l);return false}});if(k){f(j.editor.getParam("theme_advanced_blockformats",j.settings.theme_advanced_blockformats,"hash"),function(m,l){k.add(j.editor.translate(l!=m?l:i[m]),m,{"class":"mce_formatPreview mce_"+m})})}return k},_createForeColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_text_colors){l.colors=i}if(k.theme_advanced_default_foreground_color){l.default_color=k.theme_advanced_default_foreground_color}l.title="advanced.forecolor_desc";l.cmd="ForeColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("forecolor",l);return m},_createBackColorMenu:function(){var m,j=this,k=j.settings,l={},i;if(k.theme_advanced_more_colors){l.more_colors_func=function(){j._mceColorPicker(0,{color:m.value,func:function(n){m.setColor(n)}})}}if(i=k.theme_advanced_background_colors){l.colors=i}if(k.theme_advanced_default_background_color){l.default_color=k.theme_advanced_default_background_color}l.title="advanced.backcolor_desc";l.cmd="HiliteColor";l.scope=this;m=j.editor.controlManager.createColorSplitButton("backcolor",l);return m},renderUI:function(k){var m,l,q,v=this,r=v.editor,w=v.settings,u,j,i;if(r.settings){r.settings.aria_label=w.aria_label+r.getLang("advanced.help_shortcut")}m=j=d.create("span",{role:"application","aria-labelledby":r.id+"_voice",id:r.id+"_parent","class":"mceEditor "+r.settings.skin+"Skin"+(w.skin_variant?" "+r.settings.skin+"Skin"+v._ufirst(w.skin_variant):"")});d.add(m,"span",{"class":"mceVoiceLabel",style:"display:none;",id:r.id+"_voice"},w.aria_label);if(!d.boxModel){m=d.add(m,"div",{"class":"mceOldBoxModel"})}m=u=d.add(m,"table",{role:"presentation",id:r.id+"_tbl","class":"mceLayout",cellSpacing:0,cellPadding:0});m=q=d.add(m,"tbody");switch((w.theme_advanced_layout_manager||"").toLowerCase()){case"rowlayout":l=v._rowLayout(w,q,k);break;case"customlayout":l=r.execCallback("theme_advanced_custom_layout",w,q,k,j);break;default:l=v._simpleLayout(w,q,k,j)}m=k.targetNode;i=u.rows;d.addClass(i[0],"mceFirst");d.addClass(i[i.length-1],"mceLast");f(d.select("tr",q),function(o){d.addClass(o.firstChild,"mceFirst");d.addClass(o.childNodes[o.childNodes.length-1],"mceLast")});if(d.get(w.theme_advanced_toolbar_container)){d.get(w.theme_advanced_toolbar_container).appendChild(j)}else{d.insertAfter(j,m)}b.add(r.id+"_path_row","click",function(n){n=n.target;if(n.nodeName=="A"){v._sel(n.className.replace(/^.*mcePath_([0-9]+).*$/,"$1"));return b.cancel(n)}});if(!r.getParam("accessibility_focus")){b.add(d.add(j,"a",{href:"#"},"<!-- IE -->"),"focus",function(){tinyMCE.get(r.id).focus()})}if(w.theme_advanced_toolbar_location=="external"){k.deltaHeight=0}v.deltaHeight=k.deltaHeight;k.targetNode=null;r.onKeyDown.add(function(p,n){var s=121,o=122;if(n.altKey){if(n.keyCode===s){window.focus();v.toolbarGroup.focus();return b.cancel(n)}else{if(n.keyCode===o){d.get(p.id+"_path_row").focus();return b.cancel(n)}}}});r.addShortcut("alt+0","","mceShortcuts",v);return{iframeContainer:l,editorContainer:r.id+"_parent",sizeContainer:u,deltaHeight:k.deltaHeight}},getInfo:function(){return{longname:"Advanced theme",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",version:e.majorVersion+"."+e.minorVersion}},resizeBy:function(i,j){var k=d.get(this.editor.id+"_ifr");this.resizeTo(k.clientWidth+i,k.clientHeight+j)},resizeTo:function(i,m,k){var j=this.editor,l=this.settings,n=d.get(j.id+"_tbl"),o=d.get(j.id+"_ifr");i=Math.max(l.theme_advanced_resizing_min_width||100,i);m=Math.max(l.theme_advanced_resizing_min_height||100,m);i=Math.min(l.theme_advanced_resizing_max_width||65535,i);m=Math.min(l.theme_advanced_resizing_max_height||65535,m);d.setStyle(n,"height","");d.setStyle(o,"height",m);if(l.theme_advanced_resize_horizontal){d.setStyle(n,"width","");d.setStyle(o,"width",i);if(i<n.clientWidth){i=n.clientWidth;d.setStyle(o,"width",n.clientWidth)}}if(k&&l.theme_advanced_resizing_use_cookie){a.setHash("TinyMCE_"+j.id+"_size",{cw:i,ch:m})}},destroy:function(){var i=this.editor.id;b.clear(i+"_resize");b.clear(i+"_path_row");b.clear(i+"_external_close")},_simpleLayout:function(y,r,k,i){var x=this,u=x.editor,v=y.theme_advanced_toolbar_location,m=y.theme_advanced_statusbar_location,l,j,q,w;if(y.readonly){l=d.add(r,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"});return j}if(v=="top"){x._addToolbars(r,k)}if(v=="external"){l=w=d.create("div",{style:"position:relative"});l=d.add(l,"div",{id:u.id+"_external","class":"mceExternalToolbar"});d.add(l,"a",{id:u.id+"_external_close",href:"javascript:;","class":"mceExternalClose"});l=d.add(l,"table",{id:u.id+"_tblext",cellSpacing:0,cellPadding:0});q=d.add(l,"tbody");if(i.firstChild.className=="mceOldBoxModel"){i.firstChild.appendChild(w)}else{i.insertBefore(w,i.firstChild)}x._addToolbars(q,k);u.onMouseUp.add(function(){var o=d.get(u.id+"_external");d.show(o);d.hide(g);var n=b.add(u.id+"_external_close","click",function(){d.hide(u.id+"_external");b.remove(u.id+"_external_close","click",n)});d.show(o);d.setStyle(o,"top",0-d.getRect(u.id+"_tblext").h-1);d.hide(o);d.show(o);o.style.filter="";g=u.id+"_external";o=null})}if(m=="top"){x._addStatusBar(r,k)}if(!y.theme_advanced_toolbar_container){l=d.add(r,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"})}if(v=="bottom"){x._addToolbars(r,k)}if(m=="bottom"){x._addStatusBar(r,k)}return j},_rowLayout:function(w,m,k){var v=this,p=v.editor,u,x,i=p.controlManager,l,j,r,q;u=w.theme_advanced_containers_default_class||"";x=w.theme_advanced_containers_default_align||"center";f(c(w.theme_advanced_containers||""),function(s,o){var n=w["theme_advanced_container_"+s]||"";switch(s.toLowerCase()){case"mceeditor":l=d.add(m,"tr");l=j=d.add(l,"td",{"class":"mceIframeContainer"});break;case"mceelementpath":v._addStatusBar(m,k);break;default:q=(w["theme_advanced_container_"+s+"_align"]||x).toLowerCase();q="mce"+v._ufirst(q);l=d.add(d.add(m,"tr"),"td",{"class":"mceToolbar "+(w["theme_advanced_container_"+s+"_class"]||u)+" "+q||x});r=i.createToolbar("toolbar"+o);v._addControls(n,r);d.setHTML(l,r.renderHTML());k.deltaHeight-=w.theme_advanced_row_height}});return j},_addControls:function(j,i){var k=this,l=k.settings,m,n=k.editor.controlManager;if(l.theme_advanced_disable&&!k._disabled){m={};f(c(l.theme_advanced_disable),function(o){m[o]=1});k._disabled=m}else{m=k._disabled}f(c(j),function(p){var o;if(m&&m[p]){return}if(p=="tablecontrols"){f(["table","|","row_props","cell_props","|","row_before","row_after","delete_row","|","col_before","col_after","delete_col","|","split_cells","merge_cells"],function(q){q=k.createControl(q,n);if(q){i.add(q)}});return}o=k.createControl(p,n);if(o){i.add(o)}})},_addToolbars:function(x,k){var A=this,p,m,r=A.editor,B=A.settings,z,j=r.controlManager,u,l,q=[],y,w;w=j.createToolbarGroup("toolbargroup",{name:r.getLang("advanced.toolbar"),tab_focus_toolbar:r.getParam("theme_advanced_tab_focus_toolbar")});A.toolbarGroup=w;y=B.theme_advanced_toolbar_align.toLowerCase();y="mce"+A._ufirst(y);l=d.add(d.add(x,"tr",{role:"presentation"}),"td",{"class":"mceToolbar "+y,role:"presentation"});for(p=1;(z=B["theme_advanced_buttons"+p]);p++){m=j.createToolbar("toolbar"+p,{"class":"mceToolbarRow"+p});if(B["theme_advanced_buttons"+p+"_add"]){z+=","+B["theme_advanced_buttons"+p+"_add"]}if(B["theme_advanced_buttons"+p+"_add_before"]){z=B["theme_advanced_buttons"+p+"_add_before"]+","+z}A._addControls(z,m);w.add(m);k.deltaHeight-=B.theme_advanced_row_height}q.push(w.renderHTML());q.push(d.createHTML("a",{href:"#",accesskey:"z",title:r.getLang("advanced.toolbar_focus"),onfocus:"tinyMCE.getInstanceById('"+r.id+"').focus();"},"<!-- IE -->"));d.setHTML(l,q.join(""))},_addStatusBar:function(m,j){var k,v=this,p=v.editor,w=v.settings,i,q,u,l;k=d.add(m,"tr");k=l=d.add(k,"td",{"class":"mceStatusbar"});k=d.add(k,"div",{id:p.id+"_path_row",role:"group","aria-labelledby":p.id+"_path_voice"});if(w.theme_advanced_path){d.add(k,"span",{id:p.id+"_path_voice"},p.translate("advanced.path"));d.add(k,"span",{},": ")}else{d.add(k,"span",{}," ")}if(w.theme_advanced_resizing){d.add(l,"a",{id:p.id+"_resize",href:"javascript:;",onclick:"return false;","class":"mceResize"});if(w.theme_advanced_resizing_use_cookie){p.onPostRender.add(function(){var n=a.getHash("TinyMCE_"+p.id+"_size"),r=d.get(p.id+"_tbl");if(!n){return}v.resizeTo(n.cw,n.ch)})}p.onPostRender.add(function(){b.add(p.id+"_resize","click",function(n){n.preventDefault()});b.add(p.id+"_resize","mousedown",function(D){var t,r,s,o,C,z,A,F,n,E,x;function y(G){G.preventDefault();n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E)}function B(G){b.remove(d.doc,"mousemove",t);b.remove(p.getDoc(),"mousemove",r);b.remove(d.doc,"mouseup",s);b.remove(p.getDoc(),"mouseup",o);n=A+(G.screenX-C);E=F+(G.screenY-z);v.resizeTo(n,E,true)}D.preventDefault();C=D.screenX;z=D.screenY;x=d.get(v.editor.id+"_ifr");A=n=x.clientWidth;F=E=x.clientHeight;t=b.add(d.doc,"mousemove",y);r=b.add(p.getDoc(),"mousemove",y);s=b.add(d.doc,"mouseup",B);o=b.add(p.getDoc(),"mouseup",B)})})}j.deltaHeight-=21;k=m=null},_updateUndoStatus:function(j){var i=j.controlManager,k=j.undoManager;i.setDisabled("undo",!k.hasUndo()&&!k.typing);i.setDisabled("redo",!k.hasRedo())},_nodeChanged:function(m,r,D,q,E){var y=this,C,F=0,x,G,z=y.settings,w,k,u,B,l,j,i;e.each(y.stateControls,function(n){r.setActive(n,m.queryCommandState(y.controls[n][1]))});function o(p){var s,n=E.parents,t=p;if(typeof(p)=="string"){t=function(v){return v.nodeName==p}}for(s=0;s<n.length;s++){if(t(n[s])){return n[s]}}}r.setActive("visualaid",m.hasVisual);y._updateUndoStatus(m);r.setDisabled("outdent",!m.queryCommandState("Outdent"));C=o("A");if(G=r.get("link")){if(!C||!C.name){G.setDisabled(!C&&q);G.setActive(!!C)}}if(G=r.get("unlink")){G.setDisabled(!C&&q);G.setActive(!!C&&!C.name)}if(G=r.get("anchor")){G.setActive(!q&&!!C&&C.name)}C=o("IMG");if(G=r.get("image")){G.setActive(!q&&!!C&&D.className.indexOf("mceItem")==-1)}if(G=r.get("styleselect")){y._importClasses();j=[];f(G.items,function(n){j.push(n.value)});i=m.formatter.matchAll(j);G.select(i[0])}if(G=r.get("formatselect")){C=o(d.isBlock);if(C){G.select(C.nodeName.toLowerCase())}}o(function(p){if(p.nodeName==="SPAN"){if(!w&&p.className){w=p.className}}if(m.dom.is(p,z.theme_advanced_font_selector)){if(!k&&p.style.fontSize){k=p.style.fontSize}if(!u&&p.style.fontFamily){u=p.style.fontFamily.replace(/[\"\']+/g,"").replace(/^([^,]+).*/,"$1").toLowerCase()}if(!B&&p.style.color){B=p.style.color}if(!l&&p.style.backgroundColor){l=p.style.backgroundColor}}return false});if(G=r.get("fontselect")){G.select(function(n){return n.replace(/^([^,]+).*/,"$1").toLowerCase()==u})}if(G=r.get("fontsizeselect")){if(z.theme_advanced_runtime_fontsize&&!k&&!w){k=m.dom.getStyle(D,"fontSize",true)}G.select(function(n){if(n.fontSize&&n.fontSize===k){return true}if(n["class"]&&n["class"]===w){return true}})}if(z.theme_advanced_show_current_color){function A(p,n){if(G=r.get(p)){if(!n){n=G.settings.default_color}if(n!==G.value){G.displayColor(n)}}}A("forecolor",B);A("backcolor",l)}if(z.theme_advanced_show_current_color){function A(p,n){if(G=r.get(p)){if(!n){n=G.settings.default_color}if(n!==G.value){G.displayColor(n)}}}A("forecolor",B);A("backcolor",l)}if(z.theme_advanced_path&&z.theme_advanced_statusbar_location){C=d.get(m.id+"_path")||d.add(m.id+"_path_row","span",{id:m.id+"_path"});if(y.statusKeyboardNavigation){y.statusKeyboardNavigation.destroy();y.statusKeyboardNavigation=null}d.setHTML(C,"");o(function(H){var p=H.nodeName.toLowerCase(),s,v,t="";if(H.nodeType!=1||p==="br"||H.getAttribute("data-mce-bogus")||d.hasClass(H,"mceItemHidden")||d.hasClass(H,"mceItemRemoved")){return}if(e.isIE&&H.scopeName!=="HTML"){p=H.scopeName+":"+p}p=p.replace(/mce\:/g,"");switch(p){case"b":p="strong";break;case"i":p="em";break;case"img":if(x=d.getAttrib(H,"src")){t+="src: "+x+" "}break;case"a":if(x=d.getAttrib(H,"name")){t+="name: "+x+" ";p+="#"+x}if(x=d.getAttrib(H,"href")){t+="href: "+x+" "}break;case"font":if(x=d.getAttrib(H,"face")){t+="font: "+x+" "}if(x=d.getAttrib(H,"size")){t+="size: "+x+" "}if(x=d.getAttrib(H,"color")){t+="color: "+x+" "}break;case"span":if(x=d.getAttrib(H,"style")){t+="style: "+x+" "}break}if(x=d.getAttrib(H,"id")){t+="id: "+x+" "}if(x=H.className){x=x.replace(/\b\s*(webkit|mce|Apple-)\w+\s*\b/g,"");if(x){t+="class: "+x+" ";if(d.isBlock(H)||p=="img"||p=="span"){p+="."+x}}}p=p.replace(/(html:)/g,"");p={name:p,node:H,title:t};y.onResolveName.dispatch(y,p);t=p.title;p=p.name;v=d.create("a",{href:"javascript:;",role:"button",onmousedown:"return false;",title:t,"class":"mcePath_"+(F++)},p);if(C.hasChildNodes()){C.insertBefore(d.create("span",{"aria-hidden":"true"},"\u00a0\u00bb "),C.firstChild);C.insertBefore(v,C.firstChild)}else{C.appendChild(v)}},m.getBody());if(d.select("a",C).length>0){y.statusKeyboardNavigation=new e.ui.KeyboardNavigation({root:m.id+"_path_row",items:d.select("a",C),excludeFromTabOrder:true,onCancel:function(){m.focus()}},d)}}},_sel:function(i){this.editor.execCommand("mceSelectNodeDepth",false,i)},_mceInsertAnchor:function(k,j){var i=this.editor;i.windowManager.open({url:this.url+"/anchor.htm",width:320+parseInt(i.getLang("advanced.anchor_delta_width",0)),height:90+parseInt(i.getLang("advanced.anchor_delta_height",0)),inline:true},{theme_url:this.url})},_mceCharMap:function(){var i=this.editor;i.windowManager.open({url:this.url+"/charmap.htm",width:550+parseInt(i.getLang("advanced.charmap_delta_width",0)),height:250+parseInt(i.getLang("advanced.charmap_delta_height",0)),inline:true},{theme_url:this.url})},_mceHelp:function(){var i=this.editor;i.windowManager.open({url:this.url+"/about.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceShortcuts:function(){var i=this.editor;i.windowManager.open({url:this.url+"/shortcuts.htm",width:480,height:380,inline:true},{theme_url:this.url})},_mceColorPicker:function(k,j){var i=this.editor;j=j||{};i.windowManager.open({url:this.url+"/color_picker.htm",width:375+parseInt(i.getLang("advanced.colorpicker_delta_width",0)),height:250+parseInt(i.getLang("advanced.colorpicker_delta_height",0)),close_previous:false,inline:true},{input_color:j.color,func:j.func,theme_url:this.url})},_mceCodeEditor:function(j,k){var i=this.editor;i.windowManager.open({url:this.url+"/source_editor.htm",width:parseInt(i.getParam("theme_advanced_source_editor_width",720)),height:parseInt(i.getParam("theme_advanced_source_editor_height",580)),inline:true,resizable:true,maximizable:true},{theme_url:this.url})},_mceImage:function(j,k){var i=this.editor;if(i.dom.getAttrib(i.selection.getNode(),"class").indexOf("mceItem")!=-1){return}i.windowManager.open({url:this.url+"/image.htm",width:355+parseInt(i.getLang("advanced.image_delta_width",0)),height:275+parseInt(i.getLang("advanced.image_delta_height",0)),inline:true},{theme_url:this.url})},_mceLink:function(j,k){var i=this.editor;i.windowManager.open({url:this.url+"/link.htm",width:310+parseInt(i.getLang("advanced.link_delta_width",0)),height:200+parseInt(i.getLang("advanced.link_delta_height",0)),inline:true},{theme_url:this.url})},_mceNewDocument:function(){var i=this.editor;i.windowManager.confirm("advanced.newdocument",function(j){if(j){i.execCommand("mceSetContent",false,"")}})},_mceForeColor:function(){var i=this;this._mceColorPicker(0,{color:i.fgColor,func:function(j){i.fgColor=j;i.editor.execCommand("ForeColor",false,j)}})},_mceBackColor:function(){var i=this;this._mceColorPicker(0,{color:i.bgColor,func:function(j){i.bgColor=j;i.editor.execCommand("HiliteColor",false,j)}})},_ufirst:function(i){return i.substring(0,1).toUpperCase()+i.substring(1)}});e.ThemeManager.add("advanced",e.themes.AdvancedTheme)}(tinymce));
|
@@ -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"> </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>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +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);
|
@@ -0,0 +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);
|
@@ -0,0 +1,355 @@
|
|
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
|
+
['♠', '♠', true, '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
|
+
html = html.replace(/<tr height="20"><\/tr>/g, '');
|
325
|
+
|
326
|
+
return html;
|
327
|
+
}
|
328
|
+
|
329
|
+
function insertChar(chr) {
|
330
|
+
tinyMCEPopup.execCommand('mceInsertContent', false, '&#' + chr + ';');
|
331
|
+
|
332
|
+
// Refocus in window
|
333
|
+
if (tinyMCEPopup.isWindow)
|
334
|
+
window.focus();
|
335
|
+
|
336
|
+
tinyMCEPopup.editor.focus();
|
337
|
+
tinyMCEPopup.close();
|
338
|
+
}
|
339
|
+
|
340
|
+
function previewChar(codeA, codeB, codeN) {
|
341
|
+
var elmA = document.getElementById('codeA');
|
342
|
+
var elmB = document.getElementById('codeB');
|
343
|
+
var elmV = document.getElementById('codeV');
|
344
|
+
var elmN = document.getElementById('codeN');
|
345
|
+
|
346
|
+
if (codeA=='#160;') {
|
347
|
+
elmV.innerHTML = '__';
|
348
|
+
} else {
|
349
|
+
elmV.innerHTML = '&' + codeA;
|
350
|
+
}
|
351
|
+
|
352
|
+
elmB.innerHTML = '&' + codeA;
|
353
|
+
elmA.innerHTML = '&' + codeB;
|
354
|
+
elmN.innerHTML = codeN;
|
355
|
+
}
|