upgrading to tinymce 2.0.6.1
This commit is contained in:
parent
f8e69afdf4
commit
0534118f8d
70 changed files with 1159 additions and 555 deletions
|
|
@ -24,6 +24,7 @@
|
|||
<ul>
|
||||
<li class="list_subtitle">Code / Solutions / Features</li>
|
||||
<ul>
|
||||
<li>Digital Ventures</li>
|
||||
<li>donadoni</li>
|
||||
<li>Michael Keck</li>
|
||||
<li>Victor Nilsson</li>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<div class="content">
|
||||
<h2>Making language packs</h2>
|
||||
<p>Language packs are simply JavaScript name/value arrays placed in the "<ISO-639-2 code>.js" files in the "lang" directory. Remember to allways use the "lang_" prefix for these value names so that they don't override other variables in the templates. The example below shows how the cut, copy and paste texts are lang packed. Notice there are three kinds of language packs the first one is the general one shared by all themes these are located in the "jscripts/tiny_mce/langs" directory the secound ones are theme specific language packs these are contained in "jscripts/tiny_mce/themes/<some theme>/langs" and the last one is plugin specific language packs located in each plugin.
|
||||
<p>Language packs are simply JavaScript name/value arrays placed in the "<ISO-639-1 code>.js" files in the "lang" directory. Remember to allways use the "lang_" prefix for these value names so that they don't override other variables in the templates. The example below shows how the cut, copy and paste texts are lang packed. Notice there are three kinds of language packs the first one is the general one shared by all themes these are located in the "jscripts/tiny_mce/langs" directory the secound ones are theme specific language packs these are contained in "jscripts/tiny_mce/themes/<some theme>/langs" and the last one is plugin specific language packs located in each plugin.
|
||||
</p>
|
||||
<p>
|
||||
<div class="example">
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<div class="content">
|
||||
<p>
|
||||
This option should contain a language code of the editor documentation to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-2</a> format to see if your language is available check the contents of "tinymce/jscripts/tiny_mce/theme/<theme used>/docs". The default value of this option is the value specified in the "language" option or "en" for English.
|
||||
This option should contain a language code of the editor documentation to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-1</a> format to see if your language is available check the contents of "tinymce/jscripts/tiny_mce/theme/<theme used>/docs". The default value of this option is the value specified in the "language" option or "en" for English.
|
||||
</p>
|
||||
|
||||
<div class="separator"></div>
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@
|
|||
|
||||
<div class="content">
|
||||
<p>
|
||||
This option should contain a language code of the language pack to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-2</a> format to see if your language is available check the contents of "tinymce/jscripts/tiny_mce/langs". The default value of this option is "en" for English.
|
||||
This option should contain a language code of the language pack to use with TinyMCE. These codes are in <a href="http://www.loc.gov/standards/iso639-2/englangn.html">ISO-639-1</a> format to see if your language is available check the contents of "tinymce/jscripts/tiny_mce/langs". The default value of this option is "en" for English.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -22,7 +22,7 @@
|
|||
<pre>
|
||||
tinyMCE.init({
|
||||
...
|
||||
<strong>theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6"</strong>
|
||||
<strong>theme_advanced_blockformats : "p,div,h1,h2,h3,h4,h5,h6,div,blockquote,dt,dd,code,samp"</strong>
|
||||
});
|
||||
</pre>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -21,6 +21,16 @@
|
|||
<li>Add the button name to button list, example: theme_advanced_buttons3_add : "spellchecker".</li>
|
||||
</ol>
|
||||
</p>
|
||||
<h3>Spellchecker plugins/modes</h3>
|
||||
<p>
|
||||
TinyMCE Spellchecker currently supports 3 modes. These are available as configurable PHP classes.
|
||||
<ul>
|
||||
<li>TinyPspell - Run pspell within PHP. (PHP needs to be compiled with pspell support)</li>
|
||||
<li>TinyPspellShell - Run pspell as a command line shell application.</li>
|
||||
<li>TinyGoogleSpell - Use HTTP proxy bridge to connect to a Google XML Web Service.</li>
|
||||
</ul>
|
||||
Use this as the value for the the languages option when you are using the GoogleSpell class: +English=en,Danish=da,Dutch=nl,Finnish=fi,French=fr,German=de,Italian=it,Polish=pl,Portuguese=pt,Spanish=es,Swedish=sv
|
||||
<br /><br /></p>
|
||||
<h3>Initialization Example</h3>
|
||||
<p>
|
||||
<div class="example">
|
||||
|
|
@ -51,7 +61,6 @@ tinyMCE.init({
|
|||
</tr>
|
||||
</table>
|
||||
</p>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="footer">
|
||||
|
|
@ -59,6 +68,5 @@ tinyMCE.init({
|
|||
<div class="copyright">Copyright © 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
|
||||
<br style="clear: both" />
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -122,10 +122,22 @@
|
|||
<li>ltr</li>
|
||||
<li>rtl</li>
|
||||
</ul>
|
||||
<li><a href="plugin_layer.html">layer</a></li>
|
||||
<ul>
|
||||
<li>moveforward</li>
|
||||
<li>movebackward</li>
|
||||
<li>absolute</li>
|
||||
<li>insertlayer</li>
|
||||
</ul>
|
||||
<li><a href="plugin_style.html">style</a></li>
|
||||
<ul>
|
||||
<li>styleprops</li>
|
||||
</ul>
|
||||
</ul>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="footer">
|
||||
<div class="helpindexlink"><a href="index.html">Index</a></div>
|
||||
<div class="copyright">Copyright © 2003-2006 <a href="http://www.moxiecode.com">Moxiecode Systems AB</a></div>
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@
|
|||
<li><a href="option_table_inline_editing.html">table_inline_editing</a></li>
|
||||
<li><a href="option_object_resizing.html">object_resizing</a></li>
|
||||
<li><a href="option_custom_shortcuts.html">custom_shortcuts</a></li>
|
||||
<li><a href="option_strict_loading_mode.html">strict_loading_mode</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>Cleanup/Output</h3>
|
||||
|
|
@ -138,6 +139,12 @@
|
|||
<li><a href="option_external_image_list_url.html">external_image_list_url</a></li>
|
||||
</ul>
|
||||
|
||||
<h3>Tab specific</h3>
|
||||
<ul class="optionlist">
|
||||
<li><a href="option_display_tab_class.html">display_tab_class</a></li>
|
||||
<li><a href="option_hidden_tab_class.html">hidden_tab_class</a></li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<div class="column">
|
||||
|
||||
|
|
@ -155,6 +162,7 @@
|
|||
<li><a href="option_theme_advanced_styles.html">theme_advanced_styles</a></li>
|
||||
<li><a href="option_theme_advanced_source_editor_width.html">theme_advanced_source_editor_width</a></li>
|
||||
<li><a href="option_theme_advanced_source_editor_height.html">theme_advanced_source_editor_height</a></li>
|
||||
<li><a href="option_theme_advanced_source_editor_wrap.html">theme_advanced_source_editor_wrap</a></li>
|
||||
<li><a href="option_theme_advanced_toolbar_location.html">theme_advanced_toolbar_location</a></li>
|
||||
<li><a href="option_theme_advanced_toolbar_align.html">theme_advanced_toolbar_align</a></li>
|
||||
<li><a href="option_theme_advanced_statusbar_location.html">theme_advanced_statusbar_location</a></li>
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
<li><a href="plugin_emotions.html">emotions</a></li>
|
||||
<li><a href="plugin_flash.html">flash</a></li>
|
||||
<li><a href="plugin_autosave.html">autosave</a></li>
|
||||
<li><a href="plugin_style.html">style</a></li>
|
||||
<li><a href="plugin_layer.html">layer</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="column">
|
||||
|
|
@ -39,6 +41,7 @@
|
|||
<li><a href="plugin_print.html">print</a></li>
|
||||
<li><a href="plugin_save.html">save</a></li>
|
||||
<li><a href="plugin_noneditable.html">noneditable</a></li>
|
||||
<li><a href="plugin_spellchecker.html">spellchecker</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="column">
|
||||
|
|
@ -51,7 +54,6 @@
|
|||
<li><a href="plugin_fullpage.html">fullpage</a></li>
|
||||
<li><a href="plugin_inlinepopups.html">inlinepopups</a></li>
|
||||
<li><a href="plugin_fullpage.html">fullpage</a></li>
|
||||
<li><a href="plugin_spellchecker.html">spellchecker</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<br style="clear: both" />
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue