├── ckeditor ├── __init__.py ├── static │ └── ckeditor │ │ ├── ckeditor │ │ ├── images │ │ │ └── spacer.gif │ │ ├── skins │ │ │ ├── v2 │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ ├── toolbar_start.gif │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ │ ├── kama │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── toolbar_start.gif │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ └── templates.css │ │ │ └── office2003 │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ ├── skin.js │ │ │ │ └── templates.css │ │ ├── _source │ │ │ ├── skins │ │ │ │ ├── kama │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── mini.gif │ │ │ │ │ │ ├── noimage.png │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ │ ├── toolbar_start.gif │ │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── reset.css │ │ │ │ │ └── templates.css │ │ │ │ ├── v2 │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── mini.gif │ │ │ │ │ │ ├── noimage.png │ │ │ │ │ │ ├── sprites.png │ │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ │ ├── toolbar_start.gif │ │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── skin.js │ │ │ │ │ └── templates.css │ │ │ │ └── office2003 │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_rtl.png │ │ │ │ │ ├── images │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── dialog_sides_rtl.png │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── presets.css │ │ │ │ │ ├── elementspath.css │ │ │ │ │ ├── reset.css │ │ │ │ │ ├── skin.js │ │ │ │ │ └── templates.css │ │ │ ├── plugins │ │ │ │ ├── uicolor │ │ │ │ │ ├── uicolor.gif │ │ │ │ │ ├── yui │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ │ └── picker_thumb.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ └── he.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ └── anchor.gif │ │ │ │ ├── smiley │ │ │ │ │ └── images │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ └── whatchutalkingabout_smile.gif │ │ │ │ ├── placeholder │ │ │ │ │ ├── placeholder.gif │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ └── en.js │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── placeholder.js │ │ │ │ ├── flash │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── iframe │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_pre.png │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ └── block_blockquote.png │ │ │ │ ├── about │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── about.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── templates │ │ │ │ │ └── templates │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── colordialog │ │ │ │ │ └── plugin.js │ │ │ │ ├── horizontalrule │ │ │ │ │ └── plugin.js │ │ │ │ ├── print │ │ │ │ │ └── plugin.js │ │ │ │ ├── wsc │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ └── tmpFrameset.html │ │ │ │ ├── save │ │ │ │ │ └── plugin.js │ │ │ │ ├── a11yhelp │ │ │ │ │ └── plugin.js │ │ │ │ ├── newpage │ │ │ │ │ └── plugin.js │ │ │ │ ├── scayt │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── find │ │ │ │ │ └── plugin.js │ │ │ │ ├── pastetext │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── pastetext.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── liststyle │ │ │ │ │ └── plugin.js │ │ │ │ ├── table │ │ │ │ │ └── plugin.js │ │ │ │ ├── popup │ │ │ │ │ └── plugin.js │ │ │ │ ├── image │ │ │ │ │ └── plugin.js │ │ │ │ └── menubutton │ │ │ │ │ └── plugin.js │ │ │ ├── core │ │ │ │ ├── dom.js │ │ │ │ ├── dom │ │ │ │ │ ├── nodelist.js │ │ │ │ │ ├── comment.js │ │ │ │ │ └── documentfragment.js │ │ │ │ ├── themes.js │ │ │ │ ├── htmlparser │ │ │ │ │ ├── cdata.js │ │ │ │ │ ├── text.js │ │ │ │ │ └── comment.js │ │ │ │ └── plugindefinition.js │ │ │ └── lang │ │ │ │ ├── _languages.js │ │ │ │ └── _translationstatus.txt │ │ ├── plugins │ │ │ ├── uicolor │ │ │ │ ├── uicolor.gif │ │ │ │ ├── yui │ │ │ │ │ └── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ └── picker_thumb.png │ │ │ │ ├── lang │ │ │ │ │ ├── en.js │ │ │ │ │ └── he.js │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── images │ │ │ │ │ └── anchor.gif │ │ │ │ └── dialogs │ │ │ │ │ └── anchor.js │ │ │ ├── smiley │ │ │ │ └── images │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ └── whatchutalkingabout_smile.gif │ │ │ ├── placeholder │ │ │ │ ├── placeholder.gif │ │ │ │ ├── lang │ │ │ │ │ ├── he.js │ │ │ │ │ └── en.js │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── forms │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ └── dialogs │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── form.js │ │ │ │ │ └── checkbox.js │ │ │ ├── iframe │ │ │ │ └── images │ │ │ │ │ └── placeholder.png │ │ │ ├── pagebreak │ │ │ │ └── images │ │ │ │ │ └── pagebreak.gif │ │ │ ├── showblocks │ │ │ │ └── images │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_pre.png │ │ │ │ │ ├── block_address.png │ │ │ │ │ └── block_blockquote.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ └── about.js │ │ │ ├── templates │ │ │ │ └── templates │ │ │ │ │ ├── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ │ │ └── default.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── wsc │ │ │ │ └── dialogs │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── ciframe.html │ │ │ │ │ └── tmpFrameset.html │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── pastetext │ │ │ │ └── dialogs │ │ │ │ │ └── pastetext.js │ │ │ ├── scayt │ │ │ │ └── dialogs │ │ │ │ │ └── toolbar.css │ │ │ ├── xml │ │ │ │ └── plugin.js │ │ │ ├── styles │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ └── a11yhelp │ │ │ │ └── lang │ │ │ │ └── en.js │ │ ├── _samples │ │ │ ├── assets │ │ │ │ ├── output_for_flash.fla │ │ │ │ ├── output_for_flash.swf │ │ │ │ └── _posteddata.php │ │ │ ├── adobeair │ │ │ │ ├── run.sh │ │ │ │ ├── run.bat │ │ │ │ ├── application.xml │ │ │ │ └── sample.html │ │ │ ├── api_dialog │ │ │ │ └── my_dialog.js │ │ │ ├── sample_posteddata.php │ │ │ ├── asp │ │ │ │ └── sample_posteddata.asp │ │ │ ├── sample.js │ │ │ └── php │ │ │ │ └── index.html │ │ ├── config.js │ │ ├── .htaccess │ │ ├── ckeditor.php │ │ ├── contents.css │ │ ├── lang │ │ │ ├── _languages.js │ │ │ └── _translationstatus.txt │ │ ├── ckeditor_basic_source.js │ │ ├── ckeditor_source.js │ │ └── adapters │ │ │ └── jquery.js │ │ ├── css │ │ ├── standard.css │ │ └── grappelli.css │ │ └── init.js ├── templates │ └── ckeditor │ │ └── ckeditor_script.html └── fields.py ├── .hgignore ├── .hgtags ├── setup.py └── LICENSE.markdown /ckeditor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /.hgignore: -------------------------------------------------------------------------------- 1 | syntax: glob 2 | 3 | *.pyc 4 | .DS_Store 5 | .project 6 | .pydevproject 7 | *.swp 8 | 9 | syntax: regexp 10 | ^build$ 11 | ^dist$ 12 | ^django_ckeditor.egg-info$ 13 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/icons.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/assets/output_for_flash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_samples/assets/output_for_flash.fla -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/assets/output_for_flash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_samples/assets/output_for_flash.swf -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/css/standard.css: -------------------------------------------------------------------------------- 1 | fieldset div.form-row div span.cke_skin_kama { 2 | border: 0; 3 | padding: 0 !important; 4 | float: left; 5 | } 6 | .help { 7 | clear: left; 8 | } -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dwaiter/django-ckeditor/HEAD/ckeditor/static/ckeditor/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/adobeair/run.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | # Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 4 | # For licensing, see LICENSE.html or http://ckeditor.com/license 5 | 6 | # Use this file to quickly run the sample under Linux. 7 | 8 | adl application.xml ../../ 9 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/adobeair/run.bat: -------------------------------------------------------------------------------- 1 | @ECHO OFF 2 | :: 3 | :: Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 4 | :: For licensing, see LICENSE.html or http://ckeditor.com/license 5 | :: 6 | :: Use this file to quickly run the sample in a Windows environment. 7 | :: 8 | 9 | adl application.xml ../../ 10 | -------------------------------------------------------------------------------- /ckeditor/templates/ckeditor/ckeditor_script.html: -------------------------------------------------------------------------------- 1 | 13 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) 7 | { 8 | // Define changes to default configuration here. For example: 9 | // config.language = 'fr'; 10 | // config.uiColor = '#AADC6E'; 11 | }; 12 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}}); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/colordialog/plugin.js: -------------------------------------------------------------------------------- 1 | ( function() 2 | { 3 | CKEDITOR.plugins.colordialog = 4 | { 5 | init : function( editor ) 6 | { 7 | editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) ); 8 | CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' ); 9 | } 10 | }; 11 | 12 | CKEDITOR.plugins.add( 'colordialog', CKEDITOR.plugins.colordialog ); 13 | } )(); 14 | -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- 1 | 7afa1bd35f734876627473b504dd5fc0ee944e1a v0.0.1 2 | 78500fec268bf87a9a1592c84f836be7a918620d v0.0.2 3 | 7afa1bd35f734876627473b504dd5fc0ee944e1a semver 4 | 7372772a37d822407936700a868caa5c728de15a v0.9.0 5 | 4936e51536fa5c49d59efaf92672ddfaed454fbe v0.9.1 6 | b8755f449e080ce50815a35a8ed8fde24719f317 v0.9.2 7 | e7f1ba644443c7960a7fd9bf8b68c39ebe9cbcc1 v0.9.3 8 | 7115051977b6bfff9b6ef30ddcba10afc5221a13 v0.9.4 9 | 09c835d3d282f4e67c1a6dabeed01638e94820a9 v0.9.5 10 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'en', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Color Picker', 11 | preview : 'Live preview', 12 | config : 'Paste this string into your config.js file', 13 | predefined : 'Predefined color sets' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'he', 7 | { 8 | uicolor : 9 | { 10 | title : 'בחירת צבע ממשק משתמש', 11 | preview : 'תצוגה מקדימה', 12 | config : 'הדבק את הטקסט הבא לתוך הקובץ config.js', 13 | predefined : 'קבוצות צבעים מוגדרות מראש' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'he', 7 | { 8 | placeholder : 9 | { 10 | title : 'מאפייני שומר מקום', 11 | toolbar : 'צור שומר מקום', 12 | text : 'תוכן שומר המקום', 13 | edit : 'ערוך שומר מקום', 14 | textMissing : 'שומר המקום חייב להכיל טקסט.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/css/grappelli.css: -------------------------------------------------------------------------------- 1 | fieldset div.form-row div span.cke_skin_kama { 2 | border: 0; 3 | padding: 0 !important; 4 | float: left; 5 | } 6 | span.cke_skin_kama span.cke_wrapper { 7 | background-color: #EEEEEE !important; 8 | background-image: none !important; 9 | padding: 10px 0 0 0 !important; 10 | } 11 | span.cke_skin_kama span.cke_maximized span.cke_wrapper { 12 | padding: 10px !important; 13 | } 14 | span.cke_wrapper iframe { 15 | border: 1px solid #CACACA; 16 | } 17 | .help { 18 | clear: left; 19 | } -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'en', 7 | { 8 | placeholder : 9 | { 10 | title : 'Placeholder Properties', 11 | toolbar : 'Create Placeholder', 12 | text : 'Placeholder Text', 13 | edit : 'Edit Placeholder', 14 | textMissing : 'The placeholder must contain text.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/core/dom.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @fileOverview Defines the {@link CKEDITOR.dom} object, which contains DOM 8 | * manipulation objects and function. 9 | */ 10 | 11 | /** 12 | * @namespace DOM manipulation objects, classes and functions. 13 | * @see CKEDITOR.dom.element 14 | * @see CKEDITOR.dom.node 15 | * @example 16 | */ 17 | CKEDITOR.dom = 18 | {}; 19 | 20 | // PACKAGER_RENAME( CKEDITOR.dom ) 21 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/core/dom/nodelist.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @class 8 | */ 9 | CKEDITOR.dom.nodeList = function( nativeList ) 10 | { 11 | this.$ = nativeList; 12 | }; 13 | 14 | CKEDITOR.dom.nodeList.prototype = 15 | { 16 | count : function() 17 | { 18 | return this.$.length; 19 | }, 20 | 21 | getItem : function( index ) 22 | { 23 | var $node = this.$[ index ]; 24 | return $node ? new CKEDITOR.dom.node( $node ) : null; 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/core/themes.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @fileOverview Defines the {@link CKEDITOR.themes} object, which is used to 8 | * manage themes registration and loading. 9 | */ 10 | 11 | /** 12 | * Manages themes registration and loading. 13 | * @namespace 14 | * @augments CKEDITOR.resourceManager 15 | * @example 16 | */ 17 | CKEDITOR.themes = new CKEDITOR.resourceManager( 18 | '_source/'+ // @Packager.RemoveLine 19 | 'themes/', 'theme' ); 20 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/api_dialog/my_dialog.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.dialog.add( 'myDialog', function( editor ) 7 | { 8 | return { 9 | title : 'My Dialog', 10 | minWidth : 400, 11 | minHeight : 200, 12 | contents : [ 13 | { 14 | id : 'tab1', 15 | label : 'First Tab', 16 | title : 'First Tab', 17 | elements : 18 | [ 19 | { 20 | id : 'input1', 21 | type : 'text', 22 | label : 'Input 1' 23 | } 24 | ] 25 | } 26 | ] 27 | }; 28 | } ); 29 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_v2 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_v2_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_kama 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_kama_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('uicolor',{requires:['dialog'],lang:['en','he'],init:function(a){if(CKEDITOR.env.ie6Compat)return;a.addCommand('uicolor',new CKEDITOR.dialogCommand('uicolor'));a.ui.addButton('UIColor',{label:a.lang.uicolor.title,command:'uicolor',icon:this.path+'uicolor.gif'});CKEDITOR.dialog.add('uicolor',this.path+'dialogs/uicolor.js');CKEDITOR.scriptLoader.load(CKEDITOR.getUrl('plugins/uicolor/yui/yui.js'));a.element.getDocument().appendStyleSheet(CKEDITOR.getUrl('plugins/uicolor/yui/assets/yui.css'));}}); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/about/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add( 'about', 7 | { 8 | requires : [ 'dialog' ], 9 | init : function( editor ) 10 | { 11 | var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) ); 12 | command.modes = { wysiwyg:1, source:1 }; 13 | command.canUndo = false; 14 | 15 | editor.ui.addButton( 'About', 16 | { 17 | label : editor.lang.about.title, 18 | command : 'about' 19 | }); 20 | 21 | CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' ); 22 | } 23 | }); 24 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_office2003 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_office2003_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/sample_posteddata.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /ckeditor/fields.py: -------------------------------------------------------------------------------- 1 | from django.db import models 2 | from django.contrib.admin import widgets as admin_widgets 3 | from ckeditor import widgets as ckeditor_widgets 4 | 5 | 6 | class HTMLField(models.TextField): 7 | """A string field for HTML content. It uses the CKEditor widget in forms.""" 8 | 9 | def formfield(self, **kwargs): 10 | defaults = { 'widget': ckeditor_widgets.CKEditor } 11 | defaults.update(kwargs) 12 | 13 | if defaults['widget'] == admin_widgets.AdminTextareaWidget: 14 | defaults['widget'] = ckeditor_widgets.AdminCKEditor 15 | 16 | return super(HTMLField, self).formfield(**defaults) 17 | 18 | try: 19 | from south.modelsinspector import add_introspection_rules 20 | add_introspection_rules([], ["^ckeditor\.fields\.HTMLField"]) 21 | except ImportError: 22 | pass -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/core/dom/comment.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @fileOverview Defines the {@link CKEDITOR.dom.comment} class, which represents 8 | * a DOM comment node. 9 | */ 10 | 11 | CKEDITOR.dom.comment = CKEDITOR.tools.createClass( 12 | { 13 | base : CKEDITOR.dom.node, 14 | 15 | $ : function( text, ownerDocument ) 16 | { 17 | if ( typeof text == 'string' ) 18 | text = ( ownerDocument ? ownerDocument.$ : document ).createComment( text ); 19 | 20 | this.base( text ); 21 | }, 22 | 23 | proto : 24 | { 25 | type : CKEDITOR.NODE_COMMENT, 26 | 27 | getOuterHtml : function() 28 | { 29 | return ''; 30 | } 31 | } 32 | }); 33 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | import os 2 | from setuptools import setup, find_packages 3 | 4 | install_requires = [] 5 | try: 6 | import json 7 | except ImportError, e: 8 | install_requires.append('simplejson') 9 | 10 | README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README') 11 | 12 | description = 'A small Django application that makes it easy to use CKEditor for form textareas.' 13 | 14 | if os.path.exists(README_PATH): 15 | long_description = open(README_PATH).read() 16 | else: 17 | long_description = description 18 | 19 | 20 | setup( 21 | name='django-ckeditor', 22 | version='0.9.5', 23 | install_requires=install_requires, 24 | description=description, 25 | long_description=long_description, 26 | author='Dumbwaiter Design', 27 | author_email='dev@dwaiter.com', 28 | url='http://bitbucket.org/dwaiter/django-ckeditor/', 29 | packages=['ckeditor'], 30 | ) 31 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/.htaccess: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. 3 | # For licensing, see LICENSE.html or http://ckeditor.com/license 4 | # 5 | 6 | # 7 | # On some specific Linux installations you could face problems with Firefox. 8 | # It could give you errors when loading the editor saying that some illegal 9 | # characters were found (three strange chars in the beginning of the file). 10 | # This could happen if you map the .js or .css files to PHP, for example. 11 | # 12 | # Those characters are the Byte Order Mask (BOM) of the Unicode encoded files. 13 | # All FCKeditor files are Unicode encoded. 14 | # 15 | 16 | AddType application/x-javascript .js 17 | AddType text/css .css 18 | 19 | # 20 | # If PHP is mapped to handle XML files, you could have some issues. The 21 | # following will disable it. 22 | # 23 | 24 | AddType text/xml .xml 25 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/v2/skin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.skins.add('v2',(function(){return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},templates:{css:['templates.css']},margins:[0,14,18,14]};})());(function(){CKEDITOR.dialog?a():CKEDITOR.on('dialogPluginReady',a);function a(){CKEDITOR.dialog.on('resize',function(b){var c=b.data,d=c.width,e=c.height,f=c.dialog,g=f.parts.contents;if(c.skin!='v2')return;g.setStyles({width:d+'px',height:e+'px'});if(!CKEDITOR.env.ie||CKEDITOR.env.ie9Compat)return;setTimeout(function(){var h=f.parts.dialog.getChild([0,0,0]),i=h.getChild(0),j=i.getSize('width');e+=i.getChild(0).getSize('height')+1;var k=h.getChild(2);k.setSize('width',j);k=h.getChild(7);k.setSize('width',j-28);k=h.getChild(4);k.setSize('height',e);k=h.getChild(5);k.setSize('height',e);},100);});};})(); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/horizontalrule/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @file Horizontal Rule plugin. 8 | */ 9 | 10 | (function() 11 | { 12 | var horizontalruleCmd = 13 | { 14 | canUndo : false, // The undo snapshot will be handled by 'insertElement'. 15 | exec : function( editor ) 16 | { 17 | editor.insertElement( editor.document.createElement( 'hr' ) ); 18 | } 19 | }; 20 | 21 | var pluginName = 'horizontalrule'; 22 | 23 | // Register a plugin named "horizontalrule". 24 | CKEDITOR.plugins.add( pluginName, 25 | { 26 | init : function( editor ) 27 | { 28 | editor.addCommand( pluginName, horizontalruleCmd ); 29 | editor.ui.addButton( 'HorizontalRule', 30 | { 31 | label : editor.lang.horizontalrule, 32 | command : pluginName 33 | }); 34 | } 35 | }); 36 | })(); 37 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/autogrow/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){var a=function(b){if(!b.window)return;var c=b.document,d=b.window.getViewPaneSize().height,e;if(CKEDITOR.env.ie||CKEDITOR.env.gecko)e=c.getBody().$.scrollHeight+(CKEDITOR.env.ie&&CKEDITOR.env.quirks?0:24);else e=c.getDocumentElement().$.offsetHeight;var f=b.config.autoGrow_minHeight,g=b.config.autoGrow_maxHeight;f==undefined&&(b.config.autoGrow_minHeight=f=200);if(f)e=Math.max(e,f);if(g)e=Math.min(e,g);if(e!=d){e=b.fire('autoGrow',{currentHeight:d,newHeight:e}).newHeight;b.resize(b.container.getStyle('width'),e,true);}};CKEDITOR.plugins.add('autogrow',{init:function(b){for(var c in {contentDom:1,key:1,selectionChange:1,insertElement:1})b.on(c,function(d){var e=b.getCommand('maximize');if(d.editor.mode=='wysiwyg'&&(!e||e.state!=CKEDITOR.TRISTATE_ON))setTimeout(function(){a(d.editor);},100);});}});})(); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/skins/office2003/skin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.skins.add('office2003',(function(){return{editor:{css:['editor.css']},dialog:{css:['dialog.css']},templates:{css:['templates.css']},margins:[0,14,18,14]};})());(function(){CKEDITOR.dialog?a():CKEDITOR.on('dialogPluginReady',a);function a(){CKEDITOR.dialog.on('resize',function(b){var c=b.data,d=c.width,e=c.height,f=c.dialog,g=f.parts.contents;if(c.skin!='office2003')return;g.setStyles({width:d+'px',height:e+'px'});if(!CKEDITOR.env.ie||CKEDITOR.env.ie9Compat)return;var h=function(){var i=f.parts.dialog.getChild([0,0,0]),j=i.getChild(0),k=j.getSize('width');e+=j.getChild(0).getSize('height')+1;var l=i.getChild(2);l.setSize('width',k);l=i.getChild(7);l.setSize('width',k-28);l=i.getChild(4);l.setSize('height',e);l=i.getChild(5);l.setSize('height',e);};setTimeout(h,100);if(b.editor.lang.dir=='rtl')setTimeout(h,1000);});};})(); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/placeholder/dialogs/placeholder.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){function a(b,c){var d=b.lang.placeholder,e=b.lang.common.generalTab;return{title:d.title,minWidth:300,minHeight:80,contents:[{id:'info',label:e,title:e,elements:[{id:'text',type:'text',style:'width: 100%;',label:d.text,'default':'',required:true,validate:CKEDITOR.dialog.validate.notEmpty(d.textMissing),setup:function(f){if(c)this.setValue(f.getText().slice(2,-2));},commit:function(f){var g='[['+this.getValue()+']]';CKEDITOR.plugins.placeholder.createPlaceholder(b,f,g);}}]}],onShow:function(){if(c)this._element=CKEDITOR.plugins.placeholder.getSelectedPlaceHoder(b);this.setupContent(this._element);},onOk:function(){this.commitContent(this._element);delete this._element;}};};CKEDITOR.dialog.add('createplaceholder',function(b){return a(b);});CKEDITOR.dialog.add('editplaceholder',function(b){return a(b,1);});})(); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | html,body{background-color:transparent;margin:0;padding:0;}body{padding:10px;}body,td,input,select,textarea{font-size:11px;font-family:'Microsoft Sans Serif',Arial,Helvetica,Verdana;}.midtext{padding:0;margin:10px;}.midtext p{padding:0;margin:10px;}.Button{border:#737357 1px solid;color:#3b3b1f;background-color:#c7c78f;}.PopupTabArea{color:#737357;background-color:#e3e3c7;}.PopupTitleBorder{border-bottom:#d5d59d 1px solid;}.PopupTabEmptyArea{padding-left:10px;border-bottom:#d5d59d 1px solid;}.PopupTab,.PopupTabSelected{border-right:#d5d59d 1px solid;border-top:#d5d59d 1px solid;border-left:#d5d59d 1px solid;padding:3px 5px 3px 5px;color:#737357;}.PopupTab{margin-top:1px;border-bottom:#d5d59d 1px solid;cursor:pointer;}.PopupTabSelected{font-weight:bold;cursor:default;padding-top:4px;border-bottom:#f1f1e3 1px solid;background-color:#f1f1e3;} 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/ajax/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){CKEDITOR.plugins.add('ajax',{requires:['xml']});CKEDITOR.ajax=(function(){var a=function(){if(!CKEDITOR.env.ie||location.protocol!='file:')try{return new XMLHttpRequest();}catch(f){}try{return new ActiveXObject('Msxml2.XMLHTTP');}catch(g){}try{return new ActiveXObject('Microsoft.XMLHTTP');}catch(h){}return null;},b=function(f){return f.readyState==4&&(f.status>=200&&f.status<300||f.status==304||f.status===0||f.status==1223);},c=function(f){if(b(f))return f.responseText;return null;},d=function(f){if(b(f)){var g=f.responseXML;return new CKEDITOR.xml(g&&g.firstChild?g:f.responseText);}return null;},e=function(f,g,h){var i=!!g,j=a();if(!j)return null;j.open('GET',f,i);if(i)j.onreadystatechange=function(){if(j.readyState==4){g(h(j));j=null;}};j.send(null);return i?'':h(j);};return{load:function(f,g){return e(f,g,c);},loadXml:function(f,g){return e(f,g,d);}};})();})(); 7 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/ckeditor.php: -------------------------------------------------------------------------------- 1 | CKEditor web site to find more information about the editor. 10 | * \section install_sec Installation 11 | * \subsection step1 Include ckeditor.php in your PHP web site. 12 | * @code 13 | * 16 | * @endcode 17 | * \subsection step2 Create CKEditor class instance and use one of available methods to insert CKEditor. 18 | * @code 19 | * textarea("field1", "
Initial value.
"); 22 | * ?> 23 | * @endcode 24 | */ 25 | 26 | if ( !function_exists('version_compare') || version_compare( phpversion(), '5', '<' ) ) 27 | include_once( 'ckeditor_php4.php' ) ; 28 | else 29 | include_once( 'ckeditor_php5.php' ) ; 30 | -------------------------------------------------------------------------------- /LICENSE.markdown: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010 Dumbwaiter Design 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy 4 | of this software and associated documentation files (the "Software"), to deal 5 | in the Software without restriction, including without limitation the rights 6 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 7 | copies of the Software, and to permit persons to whom the Software is 8 | furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 18 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 19 | THE SOFTWARE. -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/print/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @file Print Plugin 8 | */ 9 | 10 | CKEDITOR.plugins.add( 'print', 11 | { 12 | init : function( editor ) 13 | { 14 | var pluginName = 'print'; 15 | 16 | // Register the command. 17 | var command = editor.addCommand( pluginName, CKEDITOR.plugins.print ); 18 | 19 | // Register the toolbar button. 20 | editor.ui.addButton( 'Print', 21 | { 22 | label : editor.lang.print, 23 | command : pluginName 24 | }); 25 | } 26 | } ); 27 | 28 | CKEDITOR.plugins.print = 29 | { 30 | exec : function( editor ) 31 | { 32 | if ( CKEDITOR.env.opera ) 33 | return; 34 | else if ( CKEDITOR.env.gecko ) 35 | editor.window.$.print(); 36 | else 37 | editor.document.$.execCommand( "Print" ); 38 | }, 39 | canUndo : false, 40 | modes : { wysiwyg : !( CKEDITOR.env.opera ) } // It is imposible to print the inner document in Opera. 41 | }; 42 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/kama/presets.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* "Source" button label */ 7 | .cke_skin_kama .cke_button_source .cke_label 8 | { 9 | display: inline; 10 | } 11 | 12 | /* "Styles" panel size */ 13 | .cke_skin_kama .cke_styles_panel 14 | { 15 | width: 150px; 16 | height: 170px; 17 | } 18 | 19 | /* "Format" panel size */ 20 | .cke_skin_kama .cke_format_panel 21 | { 22 | width: 150px; 23 | height: 170px; 24 | } 25 | 26 | /* "Font" panel size */ 27 | .cke_skin_kama .cke_font_panel 28 | { 29 | width: 150px; 30 | height: 170px; 31 | } 32 | 33 | /* "Font Size" panel size */ 34 | .cke_skin_kama .cke_fontSize_panel 35 | { 36 | height: 170px; 37 | } 38 | 39 | /* "Font Size" combo width */ 40 | .cke_skin_kama .cke_fontSize .cke_text 41 | { 42 | width: 25px; 43 | } 44 | 45 | /* "Font Size" combo width (IE Quirks) */ 46 | .cke_skin_kama .cke_browser_iequirks .cke_fontSize .cke_text 47 | { 48 | width: 32px; 49 | } 50 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/core/htmlparser/cdata.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function() 7 | { 8 | 9 | /** 10 | * A lightweight representation of HTML text. 11 | * @constructor 12 | * @example 13 | */ 14 | CKEDITOR.htmlParser.cdata = function( value ) 15 | { 16 | /** 17 | * The CDATA value. 18 | * @type String 19 | * @example 20 | */ 21 | this.value = value; 22 | }; 23 | 24 | CKEDITOR.htmlParser.cdata.prototype = 25 | { 26 | /** 27 | * CDATA has the same type as {@link CKEDITOR.htmlParser.text} This is 28 | * a constant value set to {@link CKEDITOR.NODE_TEXT}. 29 | * @type Number 30 | * @example 31 | */ 32 | type : CKEDITOR.NODE_TEXT, 33 | 34 | /** 35 | * Writes write the CDATA with no special manipulations. 36 | * @param {CKEDITOR.htmlWriter} writer The writer to which write the HTML. 37 | */ 38 | writeHtml : function( writer ) 39 | { 40 | writer.write( this.value ); 41 | } 42 | }; 43 | })(); 44 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/v2/presets.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* "Source" button label */ 7 | .cke_skin_v2 .cke_button_source .cke_label 8 | { 9 | display: inline; /* FF2 */ 10 | display: inline-block; 11 | } 12 | 13 | /* "Styles" panel size */ 14 | .cke_skin_v2 .cke_styles_panel 15 | { 16 | width: 150px; 17 | height: 170px; 18 | } 19 | 20 | /* "Format" panel size */ 21 | .cke_skin_v2 .cke_format_panel 22 | { 23 | width: 150px; 24 | height: 170px; 25 | } 26 | 27 | /* "Font" panel size */ 28 | .cke_skin_v2 .cke_font_panel 29 | { 30 | width: 150px; 31 | height: 170px; 32 | } 33 | 34 | /* "Font Size" panel size */ 35 | .cke_skin_v2 .cke_fontSize_panel 36 | { 37 | height: 170px; 38 | } 39 | 40 | /* "Font Size" combo width */ 41 | .cke_skin_v2 .cke_fontSize .cke_text 42 | { 43 | width: 20px; 44 | } 45 | 46 | /* "Font Size" combo width (IE Quirks) */ 47 | .cke_skin_v2 .cke_browser_iequirks .cke_fontSize .cke_text 48 | { 49 | width: 32px; 50 | } 51 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/contents.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | body 7 | { 8 | /* Font */ 9 | font-family: Arial, Verdana, sans-serif; 10 | font-size: 12px; 11 | 12 | /* Text color */ 13 | color: #222; 14 | 15 | /* Remove the background color to make it transparent */ 16 | background-color: #fff; 17 | } 18 | 19 | /* preserved spaces for rtl list item bullets. (#6249)*/ 20 | ol,ul,dl 21 | { 22 | padding-right:40px; 23 | } 24 | 25 | html 26 | { 27 | /* #3658: [IE6] Editor document has horizontal scrollbar on long lines 28 | To prevent this misbehavior, we show the scrollbar always */ 29 | _overflow-y: scroll; 30 | /* #6341: The text cursor must be set on the editor area. */ 31 | cursor: text; 32 | /* #6632: Avoid having "text" shape of cursor in IE7 scrollbars.*/ 33 | *cursor:auto; 34 | } 35 | 36 | img:-moz-broken 37 | { 38 | -moz-force-broken-image-icon : 1; 39 | width : 24px; 40 | height : 24px; 41 | } 42 | img, input, textarea 43 | { 44 | cursor: default; 45 | } 46 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add( 'uicolor', 7 | { 8 | requires : [ 'dialog' ], 9 | lang : [ 'en', 'he' ], 10 | 11 | init : function( editor ) 12 | { 13 | if ( CKEDITOR.env.ie6Compat ) 14 | return; 15 | 16 | editor.addCommand( 'uicolor', new CKEDITOR.dialogCommand( 'uicolor' ) ); 17 | editor.ui.addButton( 'UIColor', 18 | { 19 | label : editor.lang.uicolor.title, 20 | command : 'uicolor', 21 | icon : this.path + 'uicolor.gif' 22 | }); 23 | CKEDITOR.dialog.add( 'uicolor', this.path + 'dialogs/uicolor.js' ); 24 | 25 | // Load YUI js files. 26 | CKEDITOR.scriptLoader.load( CKEDITOR.getUrl( 27 | '_source/' + // @Packager.RemoveLine 28 | 'plugins/uicolor/yui/yui.js' 29 | )); 30 | 31 | // Load YUI css files. 32 | editor.element.getDocument().appendStyleSheet( CKEDITOR.getUrl( 33 | '_source/' + // @Packager.RemoveLine 34 | 'plugins/uicolor/yui/assets/yui.css' 35 | )); 36 | } 37 | } ); 38 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_source/skins/office2003/presets.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /* "Source" button label */ 7 | .cke_skin_office2003 .cke_button_source .cke_label 8 | { 9 | display: inline; 10 | } 11 | 12 | /* "Styles" panel size */ 13 | .cke_skin_office2003 .cke_styles_panel 14 | { 15 | width: 150px; 16 | height: 170px; 17 | } 18 | 19 | /* "Format" panel size */ 20 | .cke_skin_office2003 .cke_format_panel 21 | { 22 | width: 150px; 23 | height: 170px; 24 | } 25 | 26 | /* "Font" panel size */ 27 | .cke_skin_office2003 .cke_font_panel 28 | { 29 | width: 150px; 30 | height: 170px; 31 | } 32 | 33 | /* "Font Size" panel size */ 34 | .cke_skin_office2003 .cke_fontSize_panel 35 | { 36 | height: 170px; 37 | } 38 | 39 | /* "Font Size" combo width */ 40 | .cke_skin_office2003 .cke_fontSize .cke_text 41 | { 42 | width: 20px; 43 | } 44 | 45 | /* "Font Size" combo width (IE Quirks) */ 46 | .cke_skin_office2003 .cke_browser_iequirks .cke_fontSize .cke_text 47 | { 48 | width: 32px; 49 | } 50 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/plugins/pastetext/dialogs/pastetext.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | (function(){CKEDITOR.dialog.add('pastetext',function(a){return{title:a.lang.pasteText.title,minWidth:CKEDITOR.env.ie&&CKEDITOR.env.quirks?368:350,minHeight:240,onShow:function(){this.getContentElement('general','content').getInputElement().setValue('');},onOk:function(){var b=this.getContentElement('general','content').getInputElement().getValue(),c=this.getParentEditor();setTimeout(function(){c.fire('paste',{text:b});},0);},contents:[{label:a.lang.common.generalTab,id:'general',elements:[{type:'html',id:'pasteMsg',html:''+'CKEditor '+CKEDITOR.version+' (revision '+CKEDITOR.revision+')
'+'http://ckeditor.com'+'
'+b.moreInfo+'
'+'http://ckeditor.com/license'+'
'+b.copy.replace('$1','CKSource - Frederico Knabben')+'
'+'Type the text here
'},{title:'Strange Template',image:'template2.gif',description:'A template that defines two colums, each one with a title, and some text.',html:'Title 1 | Title 2 | |
| Text 1 | Text 2 |
More text goes here.
'},{title:'Text and Table',image:'template3.gif',description:'A title with some text and a table.',html:'Type the text here
| Field Name | 23 |Value | 24 |
|---|---|
| <%=Server.HTMLEncode( sForm )%> | 32 |<%=Server.HTMLEncode( Request.Form(sForm) )%> |
33 |
| Field Name | 23 |Value | 24 |
|---|---|
| 43 | | 44 | |
20 | This is a sample HTML/JavaScript Adobe AIR application with CKEditor with default features. 21 |
22 |23 | 24 | 33 |
34 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/sample.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | // This file is not required by CKEditor and may be safely ignored. 7 | // It is just a helper file that displays a red message about browser compatibility 8 | // at the top of the samples (if incompatible browser is detected). 9 | 10 | if ( window.CKEDITOR ) 11 | { 12 | (function() 13 | { 14 | var showCompatibilityMsg = function() 15 | { 16 | var env = CKEDITOR.env; 17 | 18 | var html = 'Your browser is not compatible with CKEditor.'; 19 | 20 | var browsers = 21 | { 22 | gecko : 'Firefox 2.0', 23 | ie : 'Internet Explorer 6.0', 24 | opera : 'Opera 9.5', 25 | webkit : 'Safari 3.0' 26 | }; 27 | 28 | var alsoBrowsers = ''; 29 | 30 | for ( var key in env ) 31 | { 32 | if ( browsers[ key ] ) 33 | { 34 | if ( env[key] ) 35 | html += ' CKEditor is compatible with ' + browsers[ key ] + ' or higher.'; 36 | else 37 | alsoBrowsers += browsers[ key ] + '+, '; 38 | } 39 | } 40 | 41 | alsoBrowsers = alsoBrowsers.replace( /\+,([^,]+), $/, '+ and $1' ); 42 | 43 | html += ' It is also compatible with ' + alsoBrowsers + '.'; 44 | 45 | html += '
With non compatible browsers, you should still be able to see and edit the contents (HTML) in a plain text field.
'; 46 | 47 | var alertsEl = document.getElementById( 'alerts' ); 48 | alertsEl && ( alertsEl.innerHTML = html ); 49 | }; 50 | 51 | var onload = function() 52 | { 53 | // Show a friendly compatibility message as soon as the page is loaded, 54 | // for those browsers that are not compatible with CKEditor. 55 | if ( !CKEDITOR.env.isCompatible ) 56 | showCompatibilityMsg(); 57 | }; 58 | 59 | // Register the onload listener. 60 | if ( window.addEventListener ) 61 | window.addEventListener( 'load', onload, false ); 62 | else if ( window.attachEvent ) 63 | window.attachEvent( 'onload', onload ); 64 | })(); 65 | } 66 | -------------------------------------------------------------------------------- /ckeditor/static/ckeditor/ckeditor/_samples/php/index.html: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 |' +
56 | 'CKEditor ' + CKEDITOR.version + ' (revision ' + CKEDITOR.revision + ')
' +
57 | 'http://ckeditor.com' +
58 | '
' +
60 | lang.moreInfo + '
' +
61 | 'http://ckeditor.com/license' +
62 | '
' + 64 | lang.copy.replace( '$1', 'CKSource - Frederico Knabben' ) + 65 | '
' + 66 | '