-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 89c02dc
Showing
349 changed files
with
10,612 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
CKEditor 4 | ||
========== | ||
|
||
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. | ||
http://ckeditor.com - See LICENSE.md for license information. | ||
|
||
CKEditor is a text editor to be used inside web pages. It's not a replacement | ||
for desktop text editors like Word or OpenOffice, but a component to be used as | ||
part of web applications and websites. | ||
|
||
## Documentation | ||
|
||
The full editor documentation is available online at the following address: | ||
http://docs.ckeditor.com | ||
|
||
## Installation | ||
|
||
Installing CKEditor is an easy task. Just follow these simple steps: | ||
|
||
1. **Download** the latest version from the CKEditor website: | ||
http://ckeditor.com. You should have already completed this step, but be | ||
sure you have the very latest version. | ||
2. **Extract** (decompress) the downloaded file into the root of your website. | ||
|
||
**Note:** CKEditor is by default installed in the `ckeditor` folder. You can | ||
place the files in whichever you want though. | ||
|
||
## Checking Your Installation | ||
|
||
The editor comes with a few sample pages that can be used to verify that | ||
installation proceeded properly. Take a look at the `samples` directory. | ||
|
||
To test your installation, just call the following page at your website: | ||
|
||
http://<your site>/<CKEditor installation path>/samples/index.html | ||
|
||
For example: | ||
|
||
http://www.example.com/ckeditor/samples/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
| ||
/** | ||
* @license Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. | ||
* For licensing, see LICENSE.html or http://ckeditor.com/license | ||
*/ | ||
|
||
/** | ||
* This file was added automatically by CKEditor builder. | ||
* You may re-use it at any time at http://ckeditor.com/builder to build CKEditor again. | ||
* | ||
* NOTE: | ||
* This file is not used by CKEditor, you may remove it. | ||
* Changing this file will not change your CKEditor configuration. | ||
*/ | ||
|
||
var CKBUILDER_CONFIG = { | ||
skin: 'moono', | ||
preset: 'full', | ||
ignore: [ | ||
'dev', | ||
'.gitignore', | ||
'.gitattributes', | ||
'README.md', | ||
'.mailmap' | ||
], | ||
plugins : { | ||
'about' : 1, | ||
'a11yhelp' : 1, | ||
'dialogadvtab' : 1, | ||
'basicstyles' : 1, | ||
'bidi' : 1, | ||
'blockquote' : 1, | ||
'clipboard' : 1, | ||
'colorbutton' : 1, | ||
'colordialog' : 1, | ||
'templates' : 1, | ||
'contextmenu' : 1, | ||
'div' : 1, | ||
'resize' : 1, | ||
'toolbar' : 1, | ||
'elementspath' : 1, | ||
'enterkey' : 1, | ||
'entities' : 1, | ||
'filebrowser' : 1, | ||
'find' : 1, | ||
'flash' : 1, | ||
'floatingspace' : 1, | ||
'font' : 1, | ||
'forms' : 1, | ||
'format' : 1, | ||
'horizontalrule' : 1, | ||
'htmlwriter' : 1, | ||
'iframe' : 1, | ||
'wysiwygarea' : 1, | ||
'image' : 1, | ||
'indentblock' : 1, | ||
'indentlist' : 1, | ||
'smiley' : 1, | ||
'justify' : 1, | ||
'link' : 1, | ||
'list' : 1, | ||
'liststyle' : 1, | ||
'magicline' : 1, | ||
'maximize' : 1, | ||
'newpage' : 1, | ||
'pagebreak' : 1, | ||
'pastetext' : 1, | ||
'pastefromword' : 1, | ||
'preview' : 1, | ||
'print' : 1, | ||
'removeformat' : 1, | ||
'save' : 1, | ||
'selectall' : 1, | ||
'showblocks' : 1, | ||
'showborders' : 1, | ||
'sourcearea' : 1, | ||
'specialchar' : 1, | ||
'scayt' : 1, | ||
'stylescombo' : 1, | ||
'tab' : 1, | ||
'table' : 1, | ||
'tabletools' : 1, | ||
'undo' : 1, | ||
'wsc' : 1, | ||
'dialog' : 1, | ||
'dialogui' : 1, | ||
'panelbutton' : 1, | ||
'button' : 1, | ||
'floatpanel' : 1, | ||
'panel' : 1, | ||
'menu' : 1, | ||
'popup' : 1, | ||
'fakeobjects' : 1, | ||
'richcombo' : 1, | ||
'listblock' : 1, | ||
'indent' : 1, | ||
'menubutton' : 1, | ||
'codemirror' : 1, | ||
'tableresize' : 1 | ||
}, | ||
languages : { | ||
'en' : 1, | ||
} | ||
}; |
Oops, something went wrong.