Skip to content

Commit 6a6eccb

Browse files
Merge pull request #43 from hariketsheth/hotfix
[CKEditor]: Styling and Buttons
2 parents 151e474 + 72aa79c commit 6a6eccb

326 files changed

Lines changed: 19032 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

account/js/app.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

account/js/ckeditor/CHANGES.md

Lines changed: 2045 additions & 0 deletions
Large diffs are not rendered by default.

account/js/ckeditor/LICENSE.md

Lines changed: 1436 additions & 0 deletions
Large diffs are not rendered by default.

account/js/ckeditor/README.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
CKEditor 4
2+
==========
3+
4+
Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
5+
https://ckeditor.com - See LICENSE.md for license information.
6+
7+
CKEditor 4 is a text editor to be used inside web pages. It's not a replacement
8+
for desktop text editors like Word or OpenOffice, but a component to be used as
9+
part of web applications and websites.
10+
11+
## Documentation
12+
13+
The full editor documentation is available online at the following address:
14+
https://ckeditor.com/docs/
15+
16+
## Installation
17+
18+
Installing CKEditor is an easy task. Just follow these simple steps:
19+
20+
1. **Download** the latest version from the CKEditor website:
21+
https://ckeditor.com. You should have already completed this step, but be
22+
sure you have the very latest version.
23+
2. **Extract** (decompress) the downloaded file into the root of your website.
24+
25+
**Note:** CKEditor is by default installed in the `ckeditor` folder. You can
26+
place the files in whichever you want though.
27+
28+
## Checking Your Installation
29+
30+
The editor comes with a few sample pages that can be used to verify that
31+
installation proceeded properly. Take a look at the `samples` directory.
32+
33+
To test your installation, just call the following page at your website:
34+
35+
http://<your site>/<CKEditor installation path>/samples/index.html
36+
37+
For example:
38+
39+
http://www.example.com/ckeditor/samples/index.html

account/js/ckeditor/adapters/jquery.js

Lines changed: 10 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"bender": {
3+
"port": 9001
4+
},
5+
"server": {
6+
"port": 9002
7+
},
8+
"paths": {
9+
"ckeditor4": "../ckeditor4/",
10+
"runner": "./src/runner.html"
11+
},
12+
"browsers": {
13+
"linux": [ "chrome", "firefox" ],
14+
"macos": [ "safari" ]
15+
}
16+
}

account/js/ckeditor/build-config.js

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
/**
2+
* @license Copyright (c) 2003-2021, CKSource - Frederico Knabben. All rights reserved.
3+
* For licensing, see LICENSE.md or https://ckeditor.com/license
4+
*/
5+
6+
/**
7+
* This file was added automatically by CKEditor builder.
8+
* You may re-use it at any time to build CKEditor again.
9+
*
10+
* If you would like to build CKEditor online again
11+
* (for example to upgrade), visit one the following links:
12+
*
13+
* (1) https://ckeditor.com/cke4/builder
14+
* Visit online builder to build CKEditor from scratch.
15+
*
16+
* (2) https://ckeditor.com/cke4/builder/515add2ae55f82f63a8ff9d0fffc8be9
17+
* Visit online builder to build CKEditor, starting with the same setup as before.
18+
*
19+
* (3) https://ckeditor.com/cke4/builder/download/515add2ae55f82f63a8ff9d0fffc8be9
20+
* Straight download link to the latest version of CKEditor (Optimized) with the same setup as before.
21+
*
22+
* NOTE:
23+
* This file is not used by CKEditor, you may remove it.
24+
* Changing this file will not change your CKEditor configuration.
25+
*/
26+
27+
var CKBUILDER_CONFIG = {
28+
skin: 'moono-lisa',
29+
preset: 'full',
30+
ignore: [
31+
'.DS_Store',
32+
'.bender',
33+
'.editorconfig',
34+
'.gitattributes',
35+
'.gitignore',
36+
'.idea',
37+
'.jscsrc',
38+
'.jshintignore',
39+
'.jshintrc',
40+
'.mailmap',
41+
'.npm',
42+
'.nvmrc',
43+
'.travis.yml',
44+
'bender-err.log',
45+
'bender-out.log',
46+
'bender.ci.js',
47+
'bender.js',
48+
'dev',
49+
'gruntfile.js',
50+
'less',
51+
'node_modules',
52+
'package-lock.json',
53+
'package.json',
54+
'tests'
55+
],
56+
plugins : {
57+
'a11yhelp' : 1,
58+
'about' : 1,
59+
'basicstyles' : 1,
60+
'bidi' : 1,
61+
'blockquote' : 1,
62+
'clipboard' : 1,
63+
'codeTag' : 1,
64+
'codemirror' : 1,
65+
'codesnippet' : 1,
66+
'colorbutton' : 1,
67+
'colordialog' : 1,
68+
'contextmenu' : 1,
69+
'copyformatting' : 1,
70+
'dialogadvtab' : 1,
71+
'div' : 1,
72+
'editorplaceholder' : 1,
73+
'elementspath' : 1,
74+
'enterkey' : 1,
75+
'entities' : 1,
76+
'exportpdf' : 1,
77+
'filebrowser' : 1,
78+
'find' : 1,
79+
'flash' : 1,
80+
'floatingspace' : 1,
81+
'font' : 1,
82+
'format' : 1,
83+
'forms' : 1,
84+
'horizontalrule' : 1,
85+
'htmlwriter' : 1,
86+
'iframe' : 1,
87+
'image' : 1,
88+
'indentblock' : 1,
89+
'indentlist' : 1,
90+
'justify' : 1,
91+
'language' : 1,
92+
'link' : 1,
93+
'list' : 1,
94+
'liststyle' : 1,
95+
'magicline' : 1,
96+
'maximize' : 1,
97+
'newpage' : 1,
98+
'pagebreak' : 1,
99+
'pastefromgdocs' : 1,
100+
'pastefromlibreoffice' : 1,
101+
'pastefromword' : 1,
102+
'pastetext' : 1,
103+
'pbckcode' : 1,
104+
'preview' : 1,
105+
'print' : 1,
106+
'removeformat' : 1,
107+
'resize' : 1,
108+
'save' : 1,
109+
'scayt' : 1,
110+
'selectall' : 1,
111+
'showblocks' : 1,
112+
'showborders' : 1,
113+
'smiley' : 1,
114+
'sourcearea' : 1,
115+
'specialchar' : 1,
116+
'stylescombo' : 1,
117+
'tab' : 1,
118+
'table' : 1,
119+
'tableselection' : 1,
120+
'tabletools' : 1,
121+
'templates' : 1,
122+
'toolbar' : 1,
123+
'undo' : 1,
124+
'uploadimage' : 1,
125+
'wysiwygarea' : 1
126+
},
127+
languages : {
128+
'en' : 1
129+
}
130+
};

0 commit comments

Comments
 (0)