├── .gitignore ├── _build ├── build.config.sample.php ├── build.transport.php ├── data │ ├── properties.inc.php │ ├── transport.plugin.events.php │ └── transport.settings.php ├── includes │ └── functions.php └── resolvers │ ├── resolve.fix_setting.php │ └── resolve.whicheditor.php ├── assets └── components │ └── tinymce │ ├── connector.php │ ├── index.html │ ├── jscripts │ ├── autocomplete │ │ ├── indicator.gif │ │ ├── jquery.autocomplete.css │ │ ├── jquery.autocomplete.js │ │ └── jquery.autocomplete.min.js │ ├── jquery-1.4.2.js │ └── tiny_mce │ │ ├── langs │ │ ├── ar.js │ │ ├── az.js │ │ ├── be.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── br.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── ch.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de.js │ │ ├── dv.js │ │ ├── el.js │ │ ├── en.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── hy.js │ │ ├── ia.js │ │ ├── id.js │ │ ├── ii.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── kl.js │ │ ├── ko.js │ │ ├── lb.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── ml.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── nn.js │ │ ├── no.js │ │ ├── pl.js │ │ ├── ps.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── sc.js │ │ ├── se.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── ta.js │ │ ├── te.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── tw.js │ │ ├── uk.js │ │ ├── ur.js │ │ ├── vi.js │ │ ├── zh.js │ │ └── zu.js │ │ ├── license.txt │ │ ├── plugins │ │ ├── advhr │ │ │ ├── css │ │ │ │ └── advhr.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── rule.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ └── rule.htm │ │ ├── advimage │ │ │ ├── css │ │ │ │ └── advimage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ └── sample.gif │ │ │ ├── js │ │ │ │ └── image.js │ │ │ └── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ ├── advlink │ │ │ ├── css │ │ │ │ └── advlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── advlink.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ └── link.htm │ │ ├── advlist │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autolink │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autoresize │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── autosave │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── langs │ │ │ │ └── en.js │ │ ├── bbcode │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── compat2x │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── contextmenu │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── directionality │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── emotions │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── emotions.htm │ │ │ ├── img │ │ │ │ ├── smiley-cool.gif │ │ │ │ ├── smiley-cry.gif │ │ │ │ ├── smiley-embarassed.gif │ │ │ │ ├── smiley-foot-in-mouth.gif │ │ │ │ ├── smiley-frown.gif │ │ │ │ ├── smiley-innocent.gif │ │ │ │ ├── smiley-kiss.gif │ │ │ │ ├── smiley-laughing.gif │ │ │ │ ├── smiley-money-mouth.gif │ │ │ │ ├── smiley-sealed.gif │ │ │ │ ├── smiley-smile.gif │ │ │ │ ├── smiley-surprised.gif │ │ │ │ ├── smiley-tongue-out.gif │ │ │ │ ├── smiley-undecided.gif │ │ │ │ ├── smiley-wink.gif │ │ │ │ └── smiley-yell.gif │ │ │ ├── js │ │ │ │ └── emotions.js │ │ │ └── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ ├── example │ │ │ ├── dialog.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── example.gif │ │ │ ├── js │ │ │ │ └── dialog.js │ │ │ └── langs │ │ │ │ ├── en.js │ │ │ │ └── en_dlg.js │ │ ├── example_dependency │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── fullpage │ │ │ ├── css │ │ │ │ └── fullpage.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── fullpage.htm │ │ │ ├── js │ │ │ │ └── fullpage.js │ │ │ └── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ ├── fullscreen │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── fullscreen.htm │ │ ├── iespell │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── inlinepopups │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── skins │ │ │ │ └── clearlooks2 │ │ │ │ │ ├── img │ │ │ │ │ ├── alert.gif │ │ │ │ │ ├── button.gif │ │ │ │ │ ├── buttons.gif │ │ │ │ │ ├── confirm.gif │ │ │ │ │ ├── corners.gif │ │ │ │ │ ├── horizontal.gif │ │ │ │ │ └── vertical.gif │ │ │ │ │ └── window.css │ │ │ └── template.htm │ │ ├── insertdatetime │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── layer │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── legacyoutput │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── lists │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── media │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── media.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ ├── flash.gif │ │ │ │ ├── flv_player.swf │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── embed.js │ │ │ │ └── media.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ ├── media.htm │ │ │ └── moxieplayer.swf │ │ ├── modxlink │ │ │ ├── css │ │ │ │ └── modxlink.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── link.png │ │ │ ├── js │ │ │ │ └── modxlink.js │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── ly.js │ │ │ │ ├── mk.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt-br_dlg.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── zu.js │ │ │ │ └── zu_dlg.js │ │ │ ├── link.htm │ │ │ ├── link.php │ │ │ └── search.php │ │ ├── nonbreaking │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── noneditable │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── pagebreak │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ └── img │ │ │ │ ├── pagebreak.gif │ │ │ │ └── trans.gif │ │ ├── paste │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── pastetext.js │ │ │ │ └── pasteword.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ ├── pastetext.htm │ │ │ └── pasteword.htm │ │ ├── preview │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── example.html │ │ │ ├── jscripts │ │ │ │ └── embed.js │ │ │ └── preview.html │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── safari │ │ │ ├── blank.htm │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── save │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── searchreplace.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ └── searchreplace.htm │ │ ├── spellchecker │ │ │ ├── changelog.txt │ │ │ ├── classes │ │ │ │ ├── EnchantSpell.php │ │ │ │ ├── GoogleSpell.php │ │ │ │ ├── PSpell.php │ │ │ │ ├── PSpellShell.php │ │ │ │ ├── SpellChecker.php │ │ │ │ └── utils │ │ │ │ │ ├── JSON.php │ │ │ │ │ └── Logger.php │ │ │ ├── config.php │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── img │ │ │ │ └── wline.gif │ │ │ ├── includes │ │ │ │ └── general.php │ │ │ └── rpc.php │ │ ├── style │ │ │ ├── css │ │ │ │ └── props.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── props.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ ├── props.htm │ │ │ └── readme.txt │ │ ├── tabfocus │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── table │ │ │ ├── cell.htm │ │ │ ├── css │ │ │ │ ├── cell.css │ │ │ │ ├── row.css │ │ │ │ └── table.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ ├── cell.js │ │ │ │ ├── merge_cells.js │ │ │ │ ├── row.js │ │ │ │ └── table.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ ├── merge_cells.htm │ │ │ ├── row.htm │ │ │ └── table.htm │ │ ├── template │ │ │ ├── blank.htm │ │ │ ├── css │ │ │ │ └── template.css │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── js │ │ │ │ └── template.js │ │ │ ├── langs │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ │ └── template.htm │ │ ├── visualblocks │ │ │ ├── css │ │ │ │ └── visualblocks.css │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── visualchars │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ ├── wordc │ │ │ └── langs │ │ │ │ ├── de_dlg.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── ru_dlg.js │ │ │ │ └── uk_dlg.js │ │ ├── wordcount │ │ │ ├── editor_plugin.js │ │ │ └── editor_plugin_src.js │ │ └── xhtmlxtras │ │ │ ├── abbr.htm │ │ │ ├── acronym.htm │ │ │ ├── attributes.htm │ │ │ ├── cite.htm │ │ │ ├── css │ │ │ ├── attributes.css │ │ │ └── popup.css │ │ │ ├── del.htm │ │ │ ├── editor_plugin.js │ │ │ ├── editor_plugin_src.js │ │ │ ├── ins.htm │ │ │ ├── js │ │ │ ├── abbr.js │ │ │ ├── acronym.js │ │ │ ├── attributes.js │ │ │ ├── cite.js │ │ │ ├── del.js │ │ │ ├── element_common.js │ │ │ └── ins.js │ │ │ └── langs │ │ │ ├── cs_dlg.js │ │ │ ├── de_dlg.js │ │ │ ├── en_dlg.js │ │ │ ├── fr_dlg.js │ │ │ ├── id_dlg.js │ │ │ ├── it_dlg.js │ │ │ ├── ja_dlg.js │ │ │ ├── nl_dlg.js │ │ │ ├── ru_dlg.js │ │ │ └── uk_dlg.js │ │ ├── themes │ │ ├── advanced │ │ │ ├── about.htm │ │ │ ├── anchor.htm │ │ │ ├── charmap.htm │ │ │ ├── color_picker.htm │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── image.htm │ │ │ ├── img │ │ │ │ ├── colorpicker.jpg │ │ │ │ ├── flash.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── iframe.gif │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── quicktime.gif │ │ │ │ ├── realmedia.gif │ │ │ │ ├── shockwave.gif │ │ │ │ ├── trans.gif │ │ │ │ ├── video.gif │ │ │ │ └── windowsmedia.gif │ │ │ ├── js │ │ │ │ ├── about.js │ │ │ │ ├── anchor.js │ │ │ │ ├── charmap.js │ │ │ │ ├── color_picker.js │ │ │ │ ├── image.js │ │ │ │ ├── link.js │ │ │ │ └── source_editor.js │ │ │ ├── langs │ │ │ │ ├── ar.js │ │ │ │ ├── ar_dlg.js │ │ │ │ ├── az.js │ │ │ │ ├── az_dlg.js │ │ │ │ ├── be.js │ │ │ │ ├── be_dlg.js │ │ │ │ ├── bg.js │ │ │ │ ├── bg_dlg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bn_dlg.js │ │ │ │ ├── br.js │ │ │ │ ├── br_dlg.js │ │ │ │ ├── bs.js │ │ │ │ ├── bs_dlg.js │ │ │ │ ├── ca.js │ │ │ │ ├── ca_dlg.js │ │ │ │ ├── ch.js │ │ │ │ ├── ch_dlg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cs_dlg.js │ │ │ │ ├── cy.js │ │ │ │ ├── cy_dlg.js │ │ │ │ ├── da.js │ │ │ │ ├── da_dlg.js │ │ │ │ ├── de.js │ │ │ │ ├── de_dlg.js │ │ │ │ ├── dv.js │ │ │ │ ├── dv_dlg.js │ │ │ │ ├── el.js │ │ │ │ ├── el_dlg.js │ │ │ │ ├── en.js │ │ │ │ ├── en_dlg.js │ │ │ │ ├── es.js │ │ │ │ ├── es_dlg.js │ │ │ │ ├── et.js │ │ │ │ ├── et_dlg.js │ │ │ │ ├── eu.js │ │ │ │ ├── eu_dlg.js │ │ │ │ ├── fa.js │ │ │ │ ├── fa_dlg.js │ │ │ │ ├── fi.js │ │ │ │ ├── fi_dlg.js │ │ │ │ ├── fr.js │ │ │ │ ├── fr_dlg.js │ │ │ │ ├── gl.js │ │ │ │ ├── gl_dlg.js │ │ │ │ ├── gu.js │ │ │ │ ├── gu_dlg.js │ │ │ │ ├── he.js │ │ │ │ ├── he_dlg.js │ │ │ │ ├── hi.js │ │ │ │ ├── hi_dlg.js │ │ │ │ ├── hr.js │ │ │ │ ├── hr_dlg.js │ │ │ │ ├── hu.js │ │ │ │ ├── hu_dlg.js │ │ │ │ ├── hy.js │ │ │ │ ├── hy_dlg.js │ │ │ │ ├── ia.js │ │ │ │ ├── ia_dlg.js │ │ │ │ ├── id.js │ │ │ │ ├── id_dlg.js │ │ │ │ ├── ii.js │ │ │ │ ├── ii_dlg.js │ │ │ │ ├── is.js │ │ │ │ ├── is_dlg.js │ │ │ │ ├── it.js │ │ │ │ ├── it_dlg.js │ │ │ │ ├── ja.js │ │ │ │ ├── ja_dlg.js │ │ │ │ ├── ka.js │ │ │ │ ├── ka_dlg.js │ │ │ │ ├── kl.js │ │ │ │ ├── kl_dlg.js │ │ │ │ ├── ko.js │ │ │ │ ├── ko_dlg.js │ │ │ │ ├── lb.js │ │ │ │ ├── lb_dlg.js │ │ │ │ ├── lt.js │ │ │ │ ├── lt_dlg.js │ │ │ │ ├── lv.js │ │ │ │ ├── lv_dlg.js │ │ │ │ ├── mk.js │ │ │ │ ├── mk_dlg.js │ │ │ │ ├── ml.js │ │ │ │ ├── ml_dlg.js │ │ │ │ ├── mn.js │ │ │ │ ├── mn_dlg.js │ │ │ │ ├── ms.js │ │ │ │ ├── ms_dlg.js │ │ │ │ ├── nb.js │ │ │ │ ├── nb_dlg.js │ │ │ │ ├── nl.js │ │ │ │ ├── nl_dlg.js │ │ │ │ ├── nn.js │ │ │ │ ├── nn_dlg.js │ │ │ │ ├── no.js │ │ │ │ ├── no_dlg.js │ │ │ │ ├── pl.js │ │ │ │ ├── pl_dlg.js │ │ │ │ ├── ps.js │ │ │ │ ├── ps_dlg.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt-br_dlg.js │ │ │ │ ├── pt.js │ │ │ │ ├── pt_dlg.js │ │ │ │ ├── ro.js │ │ │ │ ├── ro_dlg.js │ │ │ │ ├── ru.js │ │ │ │ ├── ru_dlg.js │ │ │ │ ├── sc.js │ │ │ │ ├── sc_dlg.js │ │ │ │ ├── se.js │ │ │ │ ├── se_dlg.js │ │ │ │ ├── si.js │ │ │ │ ├── si_dlg.js │ │ │ │ ├── sk.js │ │ │ │ ├── sk_dlg.js │ │ │ │ ├── sl.js │ │ │ │ ├── sl_dlg.js │ │ │ │ ├── sq.js │ │ │ │ ├── sq_dlg.js │ │ │ │ ├── sr.js │ │ │ │ ├── sr_dlg.js │ │ │ │ ├── sv.js │ │ │ │ ├── sv_dlg.js │ │ │ │ ├── ta.js │ │ │ │ ├── ta_dlg.js │ │ │ │ ├── te.js │ │ │ │ ├── te_dlg.js │ │ │ │ ├── th.js │ │ │ │ ├── th_dlg.js │ │ │ │ ├── tr.js │ │ │ │ ├── tr_dlg.js │ │ │ │ ├── tt.js │ │ │ │ ├── tt_dlg.js │ │ │ │ ├── tw.js │ │ │ │ ├── tw_dlg.js │ │ │ │ ├── uk.js │ │ │ │ ├── uk_dlg.js │ │ │ │ ├── ur.js │ │ │ │ ├── ur_dlg.js │ │ │ │ ├── vi.js │ │ │ │ ├── vi_dlg.js │ │ │ │ ├── zh.js │ │ │ │ ├── zh_dlg.js │ │ │ │ ├── zu.js │ │ │ │ └── zu_dlg.js │ │ │ ├── link.htm │ │ │ ├── shortcuts.htm │ │ │ ├── skins │ │ │ │ ├── cirkuit │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── butt2.png │ │ │ │ │ │ ├── button-bg.png │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── down_arrow.gif │ │ │ │ │ │ ├── fade-butt.png │ │ │ │ │ │ ├── icons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu-arrow.png │ │ │ │ │ │ ├── menu-check.png │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ ├── tabs.gif │ │ │ │ │ │ └── toolbarbg.png │ │ │ │ │ ├── ui.css │ │ │ │ │ └── ui_silver.css │ │ │ │ ├── default │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── buttons.png │ │ │ │ │ │ ├── items.gif │ │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ │ ├── menu_check.gif │ │ │ │ │ │ ├── progress.gif │ │ │ │ │ │ └── tabs.gif │ │ │ │ │ └── ui.css │ │ │ │ ├── highcontrast │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ └── ui.css │ │ │ │ └── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── img │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ ├── ui.css │ │ │ │ │ ├── ui_black.css │ │ │ │ │ └── ui_silver.css │ │ │ └── source_editor.htm │ │ └── simple │ │ │ ├── editor_template.js │ │ │ ├── editor_template_src.js │ │ │ ├── img │ │ │ └── icons.gif │ │ │ ├── langs │ │ │ ├── cs.js │ │ │ ├── de.js │ │ │ ├── en.js │ │ │ ├── fr.js │ │ │ ├── id.js │ │ │ ├── ja.js │ │ │ ├── nl.js │ │ │ ├── ru.js │ │ │ └── uk.js │ │ │ └── skins │ │ │ ├── default │ │ │ ├── content.css │ │ │ └── ui.css │ │ │ └── o2k7 │ │ │ ├── content.css │ │ │ ├── img │ │ │ └── button_bg.png │ │ │ └── ui.css │ │ ├── tiny_mce.js │ │ ├── tiny_mce_popup.js │ │ ├── tiny_mce_src.js │ │ └── utils │ │ ├── editable_selects.js │ │ ├── form_utils.js │ │ ├── mctabs.js │ │ └── validate.js │ ├── template.list.php │ ├── tiny.browser.js │ ├── tiny.js │ ├── tiny.min.js │ ├── tinymce.panel.js │ └── xconfig.js └── core └── components └── tinymce ├── docs ├── changelog.txt ├── license.txt └── readme.txt ├── index.html ├── lexicon ├── cs │ └── default.inc.php ├── da │ └── default.inc.php ├── de │ └── default.inc.php ├── en │ └── default.inc.php ├── es │ └── default.inc.php ├── fi │ └── default.inc.php ├── fr │ └── default.inc.php ├── ir │ └── default.inc.php ├── it │ └── default.inc.php ├── ja │ └── default.inc.php ├── nl │ └── default.inc.php ├── no │ └── default.inc.php ├── pl │ └── default.inc.php ├── pt-br │ └── default.inc.php ├── pt │ └── default.inc.php ├── ru │ └── default.inc.php └── sv │ └── default.inc.php ├── templates ├── fe_script.tpl └── script.tpl ├── tinymce.class.php └── tinymce.plugin.php /.gitignore: -------------------------------------------------------------------------------- 1 | _build/build.config.php 2 | core.config.php 3 | config.core.php 4 | .idea 5 | nbproject 6 | -------------------------------------------------------------------------------- /_build/build.config.sample.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_build/data/transport.plugin.events.php: -------------------------------------------------------------------------------- 1 | newObject('modPluginEvent'); 9 | $events['OnRichTextBrowserInit']->fromArray(array( 10 | 'event' => 'OnRichTextBrowserInit', 11 | 'priority' => 0, 12 | 'propertyset' => 0, 13 | ),'',true,true); 14 | $events['OnRichTextEditorRegister']= $modx->newObject('modPluginEvent'); 15 | $events['OnRichTextEditorRegister']->fromArray(array( 16 | 'event' => 'OnRichTextEditorRegister', 17 | 'priority' => 0, 18 | 'propertyset' => 0, 19 | ),'',true,true); 20 | $events['OnRichTextEditorInit']= $modx->newObject('modPluginEvent'); 21 | $events['OnRichTextEditorInit']->fromArray(array( 22 | 'event' => 'OnRichTextEditorInit', 23 | 'priority' => 0, 24 | 'propertyset' => 0, 25 | ),'',true,true); 26 | 27 | return $events; -------------------------------------------------------------------------------- /_build/includes/functions.php: -------------------------------------------------------------------------------- 1 | ','',$o); 12 | $o = trim($o); 13 | return $o; 14 | } -------------------------------------------------------------------------------- /assets/components/tinymce/connector.php: -------------------------------------------------------------------------------- 1 | getOption('tiny.core_path',null,$modx->getOption('core_path').'components/tinymce/'); 12 | require_once $tinyCorePath.'tinymce.class.php'; 13 | $modx->tinymce = new TinyMCE($modx); 14 | 15 | $modx->lexicon->load('tinymce:default'); 16 | -------------------------------------------------------------------------------- /assets/components/tinymce/index.html: -------------------------------------------------------------------------------- 1 |

Unauthorized access

2 | You're not allowed to access file folder -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/autocomplete/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/autocomplete/indicator.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/autocomplete/jquery.autocomplete.css: -------------------------------------------------------------------------------- 1 | .ac_results { 2 | padding: 0px; 3 | border: 1px solid black; 4 | background-color: white; 5 | overflow: hidden; 6 | z-index: 99999; 7 | } 8 | 9 | .ac_results ul { 10 | width: 100%; 11 | list-style-position: outside; 12 | list-style: none; 13 | padding: 0; 14 | margin: 0; 15 | } 16 | 17 | .ac_results li { 18 | margin: 0px; 19 | padding: 2px 5px; 20 | cursor: default; 21 | display: block; 22 | /* 23 | if width will be 100% horizontal scrollbar will apear 24 | when scroll mode will be used 25 | */ 26 | /*width: 100%;*/ 27 | font: menu; 28 | font-size: 12px; 29 | /* 30 | it is very important, if line-height not setted or setted 31 | in relative units scroll will be broken in firefox 32 | */ 33 | line-height: 16px; 34 | overflow: hidden; 35 | } 36 | 37 | .ac_loading { 38 | background: white url('indicator.gif') right center no-repeat; 39 | } 40 | 41 | .ac_odd { 42 | background-color: #eee; 43 | } 44 | 45 | .ac_over { 46 | background-color: #0A246A; 47 | color: white; 48 | } 49 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/advhr/css/advhr.css: -------------------------------------------------------------------------------- 1 | input.radio {border:1px none #000; background:transparent; vertical-align:middle;} 2 | .panel_wrapper div.current {height:80px;} 3 | #width {width:50px; vertical-align:middle;} 4 | #width2 {width:50px; vertical-align:middle;} 5 | #size {width:100px;} 6 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.AdvancedHRPlugin",{init:function(a,b){a.addCommand("mceAdvancedHr",function(){a.windowManager.open({file:b+"/rule.htm",width:250+parseInt(a.getLang("advhr.delta_width",0)),height:160+parseInt(a.getLang("advhr.delta_height",0)),inline:1},{plugin_url:b})});a.addButton("advhr",{title:"advhr.advhr_desc",cmd:"mceAdvancedHr"});a.onNodeChange.add(function(d,c,e){c.setActive("advhr",e.nodeName=="HR")});a.onClick.add(function(c,d){d=d.target;if(d.nodeName==="HR"){c.selection.select(d)}})},getInfo:function(){return{longname:"Advanced HR",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("advhr",tinymce.plugins.AdvancedHRPlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/advhr/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | /** 2 | * editor_plugin_src.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 | (function() { 12 | tinymce.create('tinymce.plugins.AdvancedHRPlugin', { 13 | init : function(ed, url) { 14 | // Register commands 15 | ed.addCommand('mceAdvancedHr', function() { 16 | ed.windowManager.open({ 17 | file : url + '/rule.htm', 18 | width : 250 + parseInt(ed.getLang('advhr.delta_width', 0)), 19 | height : 160 + parseInt(ed.getLang('advhr.delta_height', 0)), 20 | inline : 1 21 | }, { 22 | plugin_url : url 23 | }); 24 | }); 25 | 26 | // Register buttons 27 | ed.addButton('advhr', { 28 | title : 'advhr.advhr_desc', 29 | cmd : 'mceAdvancedHr' 30 | }); 31 | 32 | ed.onNodeChange.add(function(ed, cm, n) { 33 | cm.setActive('advhr', n.nodeName == 'HR'); 34 | }); 35 | 36 | ed.onClick.add(function(ed, e) { 37 | e = e.target; 38 | 39 | if (e.nodeName === 'HR') 40 | ed.selection.select(e); 41 | }); 42 | }, 43 | 44 | getInfo : function() { 45 | return { 46 | longname : 'Advanced HR', 47 | author : 'Moxiecode Systems AB', 48 | authorurl : 'http://tinymce.moxiecode.com', 49 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/advhr', 50 | version : tinymce.majorVersion + "." + tinymce.minorVersion 51 | }; 52 | } 53 | }); 54 | 55 | // Register plugin 56 | tinymce.PluginManager.add('advhr', tinymce.plugins.AdvancedHRPlugin); 57 | })(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/advhr/js/rule.js: -------------------------------------------------------------------------------- 1 | var AdvHRDialog = { 2 | init : function(ed) { 3 | var dom = ed.dom, f = document.forms[0], n = ed.selection.getNode(), w; 4 | 5 | w = dom.getAttrib(n, 'width'); 6 | f.width.value = w ? parseInt(w) : (dom.getStyle('width') || ''); 7 | f.size.value = dom.getAttrib(n, 'size') || parseInt(dom.getStyle('height')) || ''; 8 | f.noshade.checked = !!dom.getAttrib(n, 'noshade') || !!dom.getStyle('border-width'); 9 | selectByValue(f, 'width2', w.indexOf('%') != -1 ? '%' : 'px'); 10 | }, 11 | 12 | update : function() { 13 | var ed = tinyMCEPopup.editor, h, f = document.forms[0], st = ''; 14 | 15 | h = 'd.autoresize_min_height){k=g}if(d.autoresize_max_height&&g>d.autoresize_max_height){k=d.autoresize_max_height;f.style.overflowY="auto";l.style.overflowY="auto"}else{f.style.overflowY="hidden";l.style.overflowY="hidden";f.scrollTop=0}if(k!==e){j=k-e;h.setStyle(h.get(a.id+"_ifr"),"height",k+"px");e=k;if(tinymce.isWebKit&&j<0){b()}}}d.editor=a;d.autoresize_min_height=parseInt(a.getParam("autoresize_min_height",a.getElement().offsetHeight));d.autoresize_max_height=parseInt(a.getParam("autoresize_max_height",0));a.onInit.add(function(f){f.dom.setStyle(f.getBody(),"paddingBottom",f.getParam("autoresize_bottom_margin",50)+"px")});a.onChange.add(b);a.onSetContent.add(b);a.onPaste.add(b);a.onKeyUp.add(b);a.onPostRender.add(b);if(a.getParam("autoresize_on_init",true)){a.onLoad.add(b);a.onLoadContent.add(b)}a.addCommand("mceAutoResize",b)},getInfo:function(){return{longname:"Auto Resize",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/autoresize",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("autoresize",tinymce.plugins.AutoResizePlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/autosave/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.autosave',{ 2 | restore_content: "Restore auto-saved content", 3 | warning_message: "If you restore the saved content, you will lose all the content that is currently in the editor.\n\nAre you sure you want to restore the saved content?" 4 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/compat2x/editor_plugin_src.js -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/directionality/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Directionality",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceDirectionLTR",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="ltr"){a.dom.setAttrib(d,"dir","ltr")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addCommand("mceDirectionRTL",function(){var d=a.dom.getParent(a.selection.getNode(),a.dom.isBlock);if(d){if(a.dom.getAttrib(d,"dir")!="rtl"){a.dom.setAttrib(d,"dir","rtl")}else{a.dom.setAttrib(d,"dir","")}}a.nodeChanged()});a.addButton("ltr",{title:"directionality.ltr_desc",cmd:"mceDirectionLTR"});a.addButton("rtl",{title:"directionality.rtl_desc",cmd:"mceDirectionRTL"});a.onNodeChange.add(c._nodeChange,c)},getInfo:function(){return{longname:"Directionality",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/directionality",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,e){var d=b.dom,c;e=d.getParent(e,d.isBlock);if(!e){a.setDisabled("ltr",1);a.setDisabled("rtl",1);return}c=d.getAttrib(e,"dir");a.setActive("ltr",c=="ltr");a.setDisabled("ltr",0);a.setActive("rtl",c=="rtl");a.setDisabled("rtl",0)}});tinymce.PluginManager.add("directionality",tinymce.plugins.Directionality)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(a){a.create("tinymce.plugins.EmotionsPlugin",{init:function(b,c){b.addCommand("mceEmotion",function(){b.windowManager.open({file:c+"/emotions.htm",width:250+parseInt(b.getLang("emotions.delta_width",0)),height:160+parseInt(b.getLang("emotions.delta_height",0)),inline:1},{plugin_url:c})});b.addButton("emotions",{title:"emotions.emotions_desc",cmd:"mceEmotion"})},getInfo:function(){return{longname:"Emotions",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions",version:a.majorVersion+"."+a.minorVersion}}});a.PluginManager.add("emotions",a.plugins.EmotionsPlugin)})(tinymce); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | /** 2 | * editor_plugin_src.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 | (function(tinymce) { 12 | tinymce.create('tinymce.plugins.EmotionsPlugin', { 13 | init : function(ed, url) { 14 | // Register commands 15 | ed.addCommand('mceEmotion', function() { 16 | ed.windowManager.open({ 17 | file : url + '/emotions.htm', 18 | width : 250 + parseInt(ed.getLang('emotions.delta_width', 0)), 19 | height : 160 + parseInt(ed.getLang('emotions.delta_height', 0)), 20 | inline : 1 21 | }, { 22 | plugin_url : url 23 | }); 24 | }); 25 | 26 | // Register buttons 27 | ed.addButton('emotions', {title : 'emotions.emotions_desc', cmd : 'mceEmotion'}); 28 | }, 29 | 30 | getInfo : function() { 31 | return { 32 | longname : 'Emotions', 33 | author : 'Moxiecode Systems AB', 34 | authorurl : 'http://tinymce.moxiecode.com', 35 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/emotions', 36 | version : tinymce.majorVersion + "." + tinymce.minorVersion 37 | }; 38 | } 39 | }); 40 | 41 | // Register plugin 42 | tinymce.PluginManager.add('emotions', tinymce.plugins.EmotionsPlugin); 43 | })(tinymce); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cool.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-cry.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-embarassed.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-foot-in-mouth.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-frown.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-innocent.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-kiss.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-laughing.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-money-mouth.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-sealed.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-smile.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-surprised.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-tongue-out.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-undecided.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-wink.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/img/smiley-yell.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/js/emotions.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var EmotionsDialog = { 4 | addKeyboardNavigation: function(){ 5 | var tableElm, cells, settings; 6 | 7 | cells = tinyMCEPopup.dom.select("a.emoticon_link", "emoticon_table"); 8 | 9 | settings ={ 10 | root: "emoticon_table", 11 | items: cells 12 | }; 13 | cells[0].tabindex=0; 14 | tinyMCEPopup.dom.addClass(cells[0], "mceFocus"); 15 | if (tinymce.isGecko) { 16 | cells[0].focus(); 17 | } else { 18 | setTimeout(function(){ 19 | cells[0].focus(); 20 | }, 100); 21 | } 22 | tinyMCEPopup.editor.windowManager.createInstance('tinymce.ui.KeyboardNavigation', settings, tinyMCEPopup.dom); 23 | }, 24 | init : function(ed) { 25 | tinyMCEPopup.resizeToInnerSize(); 26 | this.addKeyboardNavigation(); 27 | }, 28 | 29 | insert : function(file, title) { 30 | var ed = tinyMCEPopup.editor, dom = ed.dom; 31 | 32 | tinyMCEPopup.execCommand('mceInsertContent', false, dom.createHTML('img', { 33 | src : tinyMCEPopup.getWindowArg('plugin_url') + '/img/' + file, 34 | alt : ed.getLang(title), 35 | title : ed.getLang(title), 36 | border : 0 37 | })); 38 | 39 | tinyMCEPopup.close(); 40 | } 41 | }; 42 | 43 | tinyMCEPopup.onInit.add(EmotionsDialog.init, EmotionsDialog); 44 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.emotions_dlg',{cry:"Pla\u010d\u00edc\u00ed",cool:"\u00da\u017easn\u00fd",desc:"Emotikony",title:"Vlo\u017eit emotikonu",yell:"K\u0159i\u010d\u00edc\u00ed",wink:"Mrkaj\u00edc\u00ed",undecided:"Nerozhodn\u00fd","tongue_out":"S vyplazen\u00fdm jazykem",surprised:"P\u0159ekvapen\u00fd",smile:"Usm\u00edvaj\u00edc\u00ed se",sealed:"Ml\u010d\u00edc\u00ed","money_mouth":"Je na prachy",laughing:"Sm\u011bj\u00edc\u00ed se",kiss:"L\u00edbaj\u00edc\u00ed",innocent:"Nevinn\u00fd",frown:"Zamra\u010den\u00fd","foot_in_mouth":"\u0160l\u00e1pnul vedle",embarassed:"Rozpa\u010dit\u00fd",usage:"Pro navigaci pou\u017eijte \u0161ipky vlevo a vpravo."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.emotions_dlg',{cry:"Weinend",cool:"Cool",desc:"Smilies",title:"Smiley einf\u00fcgen",yell:"Br\u00fcllend",wink:"Zwinkernd",undecided:"Unentschlossen","tongue_out":"Zunge raus",surprised:"\u00dcberrascht",smile:"L\u00e4chelnd",sealed:"Verschlossen","money_mouth":"Geld",laughing:"Lachend",kiss:"K\u00fcssend",innocent:"Unschuldig",frown:"Stirnrunzelnd","foot_in_mouth":"Reingefallen",embarassed:"Verlegen"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"Insert Emotion",usage:"Use left and right arrows to navigate.",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue Out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money Mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in Mouth",embarassed:"Embarassed"}); 2 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.emotions_dlg',{cry:"En pleurs",cool:"Cool",desc:"\u00c9motic\u00f4nes",title:"Ins\u00e9rer une \u00e9motic\u00f4ne",yell:"Criant",wink:"Clin d\'\u0153il",undecided:"Incertain","tongue_out":"Langue tir\u00e9e",surprised:"Surpris",smile:"Sourire",sealed:"Bouche cousue","money_mouth":"Avare",laughing:"Rigolant",kiss:"Bisou",innocent:"Innocent",frown:"D\u00e9\u00e7u","foot_in_mouth":"Pied de nez",embarassed:"Embarrass\u00e9"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"Emotions",title:"sisipkan emotion",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in mouth",embarassed:"Embarassed"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.emotions_dlg',{cry:"Piango",cool:"Fico",desc:"Faccina",title:"Inserisci faccina",yell:"Arrabbiato",wink:"Occhiolino",undecided:"Indeciso","tongue_out":"Linguaccia",surprised:"Sorpreso",smile:"Sorridente",sealed:"Bocca sigillata","money_mouth":"Bocca danarosa",laughing:"Risatona",kiss:"Bacio",innocent:"Santarellino",frown:"Triste","foot_in_mouth":"Piede in bocca",embarassed:"Imbarazzato",usage:"Utilizza le freccie sinistra e destra per navigare."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.emotions_dlg',{cry:"Cry",cool:"Cool",desc:"\u8868\u60c5\u30a2\u30a4\u30b3\u30f3",title:"\u8868\u60c5\u30a2\u30a4\u30b3\u30f3\u306e\u633f\u5165",yell:"Yell",wink:"Wink",undecided:"Undecided","tongue_out":"Tongue out",surprised:"Surprised",smile:"Smile",sealed:"Sealed","money_mouth":"Money mouth",laughing:"Laughing",kiss:"Kiss",innocent:"Innocent",frown:"Frown","foot_in_mouth":"Foot in mouth",embarassed:"Embarassed"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.emotions_dlg',{cry:"Huilen",cool:"Stoer",desc:"Emoties",title:"Emotie invoegen",yell:"Roepen",wink:"Knipogen",undecided:"Onbeslist","tongue_out":"Tong uitsteken",surprised:"Verrast",smile:"Lachen",sealed:"Afgesloten","money_mouth":"Hebberig",laughing:"Lachen",kiss:"Zoenen",innocent:"Onschuldig",frown:"Wenkbrauw ophalen","foot_in_mouth":"Verstomd",embarassed:"Schamen"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.emotions_dlg',{cry:"\u041f\u043b\u0430\u0447\u0443",cool:"\u041a\u0440\u0443\u0442\u043e\u0439",desc:"\u0421\u043c\u0430\u0439\u043b\u044b",title:"\u0412\u044b\u0431\u043e\u0440 \u0441\u043c\u0430\u0439\u043b\u0430",yell:"\u041a\u0440\u0438\u0447\u0443",wink:"\u041f\u043e\u0434\u043c\u0438\u0433\u0438\u0432\u0430\u044e",undecided:"\u0412 \u043d\u0435\u0440\u0435\u0448\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438","tongue_out":"\u0414\u0440\u0430\u0437\u043d\u044e\u0441\u044c",surprised:"\u0423\u0434\u0438\u0432\u043b\u044f\u044e\u0441\u044c",smile:"\u0423\u043b\u044b\u0431\u0430\u044e\u0441\u044c",sealed:"\u041d\u0435\u043c \u043a\u0430\u043a \u0440\u044b\u0431\u0430","money_mouth":"\u0414\u0435\u043d\u044c\u0433\u0438",laughing:"\u0421\u043c\u0435\u044e\u0441\u044c",kiss:"\u041f\u043e\u0446\u0435\u043b\u0443\u0439",innocent:"\u0410\u043d\u0433\u0435\u043b",frown:"\u0425\u043c\u0443\u0440\u044e\u0441\u044c","foot_in_mouth":"\u0412 \u0440\u043e\u0442 \u043c\u043d\u0435 \u043d\u043e\u0433\u0438",embarassed:"\u041a\u0440\u0430\u0441\u043d\u0435\u044e"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/emotions/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.emotions_dlg',{cry:"\u041f\u043b\u0430\u0447",cool:"Cool",desc:"\u041f\u043e\u0441\u043c\u0456\u0448\u043a\u0438",title:"\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u0438 \u043f\u043e\u0441\u043c\u0456\u0448\u043a\u0443",yell:"\u0417\u043e\u0439\u043a",wink:"\u041f\u0456\u0434\u043c\u043e\u0440\u0433\u0443\u0454",undecided:"\u041d\u0435\u0440\u0456\u0448\u0443\u0447\u0456\u0441\u0442\u044c","tongue_out":"\u041f\u043e\u043a\u0430\u0437\u0443\u0454 \u044f\u0437\u0438\u043a\u0430",surprised:"\u0417\u0434\u0438\u0432\u043e\u0432\u0430\u043d\u0456\u0441\u0442\u044c",smile:"\u041f\u043e\u0441\u043c\u0456\u0448\u043a\u0430",sealed:"Sealed","money_mouth":"\u0413\u0440\u043e\u0449\u0456 \u0432 \u0440\u043e\u0442\u0456",laughing:"\u0421\u043c\u0456\u0445",kiss:"\u041f\u043e\u0446\u0456\u043b\u0443\u043d\u043e\u043a",innocent:"\u041d\u0435\u0432\u0438\u043d\u043d\u0456\u0441\u0442\u044c",frown:"\u041d\u0430\u0441\u0443\u043f\u043b\u0435\u043d\u043d\u0456\u0441\u0442\u044c","foot_in_mouth":"\u041d\u043e\u0433\u0430 \u0432 \u0440\u043e\u0442\u0456",embarassed:"\u0417\u0431\u0435\u043d\u0442\u0435\u0436\u0435\u043d\u043d\u044f"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/dialog.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {#example_dlg.title} 5 | 6 | 7 | 8 | 9 | 10 |
11 |

Here is a example dialog.

12 |

Selected text:

13 |

Custom arg:

14 | 15 |
16 | 17 | 18 |
19 |
20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.PluginManager.requireLangPack("example");tinymce.create("tinymce.plugins.ExamplePlugin",{init:function(a,b){a.addCommand("mceExample",function(){a.windowManager.open({file:b+"/dialog.htm",width:320+parseInt(a.getLang("example.delta_width",0)),height:120+parseInt(a.getLang("example.delta_height",0)),inline:1},{plugin_url:b,some_custom_arg:"custom arg"})});a.addButton("example",{title:"example.desc",cmd:"mceExample",image:b+"/img/example.gif"});a.onNodeChange.add(function(d,c,e){c.setActive("example",e.nodeName=="IMG")})},createControl:function(b,a){return null},getInfo:function(){return{longname:"Example plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example",version:"1.0"}}});tinymce.PluginManager.add("example",tinymce.plugins.ExamplePlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/example/img/example.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/js/dialog.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var ExampleDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | // Get the selected contents as text and place it in the input 8 | f.someval.value = tinyMCEPopup.editor.selection.getContent({format : 'text'}); 9 | f.somearg.value = tinyMCEPopup.getWindowArg('some_custom_arg'); 10 | }, 11 | 12 | insert : function() { 13 | // Insert the contents from the input into the document 14 | tinyMCEPopup.editor.execCommand('mceInsertContent', false, document.forms[0].someval.value); 15 | tinyMCEPopup.close(); 16 | } 17 | }; 18 | 19 | tinyMCEPopup.onInit.add(ExampleDialog.init, ExampleDialog); 20 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example',{ 2 | desc : 'This is just a template button' 3 | }); 4 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.example_dlg',{ 2 | title : 'This is just a example title' 3 | }); 4 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/example_dependency/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.ExampleDependencyPlugin",{init:function(a,b){},getInfo:function(){return{longname:"Example Dependency plugin",author:"Some author",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/example_dependency",version:"1.0"}}});tinymce.PluginManager.add("example_dependency",tinymce.plugins.ExampleDependencyPlugin,["example"])})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.IESpell",{init:function(a,b){var c=this,d;if(!tinymce.isIE){return}c.editor=a;a.addCommand("mceIESpell",function(){try{d=new ActiveXObject("ieSpell.ieSpellExtension");d.CheckDocumentNode(a.getDoc().documentElement)}catch(f){if(f.number==-2146827859){a.windowManager.confirm(a.getLang("iespell.download"),function(e){if(e){window.open("http://www.iespell.com/download.php","ieSpellDownload","")}})}else{a.windowManager.alert("Error Loading ieSpell: Exception "+f.number)}}});a.addButton("iespell",{title:"iespell.iespell_desc",cmd:"mceIESpell"})},getInfo:function(){return{longname:"IESpell (IE Only)",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("iespell",tinymce.plugins.IESpell)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/iespell/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | /** 2 | * editor_plugin_src.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 | (function() { 12 | tinymce.create('tinymce.plugins.IESpell', { 13 | init : function(ed, url) { 14 | var t = this, sp; 15 | 16 | if (!tinymce.isIE) 17 | return; 18 | 19 | t.editor = ed; 20 | 21 | // Register commands 22 | ed.addCommand('mceIESpell', function() { 23 | try { 24 | sp = new ActiveXObject("ieSpell.ieSpellExtension"); 25 | sp.CheckDocumentNode(ed.getDoc().documentElement); 26 | } catch (e) { 27 | if (e.number == -2146827859) { 28 | ed.windowManager.confirm(ed.getLang("iespell.download"), function(s) { 29 | if (s) 30 | window.open('http://www.iespell.com/download.php', 'ieSpellDownload', ''); 31 | }); 32 | } else 33 | ed.windowManager.alert("Error Loading ieSpell: Exception " + e.number); 34 | } 35 | }); 36 | 37 | // Register buttons 38 | ed.addButton('iespell', {title : 'iespell.iespell_desc', cmd : 'mceIESpell'}); 39 | }, 40 | 41 | getInfo : function() { 42 | return { 43 | longname : 'IESpell (IE Only)', 44 | author : 'Moxiecode Systems AB', 45 | authorurl : 'http://tinymce.moxiecode.com', 46 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/iespell', 47 | version : tinymce.majorVersion + "." + tinymce.minorVersion 48 | }; 49 | } 50 | }); 51 | 52 | // Register plugin 53 | tinymce.PluginManager.add('iespell', tinymce.plugins.IESpell); 54 | })(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/alert.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/button.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/buttons.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/confirm.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/corners.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/horizontal.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/inlinepopups/skins/clearlooks2/img/vertical.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemFlash, .mceItemShockWave, .mceItemQuickTime, .mceItemWindowsMedia, .mceItemRealMedia {border:1px dotted #cc0000; background-position:center; background-repeat:no-repeat; background-color:#ffffcc;} 2 | .mceItemShockWave {background-image: url(../img/shockwave.gif);} 3 | .mceItemFlash {background-image:url(../img/flash.gif);} 4 | .mceItemQuickTime {background-image:url(../img/quicktime.gif);} 5 | .mceItemWindowsMedia {background-image:url(../img/windowsmedia.gif);} 6 | .mceItemRealMedia {background-image:url(../img/realmedia.gif);} 7 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/css/media.css: -------------------------------------------------------------------------------- 1 | #id, #name, #hspace, #vspace, #class_name, #align { width: 100px } 2 | #hspace, #vspace { width: 50px } 3 | #flash_quality, #flash_align, #flash_scale, #flash_salign, #flash_wmode { width: 100px } 4 | #flash_base, #flash_flashvars, #html5_altsource1, #html5_altsource2, #html5_poster { width: 240px } 5 | #width, #height { width: 40px } 6 | #src, #media_type { width: 250px } 7 | #class { width: 120px } 8 | #prev { margin: 0; border: 1px solid black; width: 380px; height: 260px; overflow: auto } 9 | .panel_wrapper div.current { height: 420px; overflow: auto } 10 | #flash_options, #shockwave_options, #qt_options, #wmp_options, #rmp_options { display: none } 11 | .mceAddSelectValue { background-color: #DDDDDD } 12 | #qt_starttime, #qt_endtime, #qt_fov, #qt_href, #qt_moveid, #qt_moviename, #qt_node, #qt_pan, #qt_qtsrc, #qt_qtsrcchokespeed, #qt_target, #qt_tilt, #qt_urlsubstituten, #qt_volume { width: 70px } 13 | #wmp_balance, #wmp_baseurl, #wmp_captioningid, #wmp_currentmarker, #wmp_currentposition, #wmp_defaultframe, #wmp_playcount, #wmp_rate, #wmp_uimode, #wmp_volume { width: 70px } 14 | #rmp_console, #rmp_numloop, #rmp_controls, #rmp_scriptcallbacks { width: 70px } 15 | #shockwave_swvolume, #shockwave_swframe, #shockwave_swurl, #shockwave_swstretchvalign, #shockwave_swstretchhalign, #shockwave_swstretchstyle { width: 90px } 16 | #qt_qtsrc { width: 200px } 17 | iframe {border: 1px solid gray} 18 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/flash.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/flv_player.swf -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/quicktime.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/realmedia.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/shockwave.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/img/windowsmedia.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/media/moxieplayer.swf -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/css/modxlink.css: -------------------------------------------------------------------------------- 1 | .mceLinkList, .mceAnchorList, #targetlist {width:280px;} 2 | .mceActionPanel {margin-top:7px;} 3 | .panel_wrapper div.current {height:320px;} 4 | #classlist, #title, #href {width:280px;} 5 | #popupurl, #popupname {width:200px;} 6 | #popupwidth, #popupheight, #popupleft, #popuptop {width:30px;vertical-align:middle;text-align:center;} 7 | #id, #style, #classes, #target, #dir, #hreflang, #lang, #charset, #type, #rel, #rev, #tabindex, #accesskey {width:200px;} 8 | #events_panel input {width:200px;} 9 | 10 | 11 | 12 | .search-item { 13 | font:normal 11px tahoma, arial, helvetica, sans-serif; 14 | padding:3px 10px 3px 10px; 15 | border:1px solid #fff; 16 | border-bottom:1px solid #eeeeee; 17 | white-space:normal; 18 | color:#555; 19 | } 20 | .search-item h3 { 21 | display:block; 22 | font:inherit; 23 | font-weight:bold; 24 | color:#222; 25 | } 26 | 27 | .search-item h3 span { 28 | float: right; 29 | font-weight:normal; 30 | margin:0 0 5px 5px; 31 | width:100px; 32 | display:block; 33 | clear:none; 34 | } -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/img/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/img/link.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ar.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ar.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/az.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('az.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/be.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('be.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/bg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bg.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/bn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bn.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/br.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/bs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('bs.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ca.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ca.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ch.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ch.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/cs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/cy.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cy.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/da.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('da.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.modxlink',{ 2 | link_desc:"Link einf\u00FCgen/bearbeiten" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/dv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('dv.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/el.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('el.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/es.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('es.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/et.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('et.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/eu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('eu.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/fa.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fa.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/fi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fi.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/gl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gl.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/gu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('gu.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/he.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('he.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/hi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hi.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/hr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hr.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/hu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hu.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/hy.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('hy.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ia.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ia.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/id.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ii.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ii.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/is.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('is.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/it.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ja.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ka.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ka.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/kl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('kl.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ko.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ko.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/lb.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lb.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/lt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lt.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/lv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('lv.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ly.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ly.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/mk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mk.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ml.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ml.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/mn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('mn.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ms.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ms.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/nb.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nb.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/nl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/nn.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nn.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/no.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('no.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/pl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pl.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ps.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ps.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/pt-br.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('br.modxlink',{ 2 | link_desc:"Inserir/Editar link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/pt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('pt.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ro.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ro.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ru.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sc.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sc.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/se.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('se.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/si.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('si.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sk.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sl.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sq.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sq.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sr.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/sv.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('sv.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ta.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ta.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/te.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('te.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/th.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('th.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/tr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tr.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/tt.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tt.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/tw.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('tw.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/uk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/ur.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ur.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/vi.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('vi.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/zh.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zh.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/langs/zu.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('zu.modxlink',{ 2 | link_desc:"Insert/edit link" 3 | }); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/link.php: -------------------------------------------------------------------------------- 1 | getOption('tiny.core_path',null,$modx->getOption('core_path').'components/tinymce/'); 10 | require_once $tinyCorePath.'tinymce.class.php'; 11 | 12 | 13 | $o = file_get_contents(dirname(__FILE__).'/link.htm'); 14 | 15 | $managerUrl = $modx->getOption('manager_url',null,MODX_MANAGER_URL); 16 | $placeholders = array( 17 | 'manager_url' => $managerUrl, 18 | 'ext_url' => $managerUrl.'assets/ext3/', 19 | 'modext_url' => $managerUrl.'assets/modext/', 20 | 'connectors_url' => $modx->getOption('connectors_url',null,MODX_CONNECTORS_URL), 21 | 'css_url' => $managerUrl.'templates/'.$modx->getOption('manager_theme',null,'default').'/css/', 22 | ); 23 | 24 | $chunk = $modx->newObject('modChunk'); 25 | $chunk->setContent($o); 26 | $o = $chunk->process($placeholders); 27 | 28 | 29 | echo $o; 30 | die(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/modxlink/search.php: -------------------------------------------------------------------------------- 1 | getOption('search-mode',$_REQUEST,'pagetitle'); 12 | $query = $modx->getOption('q',$_REQUEST,''); 13 | 14 | $c = $modx->newQuery('modResource'); 15 | $c->where(array( 16 | $searchMode.':LIKE' => '%'.$query.'%', 17 | )); 18 | 19 | $count = $modx->getCount('modResource',$c); 20 | 21 | $c->select(array('id','pagetitle','alias')); 22 | $c->limit(10); 23 | 24 | $resources = $modx->getCollection('modResource',$c); 25 | 26 | foreach ($resources as $resource) { 27 | echo $resource->get('pagetitle').' ('.$resource->get('id').')|'.$resource->get('id')."\n"; 28 | } 29 | die(); 30 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Nonbreaking",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceNonBreaking",function(){a.execCommand("mceInsertContent",false,(a.plugins.visualchars&&a.plugins.visualchars.state)?' ':" ")});a.addButton("nonbreaking",{title:"nonbreaking.nonbreaking_desc",cmd:"mceNonBreaking"});if(a.getParam("nonbreaking_force_tab")){a.onKeyDown.add(function(d,f){if(f.keyCode==9){f.preventDefault();d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking");d.execCommand("mceNonBreaking")}})}},getInfo:function(){return{longname:"Nonbreaking space",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("nonbreaking",tinymce.plugins.Nonbreaking)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/nonbreaking/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | /** 2 | * editor_plugin_src.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 | (function() { 12 | tinymce.create('tinymce.plugins.Nonbreaking', { 13 | init : function(ed, url) { 14 | var t = this; 15 | 16 | t.editor = ed; 17 | 18 | // Register commands 19 | ed.addCommand('mceNonBreaking', function() { 20 | ed.execCommand('mceInsertContent', false, (ed.plugins.visualchars && ed.plugins.visualchars.state) ? ' ' : ' '); 21 | }); 22 | 23 | // Register buttons 24 | ed.addButton('nonbreaking', {title : 'nonbreaking.nonbreaking_desc', cmd : 'mceNonBreaking'}); 25 | 26 | if (ed.getParam('nonbreaking_force_tab')) { 27 | ed.onKeyDown.add(function(ed, e) { 28 | if (e.keyCode == 9) { 29 | e.preventDefault(); 30 | 31 | ed.execCommand('mceNonBreaking'); 32 | ed.execCommand('mceNonBreaking'); 33 | ed.execCommand('mceNonBreaking'); 34 | } 35 | }); 36 | } 37 | }, 38 | 39 | getInfo : function() { 40 | return { 41 | longname : 'Nonbreaking space', 42 | author : 'Moxiecode Systems AB', 43 | authorurl : 'http://tinymce.moxiecode.com', 44 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/nonbreaking', 45 | version : tinymce.majorVersion + "." + tinymce.minorVersion 46 | }; 47 | } 48 | 49 | // Private methods 50 | }); 51 | 52 | // Register plugin 53 | tinymce.PluginManager.add('nonbreaking', tinymce.plugins.Nonbreaking); 54 | })(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/css/content.css: -------------------------------------------------------------------------------- 1 | .mcePageBreak {display:block;border:0;width:100%;height:12px;border-top:1px dotted #ccc;margin-top:15px;background:#fff url(../img/pagebreak.gif) no-repeat center top;} 2 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.PageBreakPlugin",{init:function(b,d){var f='',a="mcePageBreak",c=b.getParam("pagebreak_separator",""),e;e=new RegExp(c.replace(/[\?\.\*\[\]\(\)\{\}\+\^\$\:]/g,function(g){return"\\"+g}),"g");b.addCommand("mcePageBreak",function(){b.execCommand("mceInsertContent",0,f)});b.addButton("pagebreak",{title:"pagebreak.desc",cmd:a});b.onInit.add(function(){if(b.theme.onResolveName){b.theme.onResolveName.add(function(g,h){if(h.node.nodeName=="IMG"&&b.dom.hasClass(h.node,a)){h.name="pagebreak"}})}});b.onClick.add(function(g,h){h=h.target;if(h.nodeName==="IMG"&&g.dom.hasClass(h,a)){g.selection.select(h)}});b.onNodeChange.add(function(h,g,i){g.setActive("pagebreak",i.nodeName==="IMG"&&h.dom.hasClass(i,a))});b.onBeforeSetContent.add(function(g,h){h.content=h.content.replace(e,f)});b.onPostProcess.add(function(g,h){if(h.get){h.content=h.content.replace(/]+>/g,function(i){if(i.indexOf('class="mcePageBreak')!==-1){i=c}return i})}})},getInfo:function(){return{longname:"PageBreak",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/pagebreak",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("pagebreak",tinymce.plugins.PageBreakPlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/pagebreak.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/pagebreak/img/trans.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/js/pastetext.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var PasteTextDialog = { 4 | init : function() { 5 | this.resize(); 6 | }, 7 | 8 | insert : function() { 9 | var h = tinyMCEPopup.dom.encode(document.getElementById('content').value), lines; 10 | 11 | // Convert linebreaks into paragraphs 12 | if (document.getElementById('linebreaks').checked) { 13 | lines = h.split(/\r?\n/); 14 | if (lines.length > 1) { 15 | h = ''; 16 | tinymce.each(lines, function(row) { 17 | h += '

' + row + '

'; 18 | }); 19 | } 20 | } 21 | 22 | tinyMCEPopup.editor.execCommand('mceInsertClipboardContent', false, {content : h}); 23 | tinyMCEPopup.close(); 24 | }, 25 | 26 | resize : function() { 27 | var vp = tinyMCEPopup.dom.getViewPort(window), el; 28 | 29 | el = document.getElementById('content'); 30 | 31 | el.style.width = (vp.w - 20) + 'px'; 32 | el.style.height = (vp.h - 90) + 'px'; 33 | } 34 | }; 35 | 36 | tinyMCEPopup.onInit.add(PasteTextDialog.init, PasteTextDialog); 37 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.paste_dlg',{"word_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna.","text_linebreaks":"Zachovat zalamov\u00e1n\u00ed \u0159\u00e1dk\u016f","text_title":"Pou\u017eijte CTRL+V pro vlo\u017een\u00ed textu do okna."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.paste_dlg',{"word_title":"Dr\u00fccken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00fcgen.","text_linebreaks":"Zeilenumbr\u00fcche beibehalten","text_title":"Dr\u00fccken Sie auf Ihrer Tastatur Strg+V, um den Text einzuf\u00fcgen."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.paste_dlg',{"word_title":"Use Ctrl+V on your keyboard to paste the text into the window.","text_linebreaks":"Keep Linebreaks","text_title":"Use Ctrl+V on your keyboard to paste the text into the window."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.paste_dlg',{"word_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre.","text_linebreaks":"Conserver les retours \u00e0 la ligne","text_title":"Utilisez CTRL+V sur votre clavier pour coller le texte dans la fen\u00eatre."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.paste_dlg',{"word_title":"Gunakan CTRL+V pada keyboard untuk paste.","text_linebreaks":"Keep linebreaks","text_title":"Gunakan CTRL+V pada keyboard untuk paste."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.paste_dlg',{"word_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra.","text_linebreaks":"Mantieni interruzioni di riga","text_title":"Premere CTRL+V sulla tastiera per incollare il testo nella finestra."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.paste_dlg',{"word_title":"Ctrl+V(\u30ad\u30fc\u30dc\u30fc\u30c9)\u3067\u30c6\u30ad\u30b9\u30c8\u3092\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002","text_linebreaks":"\u6539\u884c\u3092\u4fdd\u6301\u3059\u308b","text_title":"Ctrl+V(\u30ad\u30fc\u30dc\u30fc\u30c9)\u3067\u30c6\u30ad\u30b9\u30c8\u3092\u8cbc\u308a\u4ed8\u3051\u3066\u304f\u3060\u3055\u3044\u3002"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.paste_dlg',{"word_title":"Gebruik Ctrl+V om tekst in het venster te plakken.","text_linebreaks":"Regelafbreking bewaren","text_title":"Gebruik Ctrl+V om tekst in het venster te plakken."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.paste_dlg',{"word_title":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430 \u0432 \u043e\u043a\u043d\u043e.","text_linebreaks":"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u044b \u0441\u0442\u0440\u043e\u043a","text_title":"\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0430 \u0432 \u043e\u043a\u043d\u043e."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.paste_dlg',{"word_title":"\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0443 \u0443 \u0432\u0456\u043a\u043d\u043e.","text_linebreaks":"\u0417\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0438 \u0440\u044f\u0434\u043a\u0456\u0432","text_title":"\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0439\u0442\u0435 CTRL+V \u0434\u043b\u044f \u0432\u0441\u0442\u0430\u0432\u043a\u0438 \u0442\u0435\u043a\u0441\u0442\u0443 \u0443 \u0432\u0456\u043a\u043d\u043e."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/pastetext.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | {#paste.paste_text_desc} 4 | 5 | 6 | 7 | 8 |
9 |
{#paste.paste_text_desc}
10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 |
{#paste_dlg.text_title}
18 | 19 | 20 | 21 |
22 | 23 | 24 |
25 |
26 | 27 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/paste/pasteword.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | {#paste.paste_word_desc} 4 | 5 | 6 | 7 | 8 |
9 |
{#paste.paste_word_desc}
10 | 11 |
{#paste_dlg.word_title}
12 | 13 |
14 | 15 |
16 | 17 | 18 |
19 |
20 | 21 | 22 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/preview/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Preview",{init:function(a,b){var d=this,c=tinymce.explode(a.settings.content_css);d.editor=a;tinymce.each(c,function(f,e){c[e]=a.documentBaseURI.toAbsolute(f)});a.addCommand("mcePreview",function(){a.windowManager.open({file:a.getParam("plugin_preview_pageurl",b+"/preview.html"),width:parseInt(a.getParam("plugin_preview_width","550")),height:parseInt(a.getParam("plugin_preview_height","600")),resizable:"yes",scrollbars:"yes",popup_css:c?c.join(","):a.baseURI.toAbsolute("themes/"+a.settings.theme+"/skins/"+a.settings.skin+"/content.css"),inline:a.getParam("plugin_preview_inline",1)},{base:a.documentBaseURI.getURI()})});a.addButton("preview",{title:"preview.preview_desc",cmd:"mcePreview"})},getInfo:function(){return{longname:"Preview",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/preview",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("preview",tinymce.plugins.Preview)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/preview/example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 18 | Example of a custom preview page 19 | 20 | 21 | 22 | Editor contents:
23 |
24 | 25 |
26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 10 | {#preview.preview_desc} 11 | 12 | 13 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Print",{init:function(a,b){a.addCommand("mcePrint",function(){a.getWin().print()});a.addButton("print",{title:"print.print_desc",cmd:"mcePrint"})},getInfo:function(){return{longname:"Print",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("print",tinymce.plugins.Print)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/print/editor_plugin_src.js: -------------------------------------------------------------------------------- 1 | /** 2 | * editor_plugin_src.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 | (function() { 12 | tinymce.create('tinymce.plugins.Print', { 13 | init : function(ed, url) { 14 | ed.addCommand('mcePrint', function() { 15 | ed.getWin().print(); 16 | }); 17 | 18 | ed.addButton('print', {title : 'print.print_desc', cmd : 'mcePrint'}); 19 | }, 20 | 21 | getInfo : function() { 22 | return { 23 | longname : 'Print', 24 | author : 'Moxiecode Systems AB', 25 | authorurl : 'http://tinymce.moxiecode.com', 26 | infourl : 'http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/print', 27 | version : tinymce.majorVersion + "." + tinymce.minorVersion 28 | }; 29 | } 30 | }); 31 | 32 | // Register plugin 33 | tinymce.PluginManager.add('print', tinymce.plugins.Print); 34 | })(); 35 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/safari/blank.htm: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/safari/editor_plugin_src.js -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/save/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.Save",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceSave",c._save,c);a.addCommand("mceCancel",c._cancel,c);a.addButton("save",{title:"save.save_desc",cmd:"mceSave"});a.addButton("cancel",{title:"save.cancel_desc",cmd:"mceCancel"});a.onNodeChange.add(c._nodeChange,c);a.addShortcut("ctrl+s",a.getLang("save.save_desc"),"mceSave")},getInfo:function(){return{longname:"Save",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/save",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_nodeChange:function(b,a,c){var b=this.editor;if(b.getParam("save_enablewhendirty")){a.setDisabled("save",!b.isDirty());a.setDisabled("cancel",!b.isDirty())}},_save:function(){var c=this.editor,a,e,d,b;a=tinymce.DOM.get(c.id).form||tinymce.DOM.getParent(c.id,"form");if(c.getParam("save_enablewhendirty")&&!c.isDirty()){return}tinyMCE.triggerSave();if(e=c.getParam("save_onsavecallback")){if(c.execCallback("save_onsavecallback",c)){c.startContent=tinymce.trim(c.getContent({format:"raw"}));c.nodeChanged()}return}if(a){c.isNotDirty=true;if(a.onsubmit==null||a.onsubmit()!=false){a.submit()}c.nodeChanged()}else{c.windowManager.alert("Error: No form element found.")}},_cancel:function(){var a=this.editor,c,b=tinymce.trim(a.startContent);if(c=a.getParam("save_oncancelcallback")){a.execCallback("save_oncancelcallback",a);return}a.setContent(b);a.undoManager.clear();a.nodeChanged()}});tinymce.PluginManager.add("save",tinymce.plugins.Save)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper {height:85px;} 2 | .panel_wrapper div.current {height:85px;} 3 | 4 | /* IE */ 5 | * html .panel_wrapper {height:100px;} 6 | * html .panel_wrapper div.current {height:100px;} 7 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.SearchReplacePlugin",{init:function(a,c){function b(d){window.focus();a.windowManager.open({file:c+"/searchreplace.htm",width:420+parseInt(a.getLang("searchreplace.delta_width",0)),height:170+parseInt(a.getLang("searchreplace.delta_height",0)),inline:1,auto_focus:0},{mode:d,search_string:a.selection.getContent({format:"text"}),plugin_url:c})}a.addCommand("mceSearch",function(){b("search")});a.addCommand("mceReplace",function(){b("replace")});a.addButton("search",{title:"searchreplace.search_desc",cmd:"mceSearch"});a.addButton("replace",{title:"searchreplace.replace_desc",cmd:"mceReplace"});a.addShortcut("ctrl+f","searchreplace.search_desc","mceSearch")},getInfo:function(){return{longname:"Search/Replace",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/searchreplace",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("searchreplace",tinymce.plugins.SearchReplacePlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.searchreplace_dlg',{findwhat:"Co hledat",replacewith:"\u010c\u00edm nahradit",direction:"Sm\u011br",up:"Nahoru",down:"Dol\u016f",mcase:"Rozli\u0161ovat velikost",findnext:"Naj\u00edt dal\u0161\u00ed",allreplaced:"V\u0161echny v\u00fdskyty byly nahrazeny.","searchnext_desc":"Naj\u00edt dal\u0161\u00ed",notfound:"Hled\u00e1n\u00ed bylo dokon\u010deno. Hledan\u00fd text nebyl nalezen.","search_title":"Naj\u00edt","replace_title":"Naj\u00edt/nahradit",replaceall:"Nahradit v\u0161e",replace:"Nahradit"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.searchreplace_dlg',{findwhat:"Zu suchender Text",replacewith:"Ersetzen durch",direction:"Suchrichtung",up:"Aufw\u00e4rts",down:"Abw\u00e4rts",mcase:"Gro\u00df-/Kleinschreibung beachten",findnext:"Weitersuchen",allreplaced:"Alle Vorkommen der Zeichenkette wurden ersetzt.","searchnext_desc":"Weitersuchen",notfound:"Die Suche ist am Ende angelangt. Die Zeichenkette konnte nicht gefunden werden.","search_title":"Suchen","replace_title":"Suchen/Ersetzen",replaceall:"Alle ersetzen",replace:"Ersetzen"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.searchreplace_dlg',{findwhat:"Find What",replacewith:"Replace with",direction:"Direction",up:"Up",down:"Down",mcase:"Match Case",findnext:"Find Next",allreplaced:"All occurrences of the search string were replaced.","searchnext_desc":"Find Again",notfound:"The search has been completed. The search string could not be found.","search_title":"Find","replace_title":"Find/Replace",replaceall:"Replace All",replace:"Replace"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.searchreplace_dlg',{findwhat:"Rechercher ceci",replacewith:"Remplacer par",direction:"Direction",up:"Vers le haut",down:"Vers le bas",mcase:"Sensible \u00e0 la casse",findnext:"Rechercher le suivant",allreplaced:"Toutes les occurrences de la cha\u00eene recherch\u00e9e ont \u00e9t\u00e9 remplac\u00e9es.","searchnext_desc":"Suivant",notfound:"La recherche est termin\u00e9e. La cha\u00eene recherch\u00e9e n\'a pas \u00e9t\u00e9 trouv\u00e9e.","search_title":"Rechercher","replace_title":"Rechercher / remplacer",replaceall:"Tout remplacer",replace:"Remplacer"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.searchreplace_dlg',{findwhat:"Cari apa...",replacewith:"Ganti dengan...",direction:"Arah",up:"Atas",down:"Bawah",mcase:"Match case",findnext:"Cari selanjutnya",allreplaced:"Seluruh kata dari string pencarian telah digantikan","searchnext_desc":"Cari Lagi",notfound:"Pencarian selesai. Hasil tidak ditemukan.","search_title":"Cari","replace_title":"Cari/Ganti",replaceall:"Ganti semua",replace:"Ganti"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.searchreplace_dlg',{findwhat:"Trova:",replacewith:"Sostituisci con:",direction:"Direzione",up:"Avanti",down:"Indietro",mcase:"Maiuscole/minuscole",findnext:"Trova succ.",allreplaced:"Tutte le occorrenze del criterio di ricerca sono state sostituite.","searchnext_desc":"Trova successivo",notfound:"Ricerca completata. Nessun risultato trovato.","search_title":"Trova","replace_title":"Trova/Sostituisci",replaceall:"Sost. tutto",replace:"Sostituisci"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.searchreplace_dlg',{findwhat:"\u691c\u7d22\u6587\u5b57\u5217",replacewith:"\u7f6e\u63db\u6587\u5b57\u5217",direction:"\u65b9\u5411",up:"\u4e0a\u3078",down:"\u4e0b\u3078",mcase:"\u5927\u6587\u5b57/\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3059\u308b",findnext:"\u6b21\u3078",allreplaced:"\u5168\u3066\u7f6e\u63db\u3055\u308c\u307e\u3057\u305f\u3002","searchnext_desc":"\u518d\u691c\u7d22",notfound:"\u6700\u5f8c\u307e\u3067\u691c\u7d22\u3057\u307e\u3057\u305f\u304c\u3001\u691c\u7d22\u6587\u5b57\u5217\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002","search_title":"\u691c\u7d22","replace_title":"\u691c\u7d22/\u7f6e\u63db",replaceall:"\u5168\u3066\u7f6e\u63db",replace:"\u7f6e\u63db"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.searchreplace_dlg',{findwhat:"Zoeken naar",replacewith:"Vervangen door",direction:"Richting",up:"Omhoog",down:"Omlaag",mcase:"Identieke hoofdletters/kleine letters",findnext:"Zoeken",allreplaced:"Alle instanties van de zoekterm zijn vervangen.","searchnext_desc":"Opnieuw zoeken",notfound:"Het doorzoeken is voltooid. De zoekterm kon niet meer worden gevonden.","search_title":"Zoeken","replace_title":"Zoeken/Vervangen",replaceall:"Alles verv.",replace:"Vervangen"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.searchreplace_dlg',{findwhat:"\u041f\u043e\u0438\u0441\u043a",replacewith:"\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430",direction:"\u041d\u0430\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",up:"\u0412\u0432\u0435\u0440\u0445 ",down:"\u0412\u043d\u0438\u0437",mcase:"\u0423\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440",findnext:"\u041d\u0430\u0439\u0442\u0438 \u0434\u0430\u043b\u0435\u0435",allreplaced:"\u0412\u0441\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0431\u044b\u043b\u0438 \u0437\u0430\u043c\u0435\u043d\u0435\u043d\u044b.","searchnext_desc":"\u041d\u0430\u0439\u0442\u0438 \u0435\u0449\u0435",notfound:"\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d. \u0421\u043e\u043e\u0442\u0432\u0435\u0441\u0442\u0432\u0438\u0439 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.","search_title":"\u041f\u043e\u0438\u0441\u043a","replace_title":"\u041f\u043e\u0438\u0441\u043a \u0438 \u0437\u0430\u043c\u0435\u043d\u0430",replaceall:"\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0435",replace:"\u0417\u0430\u043c\u0435\u043d\u0430"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/searchreplace/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.searchreplace_dlg',{findwhat:"\u0417\u043d\u0430\u0439\u0442\u0438",replacewith:"\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u043d\u0430",direction:"\u041d\u0430\u043f\u0440\u044f\u043c\u043e\u043a \u043f\u043e\u0448\u0443\u043a\u0443",up:"\u0412\u0433\u043e\u0440\u0443",down:"\u0412\u043d\u0438\u0437",mcase:"\u0412\u0440\u0430\u0445\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u0440\u0435\u0454\u0441\u0442\u0440",findnext:"\u0417\u043d\u0430\u0439\u0442\u0438 \u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0435",allreplaced:"\u0412\u0441\u0456 \u0432\u0445\u043e\u0434\u0436\u0435\u043d\u043d\u044f \u0440\u044f\u0434\u043a\u0430 \u0431\u0443\u043b\u0438 \u0437\u0430\u043c\u0456\u043d\u0435\u043d\u0456.","searchnext_desc":"\u0417\u043d\u0430\u0439\u0442\u0438 \u0449\u0435",notfound:"\u041f\u043e\u0448\u0443\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e. \u041f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u0439 \u0440\u044f\u0434\u043e\u043a \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e.","search_title":"\u0428\u0443\u043a\u0430\u0442\u0438","replace_title":"\u0428\u0443\u043a\u0430\u0442\u0438/\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438",replaceall:"\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438 \u0432\u0441\u0435",replace:"\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/changelog.txt: -------------------------------------------------------------------------------- 1 | Version 2.0.4 (2010-12-20) 2 | Fixed issue with the JSON class not having the correct number of parameters to ord calls. 3 | Version 2.0.3 (2010-04-19) 4 | Added standalone support. Will use native spellchecker for supported browsers. 5 | Added @package phpdoc comments. Patch contributed by Jacob Santos. 6 | Fixed some PHP missing function issue. 7 | Version 2.0.2 (2008-04-30) 8 | Added new EnchantSpell engine class contributed by Michel Weimerskirch. 9 | Added new general.remote_rpc_url option, enables you to proxy requests to another server. 10 | Fixed security hole in PSpellShell.php file if PSpellShell engine was used. 11 | Version 2.0.1 (2008-03-07) 12 | Fixed bug where spellchecker was auto focusing the editor in IE. 13 | Version 2.0 (2008-01-30) 14 | Fixed bug where the suggestions menu was placed at an incorrect location. 15 | Version 2.0rc1 (2008-01-14) 16 | Moved package from beta to release candidate. 17 | Version 2.0b3 (2007-12-xx) 18 | Fixed bug where the suggestions menu could appear at the wrong location. 19 | Version 2.0b2 (2007-11-29) 20 | Fixed bug where the spellchecker was removing the word when it was ignored. 21 | Version 2.0b1 (2007-11-21) 22 | Moved spellchecker from alpha to beta status. 23 | Version 2.0a2 (2007-11-13) 24 | Updated plugin so it works correctly with the TinyMCE 3.0a3 version. 25 | Version 2.0a1 (2007-11-01) 26 | Rewritten version for TinyMCE 3.0 this new version uses JSON RPC. 27 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/EnchantSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/EnchantSpell.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/GoogleSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/GoogleSpell.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/PSpell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/PSpell.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/PSpellShell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/PSpellShell.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/SpellChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/SpellChecker.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/utils/JSON.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/utils/JSON.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/utils/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/classes/utils/Logger.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/config.php: -------------------------------------------------------------------------------- 1 | 28 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin.js -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/editor_plugin_src.js -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/includes/general.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/includes/general.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/rpc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/plugins/spellchecker/rpc.php -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/css/props.css: -------------------------------------------------------------------------------- 1 | #text_font {width:250px;} 2 | #text_size {width:70px;} 3 | .mceAddSelectValue {background:#DDD;} 4 | select, #block_text_indent, #box_width, #box_height, #box_padding_top, #box_padding_right, #box_padding_bottom, #box_padding_left {width:70px;} 5 | #box_margin_top, #box_margin_right, #box_margin_bottom, #box_margin_left, #positioning_width, #positioning_height, #positioning_zindex {width:70px;} 6 | #positioning_placement_top, #positioning_placement_right, #positioning_placement_bottom, #positioning_placement_left {width:70px;} 7 | #positioning_clip_top, #positioning_clip_right, #positioning_clip_bottom, #positioning_clip_left {width:70px;} 8 | .panel_toggle_insert_span {padding-top:10px;} 9 | .panel_wrapper div.current {padding-top:10px;height:230px;} 10 | .delim {border-left:1px solid gray;} 11 | .tdelim {border-bottom:1px solid gray;} 12 | #block_display {width:145px;} 13 | #list_type {width:115px;} 14 | .disabled {background:#EEE;} 15 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.StylePlugin",{init:function(a,b){a.addCommand("mceStyleProps",function(){var c=false;var f=a.selection.getSelectedBlocks();var d=[];if(f.length===1){d.push(a.selection.getNode().style.cssText)}else{tinymce.each(f,function(g){d.push(a.dom.getAttrib(g,"style"))});c=true}a.windowManager.open({file:b+"/props.htm",width:480+parseInt(a.getLang("style.delta_width",0)),height:340+parseInt(a.getLang("style.delta_height",0)),inline:1},{applyStyleToBlocks:c,plugin_url:b,styles:d})});a.addCommand("mceSetElementStyle",function(d,c){if(e=a.selection.getNode()){a.dom.setAttrib(e,"style",c);a.execCommand("mceRepaint")}});a.onNodeChange.add(function(d,c,f){c.setDisabled("styleprops",f.nodeName==="BODY")});a.addButton("styleprops",{title:"style.desc",cmd:"mceStyleProps"})},getInfo:function(){return{longname:"Style",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/style",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("style",tinymce.plugins.StylePlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.style_dlg',{"text_lineheight":"Zeilenh\u00f6he","text_variant":"Variante","text_style":"Stil","text_weight":"Dicke","text_size":"Gr\u00f6\u00dfe","text_font":"Schriftart","text_props":"Text","positioning_tab":"Positionierung","list_tab":"Liste","border_tab":"Rahmen","box_tab":"Box","block_tab":"Block","background_tab":"Hintergrund","text_tab":"Text",apply:"\u00dcbernehmen",title:"CSS-Styles bearbeiten",clip:"Ausschnitt",placement:"Platzierung",overflow:"Verhalten bei \u00dcbergr\u00f6\u00dfe",zindex:"Z-Wert",visibility:"Sichtbar","positioning_type":"Art der Positionierung",position:"Positionierung","bullet_image":"Listenpunkt-Grafik","list_type":"Listenpunkt-Art",color:"Textfarbe",height:"H\u00f6he",width:"Breite",style:"Format",margin:"\u00c4u\u00dferer Abstand",left:"Links",bottom:"Unten",right:"Rechts",top:"Oben",same:"Alle gleich",padding:"Innerer Abstand","box_clear":"Umflie\u00dfung verhindern","box_float":"Umflie\u00dfung","box_height":"H\u00f6he","box_width":"Breite","block_display":"Umbruchverhalten","block_whitespace":"Automatischer Umbruch","block_text_indent":"Einr\u00fcckung","block_text_align":"Ausrichtung","block_vertical_alignment":"Vertikale Ausrichtung","block_letterspacing":"Buchstabenabstand","block_wordspacing":"Wortabstand","background_vpos":"Position Y","background_hpos":"Position X","background_attachment":"Wasserzeicheneffekt","background_repeat":"Wiederholung","background_image":"Hintergrundbild","background_color":"Hintergrundfarbe","text_none":"keine","text_blink":"blinkend","text_case":"Schreibung","text_striketrough":"durchgestrichen","text_underline":"unterstrichen","text_overline":"\u00fcberstrichen","text_decoration":"Gestaltung","text_color":"Farbe"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.style_dlg',{"text_lineheight":"Line Height","text_variant":"Variant","text_style":"Style","text_weight":"Weight","text_size":"Size","text_font":"Font","text_props":"Text","positioning_tab":"Positioning","list_tab":"List","border_tab":"Border","box_tab":"Box","block_tab":"Block","background_tab":"Background","text_tab":"Text",apply:"Apply",toggle_insert_span:"Insert span at selection",title:"Edit CSS Style",clip:"Clip",placement:"Placement",overflow:"Overflow",zindex:"Z-index",visibility:"Visibility","positioning_type":"Type",position:"Position","bullet_image":"Bullet Image","list_type":"Type",color:"Color",height:"Height",width:"Width",style:"Style",margin:"Margin",left:"Left",bottom:"Bottom",right:"Right",top:"Top",same:"Same for All",padding:"Padding","box_clear":"Clear","box_float":"Float","box_height":"Height","box_width":"Width","block_display":"Display","block_whitespace":"Whitespace","block_text_indent":"Text Indent","block_text_align":"Text Align","block_vertical_alignment":"Vertical Alignment","block_letterspacing":"Letter Spacing","block_wordspacing":"Word Spacing","background_vpos":"Vertical Position","background_hpos":"Horizontal Position","background_attachment":"Attachment","background_repeat":"Repeat","background_image":"Background Image","background_color":"Background Color","text_none":"None","text_blink":"Blink","text_case":"Case","text_striketrough":"Strikethrough","text_underline":"Underline","text_overline":"Overline","text_decoration":"Decoration","text_color":"Color",text:"Text",background:"Background",block:"Block",box:"Box",border:"Border",list:"List"}); 2 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.style_dlg',{"text_lineheight":"Hauteur de ligne","text_variant":"Variante","text_style":"Style","text_weight":"Gras","text_size":"Taille","text_font":"Police","text_props":"Texte","positioning_tab":"Positionnement","list_tab":"Liste","border_tab":"Bordure","box_tab":"Bo\u00eete","block_tab":"Bloc","background_tab":"Fond","text_tab":"Texte",apply:"Appliquer",title:"\u00c9diter la feuille de style",clip:"Clip",placement:"Placement",overflow:"D\u00e9bordement",zindex:"Z-index",visibility:"Visibilit\u00e9","positioning_type":"Type",position:"Position","bullet_image":"Image de puce","list_type":"Type",color:"Couleur",height:"Hauteur",width:"Largeur",style:"Style",margin:"Marge",left:"Gauche",bottom:"Bas",right:"Droit",top:"Haut",same:"Identique pour tous",padding:"Espacement","box_clear":"Vider","box_float":"Flottant","box_height":"Hauteur","box_width":"Largeur","block_display":"Affichage","block_whitespace":"Fin de ligne","block_text_indent":"Indentation du texte","block_text_align":"Alignement du texte","block_vertical_alignment":"Alignement vertical","block_letterspacing":"Espacement des lettres","block_wordspacing":"Espacement des mots ","background_vpos":"Position verticale","background_hpos":"Position horizontale","background_attachment":"Attachement","background_repeat":"R\u00e9p\u00e9ter","background_image":"Image de fond","background_color":"Couleur de fond","text_none":"aucun","text_blink":"clignotant","text_case":"Casse","text_striketrough":"barr\u00e9","text_underline":"soulign\u00e9","text_overline":"ligne au-dessus","text_decoration":"D\u00e9coration","text_color":"Couleur"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.style_dlg',{"text_lineheight":"Line height","text_variant":"Variant","text_style":"Style","text_weight":"Weight","text_size":"Size","text_font":"Font","text_props":"Text","positioning_tab":"Positioning","list_tab":"List","border_tab":"Border","box_tab":"Box","block_tab":"Block","background_tab":"Background","text_tab":"Text",apply:"Apply",title:"Edit CSS Style",clip:"Clip",placement:"Placement",overflow:"Overflow",zindex:"Z-index",visibility:"Visibility","positioning_type":"Type",position:"Position","bullet_image":"Bullet image","list_type":"Type",color:"Color",height:"Height",width:"Width",style:"Style",margin:"Margin",left:"Left",bottom:"Bottom",right:"Right",top:"Top",same:"Same for all",padding:"Padding","box_clear":"Clear","box_float":"Float","box_height":"Height","box_width":"Width","block_display":"Display","block_whitespace":"Whitespace","block_text_indent":"Text indent","block_text_align":"Text align","block_vertical_alignment":"Vertical alignment","block_letterspacing":"Letter spacing","block_wordspacing":"Word spacing","background_vpos":"Vertical position","background_hpos":"Horizontal position","background_attachment":"Attachment","background_repeat":"Repeat","background_image":"Background image","background_color":"Background color","text_none":"none","text_blink":"blink","text_case":"Case","text_striketrough":"strikethrough","text_underline":"underline","text_overline":"overline","text_decoration":"Decoration","text_color":"Color"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.style_dlg',{"text_lineheight":"Altezza linea","text_variant":"Variante","text_style":"Stile","text_weight":"Spessore","text_size":"Dimensione","text_font":"Carattere","text_props":"Testo","positioning_tab":"Posizionamento","list_tab":"Liste","border_tab":"Bordi","box_tab":"Contenitore","block_tab":"Blocco","background_tab":"Sfondo","text_tab":"Testo",apply:"Applica",title:"Modifica stile CSS",clip:"Clip",placement:"Piazzamento",overflow:"Overflow",zindex:"Z-index",visibility:"Visibilit\u00e0","positioning_type":"Tipo",position:"Posizione","bullet_image":"Immagine Punto","list_type":"Tipo",color:"Colore",height:"Altezza",width:"Larghezza",style:"Stile",margin:"Margine",left:"Sinistro",bottom:"Inferiore",right:"Destro",top:"Superiore",same:"Uguale per tutti",padding:"Spazio dal bordo","box_clear":"Pulito","box_float":"Fluttuante","box_height":"Altezza","box_width":"Larghezza","block_display":"Visualizzazione","block_whitespace":"Whitespace","block_text_indent":"Indentazione testo","block_text_align":"Allineamento testo","block_vertical_alignment":"Allineamento verticale","block_letterspacing":"Spaziatura caratteri","block_wordspacing":"Spaziatura parole","background_vpos":"Posizione verticale","background_hpos":"Posizione orizzontale","background_attachment":"Allegato","background_repeat":"Repetizione","background_image":"Immagine sfondo","background_color":"Colore sfondo","text_none":"nessuna","text_blink":"lampeggiante","text_case":"Tipo","text_striketrough":"barrato","text_underline":"sottolineato","text_overline":"sopralineato","text_decoration":"Decorazione","text_color":"Colore",text:"Testo",background:"Sfondo",block:"Blocco",box:"Box",border:"Bordo",list:"Lista"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.style_dlg',{"text_lineheight":"Lijnhoogte","text_variant":"Variant","text_style":"Stijl","text_weight":"Gewicht","text_size":"Tekengrootte","text_font":"Lettertype","text_props":"Tekst","positioning_tab":"Positionering","list_tab":"Lijst","border_tab":"Rand","box_tab":"Box","block_tab":"Blok","background_tab":"Achtergrond","text_tab":"Tekst",apply:"Toepassen",title:"CSS Stijl bewerken",clip:"Clip",placement:"Plaatsing",overflow:"Overvloeien",zindex:"Z-index",visibility:"Zichtbaarheid","positioning_type":"Type",position:"Positie","bullet_image":"Opsommingsteken","list_type":"Type",color:"Kleur",height:"Hoogte",width:"Breedte",style:"Stijl",margin:"Marge",left:"Links",bottom:"Onder",right:"Rechts",top:"Boven",same:"Alles hetzelfde",padding:"Opening","box_clear":"Vrijhouden","box_float":"Zweven","box_height":"Hoogte","box_width":"Breedte","block_display":"Weergave","block_whitespace":"Witruimte","block_text_indent":"Inspringen","block_text_align":"Tekstuitlijning","block_vertical_alignment":"Verticale uitlijning","block_letterspacing":"Letterruimte","block_wordspacing":"Woordruimte","background_vpos":"Verticale positie","background_hpos":"Horizontale positie","background_attachment":"Bijlage","background_repeat":"Herhalen","background_image":"Achtergrondafbeelding","background_color":"Achtergrondkleur","text_none":"Niets","text_blink":"Knipperen","text_case":"Hoofdlettergebruik","text_striketrough":"Doorhalen","text_underline":"Onderstrepen","text_overline":"Overhalen","text_decoration":"Decoratie","text_color":"Kleur"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/style/readme.txt: -------------------------------------------------------------------------------- 1 | Edit CSS Style plug-in notes 2 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 3 | Unlike WYSIWYG editor functionality that operates only on the selected text, 4 | typically by inserting new HTML elements with the specified styles. 5 | This plug-in operates on the HTML blocks surrounding the selected text. 6 | No new HTML elements are created. 7 | 8 | This plug-in only operates on the surrounding blocks and not the nearest 9 | parent node. This means that if a block encapsulates a node, 10 | e.g

text

, then only the styles in the block are 11 | recognized, not those in the span. 12 | 13 | When selecting text that includes multiple blocks at the same level (peers), 14 | this plug-in accumulates the specified styles in all of the surrounding blocks 15 | and populates the dialogue checkboxes accordingly. There is no differentiation 16 | between styles set in all the blocks versus styles set in some of the blocks. 17 | 18 | When the [Update] or [Apply] buttons are pressed, the styles selected in the 19 | checkboxes are applied to all blocks that surround the selected text. 20 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/tabfocus/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){var c=tinymce.DOM,a=tinymce.dom.Event,d=tinymce.each,b=tinymce.explode;tinymce.create("tinymce.plugins.TabFocusPlugin",{init:function(f,g){function e(i,j){if(j.keyCode===9){return a.cancel(j)}}function h(l,p){var j,m,o,n,k;function q(t){n=c.select(":input:enabled,*[tabindex]:not(iframe)");function s(v){return v.nodeName==="BODY"||(v.type!="hidden"&&!(v.style.display=="none")&&!(v.style.visibility=="hidden")&&s(v.parentNode))}function i(v){return v.attributes.tabIndex.specified||v.nodeName=="INPUT"||v.nodeName=="TEXTAREA"}function u(){return tinymce.isIE6||tinymce.isIE7}function r(v){return((!u()||i(v)))&&v.getAttribute("tabindex")!="-1"&&s(v)}d(n,function(w,v){if(w.id==l.id){j=v;return false}});if(t>0){for(m=j+1;m=0;m--){if(r(n[m])){return n[m]}}}return null}if(p.keyCode===9){k=b(l.getParam("tab_focus",l.getParam("tabfocus_elements",":prev,:next")));if(k.length==1){k[1]=k[0];k[0]=":prev"}if(p.shiftKey){if(k[0]==":prev"){n=q(-1)}else{n=c.get(k[0])}}else{if(k[1]==":next"){n=q(1)}else{n=c.get(k[1])}}if(n){if(n.id&&(l=tinymce.get(n.id||n.name))){l.focus()}else{window.setTimeout(function(){if(!tinymce.isWebKit){window.focus()}n.focus()},10)}return a.cancel(p)}}}f.onKeyUp.add(e);if(tinymce.isGecko){f.onKeyPress.add(h);f.onKeyDown.add(e)}else{f.onKeyDown.add(h)}},getInfo:function(){return{longname:"Tabfocus",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/tabfocus",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("tabfocus",tinymce.plugins.TabFocusPlugin)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/table/css/cell.css: -------------------------------------------------------------------------------- 1 | /* CSS file for cell dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #class { 16 | width: 150px; 17 | } -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/table/css/row.css: -------------------------------------------------------------------------------- 1 | /* CSS file for row dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 200px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #action { 12 | margin-bottom: 3px; 13 | } 14 | 15 | #rowtype,#align,#valign,#class,#height { 16 | width: 150px; 17 | } 18 | 19 | #height { 20 | width: 50px; 21 | } 22 | 23 | .col2 { 24 | padding-left: 20px; 25 | } 26 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/table/css/table.css: -------------------------------------------------------------------------------- 1 | /* CSS file for table dialog in the table plugin */ 2 | 3 | .panel_wrapper div.current { 4 | height: 245px; 5 | } 6 | 7 | .advfield { 8 | width: 200px; 9 | } 10 | 11 | #class { 12 | width: 150px; 13 | } 14 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/table/js/merge_cells.js: -------------------------------------------------------------------------------- 1 | tinyMCEPopup.requireLangPack(); 2 | 3 | var MergeCellsDialog = { 4 | init : function() { 5 | var f = document.forms[0]; 6 | 7 | f.numcols.value = tinyMCEPopup.getWindowArg('cols', 1); 8 | f.numrows.value = tinyMCEPopup.getWindowArg('rows', 1); 9 | }, 10 | 11 | merge : function() { 12 | var func, f = document.forms[0]; 13 | 14 | tinyMCEPopup.restoreSelection(); 15 | 16 | func = tinyMCEPopup.getWindowArg('onaction'); 17 | 18 | func({ 19 | cols : f.numcols.value, 20 | rows : f.numrows.value 21 | }); 22 | 23 | tinyMCEPopup.close(); 24 | } 25 | }; 26 | 27 | tinyMCEPopup.onInit.add(MergeCellsDialog.init, MergeCellsDialog); 28 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/table/merge_cells.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | {#table_dlg.merge_cells_title} 5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 |
13 | {#table_dlg.merge_cells_title} 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |
:
:
24 |
25 | 26 |
27 | 28 | 29 |
30 |
31 | 32 | 33 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/blank.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | blank_page 4 | 5 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/css/template.css: -------------------------------------------------------------------------------- 1 | #frmbody { 2 | padding: 10px; 3 | background-color: #FFF; 4 | border: 1px solid #CCC; 5 | } 6 | 7 | .frmRow { 8 | margin-bottom: 10px; 9 | } 10 | 11 | #templatesrc { 12 | border: none; 13 | width: 320px; 14 | height: 240px; 15 | } 16 | 17 | .title { 18 | padding-bottom: 5px; 19 | } 20 | 21 | .mceActionPanel { 22 | padding-top: 5px; 23 | } 24 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/cs_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.template_dlg',{title:"\u0160ablony",label:"\u0160ablona","desc_label":"Popis",desc:"Vlo\u017eit p\u0159eddefinovan\u00fd obsah ze \u0161ablony",select:"Vybrat \u0161ablonu",preview:"N\u00e1hled",warning:"Upozorn\u011bn\u00ed: Aktualizace \u0161ablony jinou zp\u016fsob\u00ed ztr\u00e1tu dat.","mdate_format":"%d.%m.%Y %H:%M:%S","cdate_format":"%d.%m.%Y %H:%M:%S","months_long":"Leden,\u00danor,B\u0159ezen,Duben,Kv\u011bten,\u010cerven,\u010cervenec,Srpen,Z\u00e1\u0159\u00ed,\u0158\u00edjen,Listopad,Prosinec","months_short":"Led,\u00dano,B\u0159e,Dub,Kv\u011b,\u010cer,\u010cvc,Srp,Z\u00e1\u0159,\u0158\u00edj,Lis,Pro","day_long":"Ned\u011ble,Pond\u011bl\u00ed,\u00dater\u00fd,St\u0159eda,\u010ctvrtek,P\u00e1tek,Sobota,Ned\u011ble","day_short":"Ne,Po,\u00dat,St,\u010ct,P\u00e1,So,Ne"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.template_dlg',{title:"Vorlagen",label:"Vorlage","desc_label":"Beschreibung",desc:"Inhalt aus Vorlage einf\u00fcgen",select:"Vorlage ausw\u00e4hlen",preview:"Vorschau",warning:"Warnung: Eine Vorlage mit einer anderen zu aktualisieren kann zu einem Datenverlust f\u00fchren!","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Januar,Februar,M\u00e4rz,April,Mai,Juni,Juli,August,September,Oktober,November,Dezember","months_short":"Jan,Feb,M\u00e4r,Apr,Mai,Juni,Juli,Aug,Sept,Okt,Nov,Dez","day_long":"Sonntag,Montag,Dienstag,Mittwoch,Donnerstag,Freitag,Samstag,Sonntag","day_short":"So,Mo,Di,Mi,Do,Fr,Sa,So"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Insert Predefined Template Content",select:"Select a Template",preview:"Preview",warning:"Warning: Updating a template with a different one may cause data loss.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Sunday","day_short":"Sun,Mon,Tue,Wed,Thu,Fri,Sat,Sun"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.template_dlg',{title:"Mod\u00e8les",label:"Mod\u00e8le","desc_label":"Description",desc:"Ins\u00e9rer un mod\u00e8le pr\u00e9d\u00e9fini",select:"Choisir un mod\u00e8le",preview:"Pr\u00e9visualisation",warning:"Attention : Mettre \u00e0 jour un mod\u00e8le pour un autre peut entra\u00eener une perte de donn\u00e9es !","mdate_format":"%d/%m/%Y %H:%M:%S","cdate_format":"%d/%m/%Y %H:%M:%S","months_long":"Janvier,F\u00e9vrier,Mars,Avril,Mai,Juin,Juillet,Ao\u00fbt,Septembre,Octobre,Novembre,D\u00e9cembre","months_short":"Jan,F\u00e9v,Mar,Avr,Mai,Juin,Juil,Ao\u00fbt,Sep,Oct,Nov,D\u00e9c","day_long":"Dimanche,Lundi,Mardi,Mercredi,Jeudi,Vendredi,Samedi,Dimanche","day_short":"Dim,Lun,Mar,Mer,Jeu,Ven,Sam,Dim"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.template_dlg',{title:"Templates",label:"Template","desc_label":"Description",desc:"Menyisipkan template standar isi",select:"Select a template",preview:"Preview",warning:"Warning: mengupdate template yang berbeda dapat menyebabkan kehilangan data","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Januari,Februari,Maren,April,Mei,Juni,Juli,Agustus,September,Oktober,November,Desember","months_short":"Jan,Feb,Mar,Apr,Mei,Jun,Jul,Ags,Sep,Okt,Nov,Des","day_long":"Minggu,Senin,Selasa,Rabu,Kamis,Jumat,Sabtu,Minggu","day_short":"Min,Sen,Sel,Rab,Kam,Jum,Sab,Min"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/it_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('it.template_dlg',{title:"Modelli",label:"Modello","desc_label":"Descrizione",desc:"Inserisci contenuto da modello predefinito",select:"Seleziona un modello",preview:"Anteprima",warning:"Attenzione: Aggiornare un modello con un altro differente pu\u00f2 causare perdite di dati.","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"Gennaio,Febbraio,Marzo,Aprile,Maggio,Giugno,Luglio,Agosto,Settembre,Ottobre,Novembre,Dicembre","months_short":"Gen,Feb,Mar,Apr,Mag,Giu,Lug,Ago,Set,Ott,Nov,Dic","day_long":"Domenica,Luned\u00ec,Marted\u00ec,Mercoled\u00ec,Gioved\u00ec,Venerd\u00ec,Sabato,Domenica","day_short":"Dom,Lun,Mar,Mer,Gio,Ven,Sab,Dom"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.template_dlg',{title:"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8",label:"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8","desc_label":"\u8aac\u660e",desc:"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u633f\u5165",select:"\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u9078\u629e",preview:"\u30d7\u30ec\u30d3\u30e5\u30fc",warning:"\u8b66\u544a\uff1a\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u4e0a\u66f8\u304d\u3059\u308b\u3068\u4ee5\u524d\u306e\u30c7\u30fc\u30bf\u306f\u5931\u308f\u308c\u307e\u3059\u3002","mdate_format":"%Y-%m-%d %H:%M:%S","cdate_format":"%Y-%m-%d %H:%M:%S","months_long":"January,February,March,April,May,June,July,August,September,October,November,December","months_short":"Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec","day_long":"\u65e5\u66dc\u65e5,\u6708\u66dc\u65e5,\u706b\u66dc\u65e5,\u6c34\u66dc\u65e5,\u6728\u66dc\u65e5,\u91d1\u66dc\u65e5,\u571f\u66dc\u65e5,\u65e5\u66dc\u65e5","day_short":"(\u65e5),(\u6708),(\u706b),(\u6c34),(\u6728),(\u91d1),(\u571f),(\u65e5)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.template_dlg',{title:"Sjablonen",label:"Sjabloon","desc_label":"Beschrijving",desc:"Voorgedefinieerd sjabloon invoegen",select:"Selecteer een sjabloon",preview:"Voorbeeld",warning:"Waarschuwing: het bijwerken van een sjabloon met een andere kan het verlies van informatie tot gevolg hebben.","mdate_format":"%d-%m-%Y %H:%M:%S","cdate_format":"%d-%m-%Y %H:%M:%S","months_long":"Januari,Februari,Maart,April,Mei,Juni,Juli,Augustus,September,Oktober,November,December","months_short":"Jan,Feb,Mar,Apr,Mei,Jun,Jul,Aug,Sep,Okt,Nov,Dec","day_long":"Zondag,Maandag,Dinsdag,Woensdag,Donderdag,Vrijdag,Zaterdag,Zondag","day_short":"zo,ma,di,wo,do,vr,za,zo"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/template/template.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | {#template_dlg.title} 4 | 5 | 6 | 7 | 8 | 9 |
10 |
11 |
{#template_dlg.desc}
12 |
13 | 16 |
17 |
18 |
19 |
20 | {#template_dlg.preview} 21 | 22 |
23 |
24 | 25 |
26 | 27 | 28 |
29 |
30 | 31 | 32 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/visualblocks/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.VisualBlocks",{init:function(a,b){var c;if(!window.NodeList){return}a.addCommand("mceVisualBlocks",function(){var e=a.dom,d;if(!c){c=e.uniqueId();d=e.create("link",{id:c,rel:"stylesheet",href:b+"/css/visualblocks.css"});a.getDoc().getElementsByTagName("head")[0].appendChild(d)}else{d=e.get(c);d.disabled=!d.disabled}a.controlManager.setActive("visualblocks",!d.disabled)});a.addButton("visualblocks",{title:"visualblocks.desc",cmd:"mceVisualBlocks"});a.onInit.add(function(){if(a.settings.visualblocks_default_state){a.execCommand("mceVisualBlocks",false,null,{skip_focus:true})}})},getInfo:function(){return{longname:"Visual blocks",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualblocks",version:tinymce.majorVersion+"."+tinymce.minorVersion}}});tinymce.PluginManager.add("visualblocks",tinymce.plugins.VisualBlocks)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/visualchars/editor_plugin.js: -------------------------------------------------------------------------------- 1 | (function(){tinymce.create("tinymce.plugins.VisualChars",{init:function(a,b){var c=this;c.editor=a;a.addCommand("mceVisualChars",c._toggleVisualChars,c);a.addButton("visualchars",{title:"visualchars.desc",cmd:"mceVisualChars"});a.onBeforeGetContent.add(function(d,e){if(c.state&&e.format!="raw"&&!e.draft){c.state=true;c._toggleVisualChars(false)}})},getInfo:function(){return{longname:"Visual characters",author:"Moxiecode Systems AB",authorurl:"http://tinymce.moxiecode.com",infourl:"http://wiki.moxiecode.com/index.php/TinyMCE:Plugins/visualchars",version:tinymce.majorVersion+"."+tinymce.minorVersion}},_toggleVisualChars:function(m){var p=this,k=p.editor,a,g,j,n=k.getDoc(),o=k.getBody(),l,q=k.selection,e,c,f;p.state=!p.state;k.controlManager.setActive("visualchars",p.state);if(m){f=q.getBookmark()}if(p.state){a=[];tinymce.walk(o,function(b){if(b.nodeType==3&&b.nodeValue&&b.nodeValue.indexOf("\u00a0")!=-1){a.push(b)}},"childNodes");for(g=0;g$1');c=k.dom.create("div",null,l);while(node=c.lastChild){k.dom.insertAfter(node,a[g])}k.dom.remove(a[g])}}else{a=k.dom.select("span.mceItemNbsp",o);for(g=a.length-1;g>=0;g--){k.dom.remove(a[g],1)}}q.moveToBookmark(f)}});tinymce.PluginManager.add("visualchars",tinymce.plugins.VisualChars)})(); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/de_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.wordcount',{words:"W\u00f6rter: "}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/en_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.wordcount',{words:"Words: "}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/fr_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.wordcount',{words:"Mots:"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.wordcount',{words:"Words: "}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/ja_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.wordcount',{words:"\u5358\u8a9e\u6570"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/nl_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.wordcount',{words:"Aantal woorden:"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/ru_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.wordcount',{words:"Words: "}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/wordc/langs/uk_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.wordcount',{words:"Words: "}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/attributes.css: -------------------------------------------------------------------------------- 1 | .panel_wrapper div.current { 2 | height: 290px; 3 | } 4 | 5 | #id, #style, #title, #dir, #hreflang, #lang, #classlist, #tabindex, #accesskey { 6 | width: 200px; 7 | } 8 | 9 | #events_panel input { 10 | width: 200px; 11 | } 12 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/css/popup.css: -------------------------------------------------------------------------------- 1 | input.field, select.field {width:200px;} 2 | input.picker {width:179px; margin-left: 5px;} 3 | input.disabled {border-color:#F2F2F2;} 4 | img.picker {vertical-align:text-bottom; cursor:pointer;} 5 | h1 {padding: 0 0 5px 0;} 6 | .panel_wrapper div.current {height:160px;} 7 | #xhtmlxtrasdel .panel_wrapper div.current, #xhtmlxtrasins .panel_wrapper div.current {height: 230px;} 8 | a.browse span {display:block; width:20px; height:20px; background:url('../../../themes/advanced/img/icons.gif') -140px -20px;} 9 | #datetime {width:180px;} 10 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/abbr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * abbr.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 | function init() { 12 | SXE.initElementDialog('abbr'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAbbr() { 19 | SXE.insertElement('abbr'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAbbr() { 24 | SXE.removeElement('abbr'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/acronym.js: -------------------------------------------------------------------------------- 1 | /** 2 | * acronym.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 | function init() { 12 | SXE.initElementDialog('acronym'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertAcronym() { 19 | SXE.insertElement('acronym'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeAcronym() { 24 | SXE.removeElement('acronym'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/cite.js: -------------------------------------------------------------------------------- 1 | /** 2 | * cite.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 | function init() { 12 | SXE.initElementDialog('cite'); 13 | if (SXE.currentAction == "update") { 14 | SXE.showRemoveButton(); 15 | } 16 | } 17 | 18 | function insertCite() { 19 | SXE.insertElement('cite'); 20 | tinyMCEPopup.close(); 21 | } 22 | 23 | function removeCite() { 24 | SXE.removeElement('cite'); 25 | tinyMCEPopup.close(); 26 | } 27 | 28 | tinyMCEPopup.onInit.add(init); 29 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/plugins/xhtmlxtras/js/del.js: -------------------------------------------------------------------------------- 1 | /** 2 | * del.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 | function init() { 12 | SXE.initElementDialog('del'); 13 | if (SXE.currentAction == "update") { 14 | setFormValue('datetime', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'datetime')); 15 | setFormValue('cite', tinyMCEPopup.editor.dom.getAttrib(SXE.updateElement, 'cite')); 16 | SXE.showRemoveButton(); 17 | } 18 | } 19 | 20 | function setElementAttribs(elm) { 21 | setAllCommonAttribs(elm); 22 | setAttrib(elm, 'datetime'); 23 | setAttrib(elm, 'cite'); 24 | elm.removeAttribute('data-mce-new'); 25 | } 26 | 27 | function insertDel() { 28 | var elm = tinyMCEPopup.editor.dom.getParent(SXE.focusElement, 'DEL'); 29 | 30 | if (elm == null) { 31 | var s = SXE.inst.selection.getContent(); 32 | if(s.length > 0) { 33 | insertInlineElement('del'); 34 | var elementArray = SXE.inst.dom.select('del[data-mce-new]'); 35 | for (var i=0; i 0) { 33 | insertInlineElement('ins'); 34 | var elementArray = SXE.inst.dom.select('ins[data-mce-new]'); 35 | for (var i=0; i 2 | 3 | 4 | {#advanced_dlg.anchor_title} 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
{#advanced_dlg.anchor_title}
19 | 20 |
21 | 22 | 23 |
24 |
25 | 26 | 27 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/colorpicker.jpg -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/flash.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/iframe.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/pagebreak.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/quicktime.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/realmedia.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/shockwave.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/trans.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/video.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/img/windowsmedia.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/js/anchor.js: -------------------------------------------------------------------------------- 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') || ed.dom.getAttrib(elm, 'id'); 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, attribName; 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 | var aRule = ed.schema.getElementRule('a'); 33 | if (!aRule || aRule.attributes.name) { 34 | attribName = 'name'; 35 | } else { 36 | attribName = 'id'; 37 | } 38 | 39 | elm = ed.dom.getParent(ed.selection.getNode(), 'A'); 40 | if (elm) { 41 | elm.setAttribute(attribName, name); 42 | elm[attribName] = name; 43 | ed.undoManager.add(); 44 | } else { 45 | // create with zero-sized nbsp so that in Webkit where anchor is on last line by itself caret cannot be placed after it 46 | var attrs = {'class' : 'mceItemAnchor'}; 47 | attrs[attribName] = name; 48 | ed.execCommand('mceInsertContent', 0, ed.dom.createHTML('a', attrs, '\uFEFF')); 49 | ed.nodeChanged(); 50 | } 51 | 52 | tinyMCEPopup.close(); 53 | } 54 | }; 55 | 56 | tinyMCEPopup.onInit.add(AnchorDialog.init, AnchorDialog); 57 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/langs/id_dlg.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.advanced_dlg',{"link_list":"Daftar Link","link_is_external":"URL yang Anda sisipkan tampaknya link eksternal, Anda ingin menambahkan awalan \'http://\'?","link_is_email":"URL yang Anda sisipkan tampaknya e-mail, Anda ingin menambahkan awalan \'mailto:\'?","link_titlefield":"Judul","link_target_blank":"Buka link pada window baru","link_target_same":"Buka link pada window yang sama","link_target":"Target","link_url":"Link URL","link_title":"Insert/edit link","image_align_right":"Right","image_align_left":"Left","image_align_textbottom":"Text bottom","image_align_texttop":"Text top","image_align_bottom":"Bottom","image_align_middle":"Middle","image_align_top":"Top","image_align_baseline":"Baseline","image_align":"Alignment","image_hspace":"Horizontal space","image_vspace":"Vertical space","image_dimensions":"Dimensions","image_alt":"Image description","image_list":"Image list","image_border":"Border","image_src":"Image URL","image_title":"Insert/edit image","charmap_title":"Pilih custom character","colorpicker_name":"Name:","colorpicker_color":"Color:","colorpicker_named_title":"Named colors","colorpicker_named_tab":"Named","colorpicker_palette_title":"Palette colors","colorpicker_palette_tab":"Palette","colorpicker_picker_title":"Color picker","colorpicker_picker_tab":"Picker","colorpicker_title":"Select a color","code_wordwrap":"Word wrap","code_title":"HTML Source Editor","anchor_name":"Anchor name","anchor_title":"Insert/edit anchor","about_loaded":"Loaded plugins","about_version":"Versi","about_author":"Penulis","about_plugin":"Plugin","about_plugins":"Plugins","about_license":"Lisensi","about_help":"Bantuan","about_general":"Tentang","about_title":"Tentang TinyMCE","anchor_invalid":"Please specify a valid anchor name."}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/butt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/butt2.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/button-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/button-bg.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/buttons.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/down_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/down_arrow.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/fade-butt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/fade-butt.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/icons.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/items.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/menu-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/menu-arrow.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/menu-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/menu-check.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/progress.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/tabs.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/toolbarbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/cirkuit/img/toolbarbg.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/buttons.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/items.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/default/img/tabs.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/highcontrast/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre { margin:8px;} 2 | body.mceForceColors {background:#FFF; color:#000;} 3 | h1 {font-size: 2em} 4 | h2 {font-size: 1.5em} 5 | h3 {font-size: 1.17em} 6 | h4 {font-size: 1em} 7 | h5 {font-size: .83em} 8 | h6 {font-size: .75em} 9 | .mceItemTable, .mceItemTable td, .mceItemTable th, .mceItemTable caption, .mceItemVisualAid {border: 1px dashed #BBB;} 10 | a.mceItemAnchor {display:inline-block; width:11px !important; height:11px !important; background:url(../default/img/items.gif) no-repeat 0 0;} 11 | span.mceItemNbsp {background: #DDD} 12 | td.mceSelected, th.mceSelected {background-color:#3399ff !important} 13 | img {border:0;} 14 | table, img, hr, .mceItemAnchor {cursor:default} 15 | table td, table th {cursor:text} 16 | ins {border-bottom:1px solid green; text-decoration: none; color:green} 17 | del {color:red; text-decoration:line-through} 18 | cite {border-bottom:1px dashed blue} 19 | acronym {border-bottom:1px dotted #CCC; cursor:help} 20 | abbr {border-bottom:1px dashed #CCC; cursor:help} 21 | 22 | img:-moz-broken {-moz-force-broken-image-icon:1; width:24px; height:24px} 23 | font[face=mceinline] {font-family:inherit !important} 24 | *[contentEditable]:focus {outline:0} 25 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_black.css: -------------------------------------------------------------------------------- 1 | /* Black */ 2 | .o2k7SkinBlack .mceToolbar .mceToolbarStart span, .o2k7SkinBlack .mceToolbar .mceToolbarEnd span, .o2k7SkinBlack .mceButton, .o2k7SkinBlack .mceSplitButton, .o2k7SkinBlack .mceSeparator, .o2k7SkinBlack .mceSplitButton a.mceOpen, .o2k7SkinBlack .mceListBox a.mceOpen {background-image:url(img/button_bg_black.png)} 3 | .o2k7SkinBlack td.mceToolbar, .o2k7SkinBlack td.mceStatusbar, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack .mceMenuItemTitle span.mceText, .o2k7SkinBlack .mceStatusbar div, .o2k7SkinBlack .mceStatusbar span, .o2k7SkinBlack .mceStatusbar a {background:#535353; color:#FFF} 4 | .o2k7SkinBlack table.mceListBoxEnabled .mceText, o2k7SkinBlack .mceListBox .mceText {background:#FFF; border:1px solid #CBCFD4; border-bottom-color:#989FA9; border-right:0} 5 | .o2k7SkinBlack table.mceListBoxEnabled:hover .mceText, .o2k7SkinBlack .mceListBoxHover .mceText, .o2k7SkinBlack .mceListBoxSelected .mceText {background:#FFF; border:1px solid #FFBD69; border-right:0} 6 | .o2k7SkinBlack .mceExternalToolbar, .o2k7SkinBlack .mceListBox .mceText, .o2k7SkinBlack div.mceMenu, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceFirst td, .o2k7SkinBlack table.mceLayout, .o2k7SkinBlack .mceMenuItemTitle a, .o2k7SkinBlack table.mceLayout tr.mceLast td, .o2k7SkinBlack .mceIframeContainer {border-color: #535353;} 7 | .o2k7SkinBlack table.mceSplitButtonEnabled:hover a.mceAction, .o2k7SkinBlack .mceSplitButtonHover a.mceAction, .o2k7SkinBlack .mceSplitButtonSelected {background-image:url(img/button_bg_black.png)} 8 | .o2k7SkinBlack .mceMenu .mceMenuItemEnabled a:hover, .o2k7SkinBlack .mceMenu .mceMenuItemActive {background-color:#FFE7A1} -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/skins/o2k7/ui_silver.css: -------------------------------------------------------------------------------- 1 | /* Silver */ 2 | .o2k7SkinSilver .mceToolbar .mceToolbarStart span, .o2k7SkinSilver .mceButton, .o2k7SkinSilver .mceSplitButton, .o2k7SkinSilver .mceSeparator, .o2k7SkinSilver .mceSplitButton a.mceOpen, .o2k7SkinSilver .mceListBox a.mceOpen {background-image:url(img/button_bg_silver.png)} 3 | .o2k7SkinSilver td.mceToolbar, .o2k7SkinSilver td.mceStatusbar, .o2k7SkinSilver .mceMenuItemTitle a {background:#eee} 4 | .o2k7SkinSilver .mceListBox .mceText {background:#FFF} 5 | .o2k7SkinSilver .mceExternalToolbar, .o2k7SkinSilver .mceListBox .mceText, .o2k7SkinSilver div.mceMenu, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceFirst td, .o2k7SkinSilver table.mceLayout, .o2k7SkinSilver .mceMenuItemTitle a, .o2k7SkinSilver table.mceLayout tr.mceLast td, .o2k7SkinSilver .mceIframeContainer {border-color: #bbb} 6 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/advanced/source_editor.htm: -------------------------------------------------------------------------------- 1 | 2 | 3 | {#advanced_dlg.code_title} 4 | 5 | 6 | 7 | 8 |
9 |
10 | 11 |
12 | 13 |
14 | 15 |
16 | 17 | 18 | 19 |
20 | 21 | 22 |
23 |
24 | 25 | 26 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/cs.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('cs.simple',{"cleanup_desc":"Vy\u010distit k\u00f3d","redo_desc":"Znovu (Ctrl+Y)","undo_desc":"Zp\u011bt (Ctrl+Z)","numlist_desc":"\u010c\u00edslovan\u00fd seznam","bullist_desc":"Seznam s odr\u00e1\u017ekami","striketrough_desc":"P\u0159e\u0161krtnut\u00e9","underline_desc":"Podtr\u017een\u00e9 (Ctrl+U)","italic_desc":"Kurz\u00edva (Ctrl+I)","bold_desc":"Tu\u010dn\u00e9 (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/de.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('de.simple',{"cleanup_desc":"Quellcode aufr\u00e4umen","redo_desc":"Wiederholen (Strg+Y)","undo_desc":"R\u00fcckg\u00e4ngig (Strg+Z)","numlist_desc":"Nummerierung","bullist_desc":"Aufz\u00e4hlung","striketrough_desc":"Durchgestrichen","underline_desc":"Unterstrichen (Strg+U)","italic_desc":"Kursiv (Strg+I)","bold_desc":"Fett (Strg+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/en.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('en.simple',{"cleanup_desc":"Cleanup Messy Code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Insert/Remove Numbered List","bullist_desc":"Insert/Remove Bulleted List","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/fr.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('fr.simple',{"cleanup_desc":"Nettoyer le code","redo_desc":"R\u00e9tablir (Ctrl+Y)","undo_desc":"Annuler (Ctrl+Z)","numlist_desc":"Liste num\u00e9rot\u00e9e","bullist_desc":"Liste \u00e0 puces","striketrough_desc":"Barr\u00e9","underline_desc":"Soulign\u00e9 (Ctrl+U)","italic_desc":"Italique (Ctrl+I)","bold_desc":"Gras (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/id.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('id.simple',{"cleanup_desc":"Cleanup messy code","redo_desc":"Redo (Ctrl+Y)","undo_desc":"Undo (Ctrl+Z)","numlist_desc":"Ordered list","bullist_desc":"Unordered list","striketrough_desc":"Strikethrough","underline_desc":"Underline (Ctrl+U)","italic_desc":"Italic (Ctrl+I)","bold_desc":"Bold (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/ja.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ja.simple',{"cleanup_desc":"\u30b3\u30fc\u30c9\u6574\u5f62","redo_desc":"\u3084\u308a\u76f4\u3059 (Ctrl+Y)","undo_desc":"\u5143\u306b\u623b\u3059 (Ctrl+Z)","numlist_desc":"\u756a\u53f7\u3064\u304d\u30ea\u30b9\u30c8","bullist_desc":"\u756a\u53f7\u306a\u3057\u30ea\u30b9\u30c8","striketrough_desc":"\u6253\u6d88\u3057\u7dda","underline_desc":"\u4e0b\u7dda (Ctrl+U)","italic_desc":"\u659c\u4f53 (Ctrl+I)","bold_desc":"\u592a\u5b57 (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/nl.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('nl.simple',{"cleanup_desc":"Code opruimen","redo_desc":"Herhalen (Ctrl+Y)","undo_desc":"Ongedaan maken (Ctrl+Z)","numlist_desc":"Nummering","bullist_desc":"Opsommingstekens","striketrough_desc":"Doorhalen","underline_desc":"Onderstrepen (Ctrl+U)","italic_desc":"Cursief (Ctrl+I)","bold_desc":"Vet (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/ru.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('ru.simple',{"cleanup_desc":"\u041e\u0447\u0438\u0441\u0442\u0438\u0442\u044c \u043b\u0438\u0448\u043d\u0438\u0439 \u043a\u043e\u0434","redo_desc":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c (Ctrl+Y)","undo_desc":"\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c (Ctrl+Z)","numlist_desc":"\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a","bullist_desc":"\u041c\u0430\u0440\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a","striketrough_desc":"\u0417\u0430\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439","underline_desc":"\u041f\u043e\u0434\u0447\u0435\u0440\u043a\u043d\u0443\u0442\u044b\u0439 (Ctrl+U)","italic_desc":"\u041a\u0443\u0440\u0441\u0438\u0432 (Ctrl+I)","bold_desc":"\u041f\u043e\u043b\u0443\u0436\u0438\u0440\u043d\u044b\u0439 (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/langs/uk.js: -------------------------------------------------------------------------------- 1 | tinyMCE.addI18n('uk.simple',{"cleanup_desc":"\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0437\u0430\u0439\u0432\u0438\u0439 \u043a\u043e\u0434","redo_desc":"\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 (Ctrl+Y)","undo_desc":"\u0412\u0456\u0434\u043c\u0456\u043d\u0438\u0442\u0438 (Ctrl+Z)","numlist_desc":"\u041d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a","bullist_desc":"\u041d\u0435\u043d\u0443\u043c\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a","striketrough_desc":"\u0417\u0430\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439","underline_desc":"\u041f\u0456\u0434\u043a\u0440\u0435\u0441\u043b\u0435\u043d\u0438\u0439 (Ctrl+U)","italic_desc":"\u041a\u0443\u0440\u0441\u0438\u0432 (Ctrl+I)","bold_desc":"\u0416\u0438\u0440\u043d\u0438\u0439 (Ctrl+B)"}); -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/skins/default/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre { 2 | font-family: Verdana, Arial, Helvetica, sans-serif; 3 | font-size: 10px; 4 | } 5 | 6 | body { 7 | background-color: #FFFFFF; 8 | } 9 | 10 | .mceVisualAid { 11 | border: 1px dashed #BBBBBB; 12 | } 13 | 14 | /* MSIE specific */ 15 | 16 | * html body { 17 | scrollbar-3dlight-color: #F0F0EE; 18 | scrollbar-arrow-color: #676662; 19 | scrollbar-base-color: #F0F0EE; 20 | scrollbar-darkshadow-color: #DDDDDD; 21 | scrollbar-face-color: #E0E0DD; 22 | scrollbar-highlight-color: #F0F0EE; 23 | scrollbar-shadow-color: #F0F0EE; 24 | scrollbar-track-color: #F5F5F5; 25 | } 26 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | body, td, pre {font-family:Verdana, Arial, Helvetica, sans-serif; font-size:10px;} 2 | 3 | body {background: #FFF;} 4 | .mceVisualAid {border: 1px dashed #BBB;} 5 | 6 | /* IE */ 7 | 8 | * html body { 9 | scrollbar-3dlight-color: #F0F0EE; 10 | scrollbar-arrow-color: #676662; 11 | scrollbar-base-color: #F0F0EE; 12 | scrollbar-darkshadow-color: #DDDDDD; 13 | scrollbar-face-color: #E0E0DD; 14 | scrollbar-highlight-color: #F0F0EE; 15 | scrollbar-shadow-color: #F0F0EE; 16 | scrollbar-track-color: #F5F5F5; 17 | } 18 | -------------------------------------------------------------------------------- /assets/components/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/splittingred/TinyMCE/6f610164487a89bc095bdd7156307bc6d4136cd3/assets/components/tinymce/jscripts/tiny_mce/themes/simple/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /assets/components/tinymce/template.list.php: -------------------------------------------------------------------------------- 1 | tinymce->getTemplateList(); 8 | 9 | echo 'var tinyMCETemplateList = '.$modx->toJSON($templates).';'; 10 | die(); 11 | -------------------------------------------------------------------------------- /assets/components/tinymce/tiny.browser.js: -------------------------------------------------------------------------------- 1 | Ext.ns('Tiny'); 2 | Tiny.browserCallback = function(data) { 3 | var FileBrowserDialogue = { 4 | init : function () {} 5 | ,selectURL : function (url) { 6 | var win = tinyMCEPopup.getWindowArg('window'); 7 | 8 | /* insert information now */ 9 | win.document.getElementById(tinyMCEPopup.getWindowArg('input')).value = url; 10 | 11 | if (typeof(win.ImageDialog) != 'undefined') { 12 | /* for image browsers: update image dimensions */ 13 | if (win.ImageDialog.getImageData) { 14 | win.ImageDialog.getImageData(); 15 | } 16 | win.ImageDialog.showPreviewImage(url); 17 | } 18 | 19 | /* close popup window */ 20 | tinyMCEPopup.close(); 21 | win.focus(); win.document.focus(); 22 | } 23 | }; 24 | var fileUrl; 25 | if (inRevo20) { 26 | fileUrl = unescape(data.relativeUrl); 27 | } else { 28 | fileUrl = data.fullRelativeUrl; 29 | } 30 | tinyMCEPopup.onInit.add(FileBrowserDialogue.init, FileBrowserDialogue); 31 | 32 | function OpenFile(fileUrl){ 33 | FileBrowserDialogue.selectURL(fileUrl); 34 | } 35 | 36 | OpenFile(fileUrl); 37 | }; -------------------------------------------------------------------------------- /core/components/tinymce/docs/readme.txt: -------------------------------------------------------------------------------- 1 | Please consult the HTML documentation for details. 2 | 3 | -------------------------------------------------------------------------------- /core/components/tinymce/index.html: -------------------------------------------------------------------------------- 1 |

Unauthorized access

2 | You're not allowed to access file folder -------------------------------------------------------------------------------- /core/components/tinymce/lexicon/ja/default.inc.php: -------------------------------------------------------------------------------- 1 | 書式:'等幅フォント=mono;小さい文字=smallText'
上記のように、複数のスタイルをセミコロンで区切って指定します。最後の項目の後ろにはセミコロンを付けないでください。"; 22 | $_lang['tinymce_settings'] = "TinyMCEの設定"; 23 | $_lang['tinymce_theme_simple'] = "Simple"; 24 | $_lang['tinymce_theme_advanced'] = "Advanced"; 25 | $_lang['tinymce_theme_editor'] = "Content Editor"; 26 | $_lang['tinymce_theme_custom'] = "Custom"; 27 | ?> -------------------------------------------------------------------------------- /core/components/tinymce/templates/fe_script.tpl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/components/tinymce/templates/script.tpl: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------