├── editor ├── tiny_mce │ ├── plugins │ │ ├── clipboard │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ ├── blank.css │ │ │ │ └── clipboard.css │ │ │ ├── blank.htm │ │ │ ├── clipboard.php │ │ │ ├── tmpl │ │ │ │ └── default.php │ │ │ └── classes │ │ │ │ └── clipboard.php │ │ ├── colorpicker │ │ │ ├── css │ │ │ │ └── colorpicker.css │ │ │ ├── colorpicker.php │ │ │ ├── classes │ │ │ │ ├── config.php │ │ │ │ └── colorpicker.php │ │ │ ├── editor_plugin.js │ │ │ └── js │ │ │ │ └── colorpicker.js │ │ ├── code │ │ │ ├── img │ │ │ │ └── icons.gif │ │ │ ├── css │ │ │ │ └── content.css │ │ │ └── classes │ │ │ │ ├── .tmp_config.php.96197~ │ │ │ │ └── config.php │ │ ├── link │ │ │ ├── img │ │ │ │ └── icons.png │ │ │ ├── link.php │ │ │ ├── tmpl │ │ │ │ └── default.php │ │ │ └── css │ │ │ │ └── link.css │ │ ├── media │ │ │ ├── img │ │ │ │ ├── audio.png │ │ │ │ ├── pdf.png │ │ │ │ ├── real.png │ │ │ │ ├── swf.png │ │ │ │ ├── trans.gif │ │ │ │ ├── video.png │ │ │ │ ├── generic.png │ │ │ │ ├── iframe.png │ │ │ │ ├── quicktime.png │ │ │ │ ├── shockwave.png │ │ │ │ └── windowsmedia.png │ │ │ └── css │ │ │ │ └── content.css │ │ ├── anchor │ │ │ ├── img │ │ │ │ └── anchor.gif │ │ │ ├── anchor.xml │ │ │ └── css │ │ │ │ └── content.css │ │ ├── article │ │ │ ├── img │ │ │ │ ├── trans.gif │ │ │ │ ├── readmore.png │ │ │ │ └── pagebreak.png │ │ │ ├── classes │ │ │ │ ├── .tmp_config.php.93568~ │ │ │ │ └── config.php │ │ │ ├── css │ │ │ │ └── content.css │ │ │ └── article.xml │ │ ├── source │ │ │ ├── img │ │ │ │ └── icons.png │ │ │ ├── css │ │ │ │ └── codemirror │ │ │ │ │ └── theme │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── textmate.css │ │ │ │ │ ├── eclipse.css │ │ │ │ │ ├── cobalt.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ └── blackboard.css │ │ │ ├── tmpl │ │ │ │ └── default.php │ │ │ ├── source.php │ │ │ ├── js │ │ │ │ └── codemirror │ │ │ │ │ └── LICENSE │ │ │ └── classes │ │ │ │ ├── source.php │ │ │ │ └── config.php │ │ ├── spellchecker │ │ │ ├── css │ │ │ │ └── content.css │ │ │ ├── img │ │ │ │ └── wline.gif │ │ │ └── spellchecker.php │ │ ├── upload │ │ │ ├── img │ │ │ │ ├── trans.gif │ │ │ │ ├── upload.gif │ │ │ │ └── picture.png │ │ │ └── css │ │ │ │ └── content.css │ │ ├── textcase │ │ │ ├── img │ │ │ │ ├── lowercase.png │ │ │ │ ├── uppercase.png │ │ │ │ └── sentencecase.png │ │ │ └── textcase.xml │ │ ├── searchreplace │ │ │ ├── css │ │ │ │ └── searchreplace.css │ │ │ ├── searchreplace.xml │ │ │ ├── searchreplace.php │ │ │ ├── tmpl │ │ │ │ ├── default.php │ │ │ │ ├── find.php │ │ │ │ └── replace.php │ │ │ └── classes │ │ │ │ └── searchreplace.php │ │ ├── xhtmlxtras │ │ │ ├── css │ │ │ │ ├── content.css │ │ │ │ └── xhtmlxtras.css │ │ │ ├── xhtmlxtras.php │ │ │ ├── tmpl │ │ │ │ ├── default.php │ │ │ │ └── standard_datetime.php │ │ │ ├── xhtmlxtras.xml │ │ │ └── classes │ │ │ │ └── xhtmlxtras.php │ │ ├── print │ │ │ ├── editor_plugin.js │ │ │ └── print.xml │ │ ├── table │ │ │ ├── css │ │ │ │ └── table.css │ │ │ ├── tmpl │ │ │ │ ├── general.php │ │ │ │ ├── merge.php │ │ │ │ └── default.php │ │ │ ├── table.php │ │ │ └── classes │ │ │ │ └── config.php │ │ ├── charmap │ │ │ ├── charmap.php │ │ │ ├── charmap.xml │ │ │ ├── tmpl │ │ │ │ └── default.php │ │ │ ├── classes │ │ │ │ └── charmap.php │ │ │ ├── css │ │ │ │ └── charmap.css │ │ │ └── editor_plugin.js │ │ ├── contextmenu │ │ │ └── contextmenu.xml │ │ ├── autosave │ │ │ └── autosave.xml │ │ ├── inlinepopups │ │ │ ├── inlinepopups.xml │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── css │ │ │ │ └── dialog.css │ │ ├── style │ │ │ ├── style.xml │ │ │ ├── style.php │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── tmpl │ │ │ │ ├── list.php │ │ │ │ └── default.php │ │ │ └── classes │ │ │ │ └── style.php │ │ ├── imgmanager │ │ │ ├── imgmanager.php │ │ │ ├── tmpl │ │ │ │ └── rollover.php │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── css │ │ │ │ └── imgmanager.css │ │ ├── preview │ │ │ ├── css │ │ │ │ └── preview.css │ │ │ ├── preview.xml │ │ │ └── preview.php │ │ ├── browser │ │ │ ├── browser.php │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── editor_plugin.js │ │ ├── cleanup │ │ │ ├── cleanup.xml │ │ │ └── classes │ │ │ │ └── .tmp_config.php.93975~ │ │ ├── tabfocus │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── editor_plugin.js │ │ ├── fullscreen │ │ │ └── fullscreen.xml │ │ ├── layer │ │ │ └── layer.xml │ │ ├── kitchensink │ │ │ └── kitchensink.xml │ │ ├── nonbreaking │ │ │ ├── nonbreaking.xml │ │ │ └── editor_plugin.js │ │ ├── directionality │ │ │ ├── directionality.xml │ │ │ └── editor_plugin.js │ │ ├── visualblocks │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── visualblocks.xml │ │ ├── fontselect │ │ │ └── fontselect.xml │ │ ├── formatselect │ │ │ └── formatselect.xml │ │ ├── fontsizeselect │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── fontsizeselect.xml │ │ ├── visualchars │ │ │ ├── classes │ │ │ │ └── config.php │ │ │ └── visualchars.xml │ │ ├── styleselect │ │ │ └── styleselect.xml │ │ ├── fontcolor │ │ │ └── fontcolor.xml │ │ ├── advlist │ │ │ └── classes │ │ │ │ └── config.php │ │ └── wordcount │ │ │ └── editor_plugin.js │ ├── themes │ │ ├── advanced │ │ │ ├── skins │ │ │ │ ├── o2k7 │ │ │ │ │ ├── content.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── button_bg.png │ │ │ │ │ │ ├── button_bg_black.png │ │ │ │ │ │ └── button_bg_silver.png │ │ │ │ │ └── ui_silver.css │ │ │ │ ├── classic │ │ │ │ │ ├── content.css │ │ │ │ │ ├── img │ │ │ │ │ │ └── layout.png │ │ │ │ │ └── ui.admin.css │ │ │ │ ├── mobile │ │ │ │ │ └── content.css │ │ │ │ ├── highcontrast │ │ │ │ │ └── content.css │ │ │ │ └── default │ │ │ │ │ ├── img │ │ │ │ │ ├── middot.gif │ │ │ │ │ ├── button_bg.png │ │ │ │ │ ├── progress.gif │ │ │ │ │ ├── menu_arrow.gif │ │ │ │ │ └── menu_check.gif │ │ │ │ │ └── content.css │ │ │ ├── img │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ └── spacer.gif │ │ │ └── tmpl │ │ │ │ ├── charmap.php │ │ │ │ └── shortcuts.php │ │ └── none │ │ │ └── skins │ │ │ └── default │ │ │ ├── content.css │ │ │ └── ui.css │ └── tiny_mce_popup.js ├── libraries │ ├── css │ │ ├── popup.css │ │ ├── manager.css │ │ ├── plugin.css │ │ └── select.css │ ├── img │ │ ├── ext.png │ │ ├── dash.gif │ │ ├── drag.png │ │ ├── icons.png │ │ ├── load.gif │ │ ├── mask.png │ │ ├── wheel.png │ │ ├── broken.png │ │ ├── icons-24.png │ │ ├── marker.png │ │ ├── sample.jpg │ │ ├── spacer.gif │ │ └── cloud_upload.png │ ├── mediaplayer │ │ ├── mediaplayer.swf │ │ └── license.txt │ ├── plupload │ │ ├── plupload.flash.swf │ │ └── plupload.silverlight.xap │ ├── jquery │ │ └── css │ │ │ └── images │ │ │ ├── button_bg.png │ │ │ ├── header_bg.png │ │ │ ├── icon_sprite.png │ │ │ ├── progress_bar.gif │ │ │ ├── slider_handles.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ └── ui-icons_454545_256x240.png │ ├── xml │ │ ├── config │ │ │ └── popups.xml │ │ └── help │ │ │ └── manager.xml │ ├── views │ │ ├── links │ │ │ └── tmpl │ │ │ │ └── links.php │ │ ├── plugin │ │ │ ├── index.php │ │ │ └── tmpl │ │ │ │ └── manager.php │ │ └── popups │ │ │ └── tmpl │ │ │ └── popups.php │ ├── js │ │ ├── plugin.full.js │ │ ├── link.full.js │ │ ├── manager.full.js │ │ └── lib │ │ │ ├── extensions.js │ │ │ └── mediaplayer.js │ └── classes │ │ └── extensions │ │ └── search.php ├── extensions │ ├── links │ │ └── joomlalinks │ │ │ ├── img │ │ │ └── icons.png │ │ │ └── css │ │ │ └── joomlalinks.css │ ├── aggregator │ │ ├── googlemaps │ │ │ └── tmpl │ │ │ │ └── default.php │ │ ├── vimeo.xml │ │ ├── youtube.xml │ │ ├── dailymotion.xml │ │ ├── googlemaps.xml │ │ ├── vine.php │ │ ├── vimeo.php │ │ ├── youtube.php │ │ ├── dailymotion.php │ │ ├── googlemaps.php │ │ ├── vine.xml │ │ ├── vine │ │ │ └── tmpl │ │ │ │ └── default.php │ │ └── dailymotion │ │ │ └── tmpl │ │ │ └── default.php │ ├── popups │ │ ├── window │ │ │ └── css │ │ │ │ └── window.css │ │ ├── window.xml │ │ ├── window.php │ │ └── jcemediabox │ │ │ └── css │ │ │ └── jcemediabox.css │ ├── mediaplayer │ │ ├── jceplayer │ │ │ └── css │ │ │ │ └── jceplayer.css │ │ ├── jceplayer.xml │ │ └── jceplayer.php │ ├── filesystem │ │ └── joomla.xml │ └── search │ │ └── link.xml └── elements │ ├── popups.php │ └── mediaplayer.php ├── index.html ├── media ├── img │ └── print.png └── css │ └── popup.css ├── README ├── jce.php └── views └── popup └── tmpl └── default.php /editor/tiny_mce/plugins/clipboard/css/content.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /editor/libraries/css/popup.css: -------------------------------------------------------------------------------- 1 | /** Blank CSS file for tinyMCEPopup CSS loader **/ -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/o2k7/content.css: -------------------------------------------------------------------------------- 1 | @import url('../default/content.css'); -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/classic/content.css: -------------------------------------------------------------------------------- 1 | @import url('../default/content.css'); -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/mobile/content.css: -------------------------------------------------------------------------------- 1 | @import url('../default/content.css'); -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/highcontrast/content.css: -------------------------------------------------------------------------------- 1 | @import url('../default/content.css'); 2 | -------------------------------------------------------------------------------- /media/img/print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/media/img/print.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/colorpicker/css/colorpicker.css: -------------------------------------------------------------------------------- 1 | @import url('../../../../libraries/css/colorpicker.css'); 2 | -------------------------------------------------------------------------------- /editor/libraries/img/ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/ext.png -------------------------------------------------------------------------------- /editor/libraries/img/dash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/dash.gif -------------------------------------------------------------------------------- /editor/libraries/img/drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/drag.png -------------------------------------------------------------------------------- /editor/libraries/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/icons.png -------------------------------------------------------------------------------- /editor/libraries/img/load.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/load.gif -------------------------------------------------------------------------------- /editor/libraries/img/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/mask.png -------------------------------------------------------------------------------- /editor/libraries/img/wheel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/wheel.png -------------------------------------------------------------------------------- /editor/libraries/img/broken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/broken.png -------------------------------------------------------------------------------- /editor/libraries/img/icons-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/icons-24.png -------------------------------------------------------------------------------- /editor/libraries/img/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/marker.png -------------------------------------------------------------------------------- /editor/libraries/img/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/sample.jpg -------------------------------------------------------------------------------- /editor/libraries/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/spacer.gif -------------------------------------------------------------------------------- /editor/libraries/img/cloud_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/img/cloud_upload.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/code/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/code/img/icons.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/link/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/link/img/icons.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/audio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/audio.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/pdf.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/real.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/real.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/swf.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/trans.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/video.png -------------------------------------------------------------------------------- /editor/libraries/mediaplayer/mediaplayer.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/mediaplayer/mediaplayer.swf -------------------------------------------------------------------------------- /editor/libraries/plupload/plupload.flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/plupload/plupload.flash.swf -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/anchor/img/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/anchor/img/anchor.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/article/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/article/img/trans.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/generic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/generic.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/iframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/iframe.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/source/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/source/img/icons.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/spellchecker/css/content.css: -------------------------------------------------------------------------------- 1 | .mceItemHiddenSpellWord {background:url(../img/wline.gif) repeat-x bottom left; cursor:default;} 2 | -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/upload/img/trans.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/upload/img/trans.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/upload/img/upload.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/upload/img/upload.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/img/icons.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/img/icons.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/button_bg.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/header_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/header_bg.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/article/img/readmore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/article/img/readmore.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/quicktime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/quicktime.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/shockwave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/shockwave.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/upload/img/picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/upload/img/picture.png -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/img/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/img/spacer.gif -------------------------------------------------------------------------------- /editor/extensions/links/joomlalinks/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/extensions/links/joomlalinks/img/icons.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/icon_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/icon_sprite.png -------------------------------------------------------------------------------- /editor/libraries/plupload/plupload.silverlight.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/plupload/plupload.silverlight.xap -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/article/img/pagebreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/article/img/pagebreak.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/media/img/windowsmedia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/media/img/windowsmedia.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/spellchecker/img/wline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/spellchecker/img/wline.gif -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/textcase/img/lowercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/textcase/img/lowercase.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/textcase/img/uppercase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/textcase/img/uppercase.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/progress_bar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/progress_bar.gif -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/slider_handles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/slider_handles.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/textcase/img/sentencecase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/plugins/textcase/img/sentencecase.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/clipboard/css/blank.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | padding: 2px; 5 | 6 | text-align: left; 7 | } 8 | -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/clipboard/css/clipboard.css: -------------------------------------------------------------------------------- 1 | textarea { 2 | width: 100%; 3 | height: 100%; 4 | font-family: 'Courier New',Courier,mono; 5 | font-size: 12px; 6 | } 7 | -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/classic/img/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/classic/img/layout.png -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/default/img/middot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/default/img/middot.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /editor/libraries/jquery/css/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/libraries/jquery/css/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/default/img/button_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/default/img/button_bg.png -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/default/img/progress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/default/img/progress.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/default/img/menu_arrow.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/default/img/menu_check.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/default/img/menu_check.gif -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_black.png -------------------------------------------------------------------------------- /editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/widgetfactory/jce-editor-legacy/HEAD/editor/tiny_mce/themes/advanced/skins/o2k7/img/button_bg_silver.png -------------------------------------------------------------------------------- /editor/tiny_mce/plugins/searchreplace/css/searchreplace.css: -------------------------------------------------------------------------------- 1 | .ui-tabs-panel { 2 | height: 100px; 3 | } 4 | #jce label[for$="_backwardsu"], #jce label[for$="_backwardsd"] { 5 | min-width: 40px; 6 | } 7 | -------------------------------------------------------------------------------- /editor/libraries/xml/config/popups.xml: -------------------------------------------------------------------------------- 1 | 2 || 22 | | 23 | |
| 18 | 21 | | 22 |23 | 24 | | 25 |
| 28 | 31 | | 32 |33 | 34 | | 35 |
| 18 | | 19 | |
| 23 | | 24 | |
| 28 | | 29 | |
| 19 | 22 | | 23 |24 | 25 | 26 | 27 | 28 | | 29 |
| 32 | 35 | | 36 |37 | 38 | | 39 |
| 16 | 17 | 21 | | 22 |
| 25 | 26 | 31 | | 32 |
| 18 | 19 | 20 | | 21 ||
| 24 | 25 | 26 | 27 | 28 | 29 | | 30 ||
| 33 | 34 | 35 | | 36 ||
| 18 | 19 | 20 | | 21 ||
| 24 | 25 | 26 | | 27 ||
| 30 | 31 | 32 | 33 | 34 | 35 | | 36 ||
| 39 | 40 | 41 | | 42 ||
| 16 | 17 | 18 | | 19 ||||
| 22 | | 23 | 28 | x 29 | 34 | | 35 |||
| 38 | 39 | 40 | | 41 ||||
Press ALT-F10 to move focus to the toolbars. Navigate through the buttons using the arrow keys. 18 | Press enter to activate a button and return focus to the editor. 19 | Press escape to return focus to the editor without performing any actions.
20 | 21 |To access the editor status bar, press ALT-F11. Use the left and right arrow keys to navigate between elements in the path. 23 | Press enter or space to select an element. Press escape to return focus to the editor without changing the selection.
24 | 25 |Press shift-F10 to activate the context menu. Use the up and down arrow keys to move between menu items. To open sub-menus press the right arrow key. 27 | To close submenus press the left arrow key. Press escape to close the context menu.
28 | 29 || Keystroke | 34 |Function | 35 |
|---|---|
| Control-B | Bold | 40 |
| Control-I | Italic | 43 |
| Control-Z | Undo | 46 |
| Control-Y | Redo | 49 |