` which changes the cursor using inlined styles. */
27 | .cke_copyformatting_active,
28 | .cke_copyformatting_active.cke_editable,
29 | .cke_copyformatting_active .cke_editable,
30 | .cke_copyformatting_active a,
31 | .cke_copyformatting_active table,
32 | .cke_copyformatting_active div[data-cke-temp],
33 | .cke_copyformatting_tableresize_cursor div[data-cke-temp] {
34 | cursor: url(../cursors/cursor.svg) 12 1, auto !important;
35 | }
36 |
37 | .cke_screen_reader_only {
38 | position: absolute;
39 | clip: rect(1px, 1px, 1px, 1px);
40 | padding: 0;
41 | border: 0;
42 | height: 1px;
43 | width: 1px;
44 | overflow: hidden;
45 | }
46 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/dialog/dialogDefinition.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/flash/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/flash/images/placeholder.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/button.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("button",function(b){function d(a){var b=this.getValue();b?(a.attributes[this.id]=b,"name"==this.id&&(a.attributes["data-cke-saved-name"]=b)):(delete a.attributes[this.id],"name"==this.id&&delete a.attributes["data-cke-saved-name"])}return{title:b.lang.forms.button.title,minWidth:350,minHeight:150,onShow:function(){delete this.button;var a=this.getParentEditor().getSelection().getSelectedElement();a&&a.is("input")&&a.getAttribute("type")in{button:1,reset:1,submit:1}&&(this.button=
6 | a,this.setupContent(a))},onOk:function(){var a=this.getParentEditor(),b=this.button,d=!b,c=b?CKEDITOR.htmlParser.fragment.fromHtml(b.getOuterHtml()).children[0]:new CKEDITOR.htmlParser.element("input");this.commitContent(c);var e=new CKEDITOR.htmlParser.basicWriter;c.writeHtml(e);c=CKEDITOR.dom.element.createFromHtml(e.getHtml(),a.document);d?a.insertElement(c):(c.replace(b),a.getSelection().selectElement(c))},contents:[{id:"info",label:b.lang.forms.button.title,title:b.lang.forms.button.title,elements:[{id:"name",
7 | type:"text",bidi:!0,label:b.lang.common.name,"default":"",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:d},{id:"value",type:"text",label:b.lang.forms.button.text,accessKey:"V","default":"",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:d},{id:"type",type:"select",label:b.lang.forms.button.type,"default":"button",accessKey:"T",items:[[b.lang.forms.button.typeBtn,"button"],[b.lang.forms.button.typeSbm,"submit"],[b.lang.forms.button.typeRst,
8 | "reset"]],setup:function(a){this.setValue(a.getAttribute("type")||"")},commit:d}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/checkbox.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("checkbox",function(d){return{title:d.lang.forms.checkboxAndRadio.checkboxTitle,minWidth:350,minHeight:140,onShow:function(){delete this.checkbox;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"checkbox"==a.getAttribute("type")&&(this.checkbox=a,this.setupContent(a))},onOk:function(){var a,b=this.checkbox;b||(a=this.getParentEditor(),b=a.document.createElement("input"),b.setAttribute("type","checkbox"),a.insertElement(b));this.commitContent({element:b})},contents:[{id:"info",
6 | label:d.lang.forms.checkboxAndRadio.checkboxTitle,title:d.lang.forms.checkboxAndRadio.checkboxTitle,startupFocus:"txtName",elements:[{id:"txtName",type:"text",label:d.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"txtValue",type:"text",label:d.lang.forms.checkboxAndRadio.value,
7 | "default":"",accessKey:"V",setup:function(a){a=a.getAttribute("value");this.setValue(CKEDITOR.env.ie&&"on"==a?"":a)},commit:function(a){var b=a.element,c=this.getValue();!c||CKEDITOR.env.ie&&"on"==c?CKEDITOR.env.ie?(c=new CKEDITOR.dom.element("input",b.getDocument()),b.copyAttributes(c,{value:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c):b.removeAttribute("value"):b.setAttribute("value",c)}},{id:"cmbSelected",type:"checkbox",label:d.lang.forms.checkboxAndRadio.selected,"default":"",
8 | accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var b=a.element;if(CKEDITOR.env.ie){var c=!!b.getAttribute("checked"),e=!!this.getValue();c!=e&&(c=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"checkbox"'+(e?' checked\x3d"checked"':"")+"/\x3e",d.document),b.copyAttributes(c,{type:1,checked:1}),c.replace(b),d.getSelection().selectElement(c),a.element=c)}else a=this.getValue(),CKEDITOR.env.webkit&&(b.$.checked=a),a?b.setAttribute("checked",
9 | "checked"):b.removeAttribute("checked")}},{id:"required",type:"checkbox",label:d.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){a=a.element;this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/form.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("form",function(a){var d={action:1,id:1,method:1,enctype:1,target:1};return{title:a.lang.forms.form.title,minWidth:350,minHeight:200,onShow:function(){delete this.form;var b=this.getParentEditor().elementPath().contains("form",1);b&&(this.form=b,this.setupContent(b))},onOk:function(){var b,a=this.form,c=!a;c&&(b=this.getParentEditor(),a=b.document.createElement("form"),a.appendBogus());c&&b.insertElement(a);this.commitContent(a)},onLoad:function(){function a(b){this.setValue(b.getAttribute(this.id)||
6 | "")}function e(a){this.getValue()?a.setAttribute(this.id,this.getValue()):a.removeAttribute(this.id)}this.foreach(function(c){d[c.id]&&(c.setup=a,c.commit=e)})},contents:[{id:"info",label:a.lang.forms.form.title,title:a.lang.forms.form.title,elements:[{id:"txtName",bidi:!0,type:"text",label:a.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):
7 | (a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"action",type:"text",label:a.lang.forms.form.action,"default":"",accessKey:"T"},{type:"hbox",widths:["45%","55%"],children:[{id:"id",type:"text",label:a.lang.common.id,"default":"",accessKey:"I"},{id:"enctype",type:"select",label:a.lang.forms.form.encoding,style:"width:100%",accessKey:"E","default":"",items:[[""],["text/plain"],["multipart/form-data"],["application/x-www-form-urlencoded"]]}]},{type:"hbox",widths:["45%","55%"],children:[{id:"target",
8 | type:"select",label:a.lang.common.target,style:"width:100%",accessKey:"M","default":"",items:[[a.lang.common.notSet,""],[a.lang.common.targetNew,"_blank"],[a.lang.common.targetTop,"_top"],[a.lang.common.targetSelf,"_self"],[a.lang.common.targetParent,"_parent"]]},{id:"method",type:"select",label:a.lang.forms.form.method,accessKey:"M","default":"GET",items:[["GET","get"],["POST","post"]]}]}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/hiddenfield.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("hiddenfield",function(d){return{title:d.lang.forms.hidden.title,hiddenField:null,minWidth:350,minHeight:110,onShow:function(){delete this.hiddenField;var a=this.getParentEditor(),b=a.getSelection(),c=b.getSelectedElement();c&&c.data("cke-real-element-type")&&"hiddenfield"==c.data("cke-real-element-type")&&(this.hiddenField=c,c=a.restoreRealElement(this.hiddenField),this.setupContent(c),b.selectElement(this.hiddenField))},onOk:function(){var a=this.getValueOf("info","_cke_saved_name"),
6 | b=this.getParentEditor(),a=CKEDITOR.env.ie&&8>CKEDITOR.document.$.documentMode?b.document.createElement('\x3cinput name\x3d"'+CKEDITOR.tools.htmlEncode(a)+'"\x3e'):b.document.createElement("input");a.setAttribute("type","hidden");this.commitContent(a);a=b.createFakeElement(a,"cke_hidden","hiddenfield");this.hiddenField?(a.replace(this.hiddenField),b.getSelection().selectElement(a)):b.insertElement(a);return!0},contents:[{id:"info",label:d.lang.forms.hidden.title,title:d.lang.forms.hidden.title,elements:[{id:"_cke_saved_name",
7 | type:"text",label:d.lang.forms.hidden.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.setAttribute("name",this.getValue()):a.removeAttribute("name")}},{id:"value",type:"text",label:d.lang.forms.hidden.value,"default":"",accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/radio.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("radio",function(b){return{title:b.lang.forms.checkboxAndRadio.radioTitle,minWidth:350,minHeight:140,onShow:function(){delete this.radioButton;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"input"==a.getName()&&"radio"==a.getAttribute("type")&&(this.radioButton=a,this.setupContent(a))},onOk:function(){var a,c=this.radioButton,b=!c;b&&(a=this.getParentEditor(),c=a.document.createElement("input"),c.setAttribute("type","radio"));b&&a.insertElement(c);this.commitContent({element:c})},
6 | contents:[{id:"info",label:b.lang.forms.checkboxAndRadio.radioTitle,title:b.lang.forms.checkboxAndRadio.radioTitle,elements:[{id:"name",type:"text",label:b.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){a=a.element;this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{id:"value",type:"text",label:b.lang.forms.checkboxAndRadio.value,"default":"",
7 | accessKey:"V",setup:function(a){this.setValue(a.getAttribute("value")||"")},commit:function(a){a=a.element;this.getValue()?a.setAttribute("value",this.getValue()):a.removeAttribute("value")}},{id:"checked",type:"checkbox",label:b.lang.forms.checkboxAndRadio.selected,"default":"",accessKey:"S",value:"checked",setup:function(a){this.setValue(a.getAttribute("checked"))},commit:function(a){var c=a.element;if(CKEDITOR.env.ie){var d=c.getAttribute("checked"),e=!!this.getValue();d!=e&&(d=CKEDITOR.dom.element.createFromHtml('\x3cinput type\x3d"radio"'+
8 | (e?' checked\x3d"checked"':"")+"\x3e\x3c/input\x3e",b.document),c.copyAttributes(d,{type:1,checked:1}),d.replace(c),b.getSelection().selectElement(d),a.element=d)}else a=this.getValue(),CKEDITOR.env.webkit&&(c.$.checked=a),a?c.setAttribute("checked","checked"):c.removeAttribute("checked")}},{id:"required",type:"checkbox",label:b.lang.forms.checkboxAndRadio.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){a=a.element;
9 | this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/dialogs/textarea.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("textarea",function(b){return{title:b.lang.forms.textarea.title,minWidth:350,minHeight:220,onShow:function(){delete this.textarea;var a=this.getParentEditor().getSelection().getSelectedElement();a&&"textarea"==a.getName()&&(this.textarea=a,this.setupContent(a))},onOk:function(){var a,b=this.textarea,c=!b;c&&(a=this.getParentEditor(),b=a.document.createElement("textarea"));this.commitContent(b);c&&a.insertElement(b)},contents:[{id:"info",label:b.lang.forms.textarea.title,title:b.lang.forms.textarea.title,
6 | elements:[{id:"_cke_saved_name",type:"text",label:b.lang.common.name,"default":"",accessKey:"N",setup:function(a){this.setValue(a.data("cke-saved-name")||a.getAttribute("name")||"")},commit:function(a){this.getValue()?a.data("cke-saved-name",this.getValue()):(a.data("cke-saved-name",!1),a.removeAttribute("name"))}},{type:"hbox",widths:["50%","50%"],children:[{id:"cols",type:"text",label:b.lang.forms.textarea.cols,"default":"",accessKey:"C",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed),
7 | setup:function(a){a=a.hasAttribute("cols")&&a.getAttribute("cols");this.setValue(a||"")},commit:function(a){this.getValue()?a.setAttribute("cols",this.getValue()):a.removeAttribute("cols")}},{id:"rows",type:"text",label:b.lang.forms.textarea.rows,"default":"",accessKey:"R",style:"width:50px",validate:CKEDITOR.dialog.validate.integer(b.lang.common.validateNumberFailed),setup:function(a){a=a.hasAttribute("rows")&&a.getAttribute("rows");this.setValue(a||"")},commit:function(a){this.getValue()?a.setAttribute("rows",
8 | this.getValue()):a.removeAttribute("rows")}}]},{id:"value",type:"textarea",label:b.lang.forms.textfield.value,"default":"",setup:function(a){this.setValue(a.$.defaultValue)},commit:function(a){a.$.value=a.$.defaultValue=this.getValue()}},{id:"required",type:"checkbox",label:b.lang.forms.textfield.required,"default":"",accessKey:"Q",value:"required",setup:function(a){this.setValue(a.getAttribute("required"))},commit:function(a){this.getValue()?a.setAttribute("required","required"):a.removeAttribute("required")}}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/forms/images/hiddenfield.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/forms/images/hiddenfield.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/icons.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/icons_hidpi.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/iframe/images/placeholder.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/iframe/images/placeholder.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/image/images/noimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/image/images/noimage.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/link/dialogs/anchor.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.dialog.add("anchor",function(c){function e(b,a){return b.createFakeElement(b.document.createElement("a",{attributes:a}),"cke_anchor","anchor")}return{title:c.lang.link.anchor.title,minWidth:300,minHeight:60,onOk:function(){var b=CKEDITOR.tools.trim(this.getValueOf("info","txtName")),a={id:b,name:b,"data-cke-saved-name":b};this._.selectedElement?this._.selectedElement.data("cke-realelement")?(b=e(c,a),b.replace(this._.selectedElement),CKEDITOR.env.ie&&c.getSelection().selectElement(b)):this._.selectedElement.setAttributes(a):
6 | (b=(b=c.getSelection())&&b.getRanges()[0],b.collapsed?(a=e(c,a),b.insertNode(a)):(CKEDITOR.env.ie&&9>CKEDITOR.env.version&&(a["class"]="cke_anchor"),a=new CKEDITOR.style({element:"a",attributes:a}),a.type=CKEDITOR.STYLE_INLINE,a.applyToRange(b)))},onHide:function(){delete this._.selectedElement},onShow:function(){var b=c.getSelection(),a;a=b.getRanges()[0];var d=b.getSelectedElement();d?d.is("a")?a=d:(a.shrink(CKEDITOR.SHRINK_ELEMENT),d=a.getEnclosedNode(),a=d.type===CKEDITOR.NODE_ELEMENT&&d.is("a")&&
7 | d):a=null;var f=(d=a&&a.data("cke-realelement"))?CKEDITOR.plugins.link.tryRestoreFakeAnchor(c,a):CKEDITOR.plugins.link.getSelectedLink(c);if(f){this._.selectedElement=f;var e=f.data("cke-saved-name");this.setValueOf("info","txtName",e||"");!d&&b.selectElement(f);a&&(this._.selectedElement=a)}this.getContentElement("info","txtName").focus()},contents:[{id:"info",label:c.lang.link.anchor.title,accessKey:"I",elements:[{type:"text",id:"txtName",label:c.lang.link.anchor.name,required:!0,validate:function(){return this.getValue()?
8 | !0:(alert(c.lang.link.anchor.errorName),!1)}}]}]}});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/link/images/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/link/images/anchor.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/link/images/hidpi/anchor.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/link/images/hidpi/anchor.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/magicline/images/hidpi/icon.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/magicline/images/icon-rtl.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/magicline/images/icon-rtl.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/magicline/images/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/magicline/images/icon.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/pagebreak/images/pagebreak.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/pagebreak/images/pagebreak.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/preview/preview.html:
--------------------------------------------------------------------------------
1 |
14 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | SCAYT plugin for CKEditor 4 Changelog
2 | ====================
3 | ### CKEditor 4.5.6
4 |
5 | New Features:
6 | * CKEditor [language addon](http://ckeditor.com/addon/language) support
7 | * CKEditor [placeholder addon](http://ckeditor.com/addon/placeholder) support
8 | * Drag and Drop support
9 | * *Experimental* GRAYT functionality http://www.webspellchecker.net/samples/scayt-ckeditor-plugin.html#25
10 |
11 | Fixed issues:
12 | * [#98](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/98) SCAYT Affects Dialog Double Click. Fixed in SCAYT Core.
13 | * [#102](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/102) SCAYT Core performance enhancements
14 | * [#104](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/104) SCAYT's spans leak into the clipboard and after pasting
15 | * [#105](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/105) Javascript error fired in case of multiple instances of CKEditor in one page
16 | * [#107](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/107) SCAYT should not check non-editable parts of content
17 | * [#108](https://github.com/WebSpellChecker/ckeditor-plugin-scayt/issues/108) Latest SCAYT copies id of editor element to the iframe
18 | * SCAYT stops working when CKEditor Undo plug-in not enabled
19 | * Issue with pasting SCAYT markup in CKEditor
20 | * [#32](https://github.com/WebSpellChecker/ckeditor-plugin-wsc/issues/32) SCAYT stops working after pressing Cancel button in WSC dialog
21 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/LICENSE.md:
--------------------------------------------------------------------------------
1 | Software License Agreement
2 | ==========================
3 |
4 | **CKEditor SCAYT Plugin**
5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
6 |
7 | Licensed under the terms of any of the following licenses at your choice:
8 |
9 | * GNU General Public License Version 2 or later (the "GPL"):
10 | http://www.gnu.org/licenses/gpl.html
11 |
12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
13 | http://www.gnu.org/licenses/lgpl.html
14 |
15 | * Mozilla Public License Version 1.1 or later (the "MPL"):
16 | http://www.mozilla.org/MPL/MPL-1.1.html
17 |
18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
19 |
20 | Sources of Intellectual Property Included in this plugin
21 | --------------------------------------------------------
22 |
23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
24 |
25 | Trademarks
26 | ----------
27 |
28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
29 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/README.md:
--------------------------------------------------------------------------------
1 | CKEditor SCAYT Plugin
2 | =====================
3 |
4 | This plugin brings Spell Check As You Type (SCAYT) into up to CKEditor 4+.
5 |
6 | SCAYT is a "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
7 |
8 | Installation
9 | ------------
10 |
11 | 1. Clone/copy this repository contents in a new "plugins/scayt" folder in your CKEditor installation.
12 | 2. Enable the "scayt" plugin in the CKEditor configuration file (config.js):
13 |
14 | config.extraPlugins = 'scayt';
15 |
16 | That's all. SCAYT will appear on the editor toolbar and will be ready to use.
17 |
18 | License
19 | -------
20 |
21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
22 |
23 | See LICENSE.md for more information.
24 |
25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
26 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/dialogs/dialog.css:
--------------------------------------------------------------------------------
1 | div.cke_dialog_ui_scaytItemList {
2 | border: 1px solid #c9cccf;
3 | }
4 |
5 | .cke_scaytItemList-child {
6 | position: relative;
7 | padding: 6px 30px 6px 5px;
8 | overflow: hidden;
9 | text-overflow: ellipsis;
10 | white-space: nowrap;
11 | }
12 |
13 | .cke_scaytItemList-child:hover {
14 | background: #ebebeb;
15 | }
16 |
17 | .cke_scaytItemList-child .cke_scaytItemList_remove {
18 | position: absolute;
19 | top: 0;
20 | right: 5px;
21 | width: 26px;
22 | height: 26px;
23 | }
24 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/dialogs/toolbar.css:
--------------------------------------------------------------------------------
1 | a
2 | {
3 | text-decoration:none;
4 | padding: 2px 4px 4px 6px;
5 | display : block;
6 | border-width: 1px;
7 | border-style: solid;
8 | margin : 0px;
9 | }
10 |
11 | a.cke_scayt_toogle:hover,
12 | a.cke_scayt_toogle:focus,
13 | a.cke_scayt_toogle:active
14 | {
15 | border-color: #316ac5;
16 | background-color: #dff1ff;
17 | color : #000;
18 | cursor: pointer;
19 | margin : 0px;
20 | }
21 | a.cke_scayt_toogle {
22 | color : #316ac5;
23 | border-color: #fff;
24 | }
25 | .scayt_enabled a.cke_scayt_item {
26 | color : #316ac5;
27 | border-color: #fff;
28 | margin : 0px;
29 | }
30 | .scayt_disabled a.cke_scayt_item {
31 | color : gray;
32 | border-color : #fff;
33 | }
34 | .scayt_enabled a.cke_scayt_item:hover,
35 | .scayt_enabled a.cke_scayt_item:focus,
36 | .scayt_enabled a.cke_scayt_item:active
37 | {
38 | border-color: #316ac5;
39 | background-color: #dff1ff;
40 | color : #000;
41 | cursor: pointer;
42 | }
43 | .scayt_disabled a.cke_scayt_item:hover,
44 | .scayt_disabled a.cke_scayt_item:focus,
45 | .scayt_disabled a.cke_scayt_item:active
46 | {
47 | border-color: gray;
48 | background-color: #dff1ff;
49 | color : gray;
50 | cursor: no-drop;
51 | }
52 | .cke_scayt_set_on, .cke_scayt_set_off
53 | {
54 | display: none;
55 | }
56 | .scayt_enabled .cke_scayt_set_on
57 | {
58 | display: none;
59 | }
60 | .scayt_disabled .cke_scayt_set_on
61 | {
62 | display: inline;
63 | }
64 | .scayt_disabled .cke_scayt_set_off
65 | {
66 | display: none;
67 | }
68 | .scayt_enabled .cke_scayt_set_off
69 | {
70 | display: inline;
71 | }
72 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/scayt/skins/moono-lisa/scayt.css:
--------------------------------------------------------------------------------
1 | .scayt-lang-list > div
2 | {
3 | padding-bottom: 6px !important;
4 | }
5 |
6 | .scayt-lang-list > div input
7 | {
8 | margin-right: 4px;
9 | }
10 |
11 | #scayt_about_
12 | {
13 | margin: 30px auto 0 auto;
14 | }
15 |
16 | #scayt_about_ p
17 | {
18 | text-align: center;
19 | margin-bottom: 10px;
20 | }
21 |
22 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button
23 | {
24 | margin-top: 0;
25 | }
26 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_address.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_address.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_blockquote.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_blockquote.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_div.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_div.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h1.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h2.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h3.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h4.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h5.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_h6.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_p.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_p.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_pre.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/showblocks/images/block_pre.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/angel_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/angel_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/angel_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/angel_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/angry_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/angry_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/angry_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/angry_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/broken_heart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/broken_heart.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/broken_heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/broken_heart.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/confused_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/confused_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/confused_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/confused_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/cry_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/cry_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/cry_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/cry_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/devil_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/devil_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/devil_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/devil_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/embaressed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/embaressed_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/embarrassed_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/envelope.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/envelope.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/envelope.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/envelope.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/heart.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/heart.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/heart.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/heart.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/kiss.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/kiss.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/kiss.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/kiss.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/lightbulb.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/lightbulb.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/lightbulb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/lightbulb.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/omg_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/omg_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/omg_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/omg_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/regular_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/regular_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/regular_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/regular_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/sad_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/sad_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/sad_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/sad_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/shades_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/shades_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/shades_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/shades_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/teeth_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/teeth_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/teeth_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/teeth_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_down.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_down.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_down.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_down.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_up.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_up.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_up.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/thumbs_up.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/tongue_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/tongue_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/tongue_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/tongue_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/tounge_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/tounge_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/wink_smile.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/wink_smile.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/smiley/images/wink_smile.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/smiley/images/wink_smile.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
2 | For licensing, see LICENSE.md or http://ckeditor.com/license
3 |
4 | cs.js Found: 118 Missing: 0
5 | cy.js Found: 118 Missing: 0
6 | de.js Found: 118 Missing: 0
7 | el.js Found: 16 Missing: 102
8 | eo.js Found: 118 Missing: 0
9 | et.js Found: 31 Missing: 87
10 | fa.js Found: 24 Missing: 94
11 | fi.js Found: 23 Missing: 95
12 | fr.js Found: 118 Missing: 0
13 | hr.js Found: 23 Missing: 95
14 | it.js Found: 118 Missing: 0
15 | nb.js Found: 118 Missing: 0
16 | nl.js Found: 118 Missing: 0
17 | no.js Found: 118 Missing: 0
18 | tr.js Found: 118 Missing: 0
19 | ug.js Found: 39 Missing: 79
20 | zh-cn.js Found: 118 Missing: 0
21 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/specialchar/dialogs/lang/ja.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("specialchar","ja",{euro:"ユーロ記号",lsquo:"左シングル引用符",rsquo:"右シングル引用符",ldquo:"左ダブル引用符",rdquo:"右ダブル引用符",ndash:"半角ダッシュ",mdash:"全角ダッシュ",iexcl:"逆さ感嘆符",cent:"セント記号",pound:"ポンド記号",curren:"通貨記号",yen:"円記号",brvbar:"上下に分かれた縦棒",sect:"節記号",uml:"分音記号(ウムラウト)",copy:"著作権表示記号",ordf:"女性序数標識",laquo:" 始め二重山括弧引用記号",not:"論理否定記号",reg:"登録商標記号",macr:"長音符",deg:"度記号",sup2:"上つき2, 2乗",sup3:"上つき3, 3乗",acute:"揚音符",micro:"ミクロン記号",para:"段落記号",middot:"中黒",cedil:"セディラ",sup1:"上つき1",ordm:"男性序数標識",raquo:"終わり二重山括弧引用記号",
6 | frac14:"四分の一",frac12:"二分の一",frac34:"四分の三",iquest:"逆疑問符",Agrave:"抑音符つき大文字A",Aacute:"揚音符つき大文字A",Acirc:"曲折アクセントつき大文字A",Atilde:"チルダつき大文字A",Auml:"分音記号つき大文字A",Aring:"リングつき大文字A",AElig:"AとEの合字",Ccedil:"セディラつき大文字C",Egrave:"抑音符つき大文字E",Eacute:"揚音符つき大文字E",Ecirc:"曲折アクセントつき大文字E",Euml:"分音記号つき大文字E",Igrave:"抑音符つき大文字I",Iacute:"揚音符つき大文字I",Icirc:"曲折アクセントつき大文字I",Iuml:"分音記号つき大文字I",ETH:"[アイスランド語]大文字ETH",Ntilde:"チルダつき大文字N",Ograve:"抑音符つき大文字O",Oacute:"揚音符つき大文字O",Ocirc:"曲折アクセントつき大文字O",Otilde:"チルダつき大文字O",Ouml:" 分音記号つき大文字O",
7 | times:"乗算記号",Oslash:"打ち消し線つき大文字O",Ugrave:"抑音符つき大文字U",Uacute:"揚音符つき大文字U",Ucirc:"曲折アクセントつき大文字U",Uuml:"分音記号つき大文字U",Yacute:"揚音符つき大文字Y",THORN:"[アイスランド語]大文字THORN",szlig:"ドイツ語エスツェット",agrave:"抑音符つき小文字a",aacute:"揚音符つき小文字a",acirc:"曲折アクセントつき小文字a",atilde:"チルダつき小文字a",auml:"分音記号つき小文字a",aring:"リングつき小文字a",aelig:"aとeの合字",ccedil:"セディラつき小文字c",egrave:"抑音符つき小文字e",eacute:"揚音符つき小文字e",ecirc:"曲折アクセントつき小文字e",euml:"分音記号つき小文字e",igrave:"抑音符つき小文字i",iacute:"揚音符つき小文字i",icirc:"曲折アクセントつき小文字i",iuml:"分音記号つき小文字i",eth:"アイスランド語小文字eth",
8 | ntilde:"チルダつき小文字n",ograve:"抑音符つき小文字o",oacute:"揚音符つき小文字o",ocirc:"曲折アクセントつき小文字o",otilde:"チルダつき小文字o",ouml:"分音記号つき小文字o",divide:"除算記号",oslash:"打ち消し線つき小文字o",ugrave:"抑音符つき小文字u",uacute:"揚音符つき小文字u",ucirc:"曲折アクセントつき小文字u",uuml:"分音記号つき小文字u",yacute:"揚音符つき小文字y",thorn:"アイスランド語小文字thorn",yuml:"分音記号つき小文字y",OElig:"OとEの合字",oelig:"oとeの合字",372:"曲折アクセントつき大文字W",374:"曲折アクセントつき大文字Y",373:"曲折アクセントつき小文字w",375:"曲折アクセントつき小文字y",sbquo:"シングル下引用符",8219:"左右逆の左引用符",bdquo:"ダブル下引用符",hellip:"三点リーダ",trade:"商標記号",9658:"右黒三角ポインタ",bull:"黒丸",
9 | rarr:"右矢印",rArr:"右二重矢印",hArr:"左右二重矢印",diams:"ダイヤ",asymp:"漸近"});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/specialchar/dialogs/lang/ko.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("specialchar","ko",{euro:"유로화 기호",lsquo:"왼쪽 외 따옴표",rsquo:"오른쪽 외 따옴표",ldquo:"왼쪽 쌍 따옴표",rdquo:"오른쪽 쌍 따옴표",ndash:"반각 대시",mdash:"전각 대시",iexcl:"반전된 느낌표",cent:"센트 기호",pound:"파운드화 기호",curren:"커런시 기호",yen:"위안화 기호",brvbar:"파선",sect:"섹션 기호",uml:"분음 부호",copy:"저작권 기호",ordf:"Feminine ordinal indicator",laquo:"왼쪽 쌍꺽쇠 인용 부호",not:"금지 기호",reg:"등록 기호",macr:"장음 기호",deg:"도 기호",sup2:"위첨자 2",sup3:"위첨자 3",acute:"양음 악센트 부호",micro:"마이크로 기호",para:"단락 기호",middot:"가운데 점",cedil:"세디유",sup1:"위첨자 1",ordm:"Masculine ordinal indicator",
6 | raquo:"오른쪽 쌍꺽쇠 인용 부호",frac14:"분수 사분의 일",frac12:"분수 이분의 일",frac34:"분수 사분의 삼",iquest:"뒤집힌 물음표",Agrave:"억음 부호가 있는 라틴 대문자 A",Aacute:"양음 악센트 부호가 있는 라틴 대문자 A",Acirc:"곡절 악센트 부호가 있는 라틴 대문자 A",Atilde:"틸데가 있는 라틴 대문자 A",Auml:"분음 기호가 있는 라틴 대문자 A",Aring:"윗고리가 있는 라틴 대문자 A",AElig:"라틴 대문자 Æ",Ccedil:"세디유가 있는 라틴 대문자 C",Egrave:"억음 부호가 있는 라틴 대문자 E",Eacute:"양음 악센트 부호가 있는 라틴 대문자 E",Ecirc:"곡절 악센트 부호가 있는 라틴 대문자 E",Euml:"분음 기호가 있는 라틴 대문자 E",Igrave:"억음 부호가 있는 라틴 대문자 I",Iacute:"양음 악센트 부호가 있는 라틴 대문자 I",Icirc:"곡절 악센트 부호가 있는 라틴 대문자 I",
7 | Iuml:"분음 기호가 있는 라틴 대문자 I",ETH:"라틴 대문자 Eth",Ntilde:"틸데가 있는 라틴 대문자 N",Ograve:"억음 부호가 있는 라틴 대문자 O",Oacute:"양음 부호가 있는 라틴 대문자 O",Ocirc:"곡절 악센트 부호가 있는 라틴 대문자 O",Otilde:"틸데가 있는 라틴 대문자 O",Ouml:"분음 기호가 있는 라틴 대문자 O",times:"곱하기 기호",Oslash:"사선이 있는 라틴 대문자 O",Ugrave:"억음 부호가 있는 라틴 대문자 U",Uacute:"양음 부호가 있는 라틴 대문자 U",Ucirc:"곡절 악센트 부호가 있는 라틴 대문자 U",Uuml:"분음 기호가 있는 라틴 대문자 U",Yacute:"양음 부호가 있는 라틴 대문자 Y",THORN:"라틴 대문자 Thorn",szlig:"라틴 소문자 sharp s",agrave:"억음 부호가 있는 라틴 소문자 a",aacute:"양음 부호가 있는 라틴 소문자 a",acirc:"곡절 악센트 부호가 있는 라틴 소문자 a",
8 | atilde:"틸데가 있는 라틴 소문자 a",auml:"분음 기호가 있는 라틴 소문자 a",aring:"윗고리가 있는 라틴 소문자 a",aelig:"라틴 소문자 æ",ccedil:"세디유가 있는 라틴 소문자 c",egrave:"억음 부호가 있는 라틴 소문자 e",eacute:"양음 부호가 있는 라틴 소문자 e",ecirc:"곡절 악센트 부호가 있는 라틴 소문자 e",euml:"분음 기호가 있는 라틴 소문자 e",igrave:"억음 부호가 있는 라틴 소문자 i",iacute:"양음 부호가 있는 라틴 소문자 i",icirc:"곡절 악센트 부호가 있는 라틴 소문자 i",iuml:"분음 기호가 있는 라틴 소문자 i",eth:"라틴 소문자 eth",ntilde:"틸데가 있는 라틴 소문자 n",ograve:"억음 부호가 있는 라틴 소문자 o",oacute:"양음 부호가 있는 라틴 소문자 o",ocirc:"곡절 악센트 부호가 있는 라틴 소문자 o",otilde:"틸데가 있는 라틴 소문자 o",ouml:"분음 기호가 있는 라틴 소문자 o",
9 | divide:"나누기 기호",oslash:"사선이 있는 라틴 소문자 o",ugrave:"억음 부호가 있는 라틴 소문자 u",uacute:"양음 부호가 있는 라틴 소문자 u",ucirc:"곡절 악센트 부호가 있는 라틴 소문자 u",uuml:"분음 기호가 있는 라틴 소문자 u",yacute:"양음 부호가 있는 라틴 소문자 y",thorn:"라틴 소문자 thorn",yuml:"분음 기호가 있는 라틴 소문자 y",OElig:"라틴 대문합자 OE",oelig:"라틴 소문합자 oe",372:"곡절 악센트 부호가 있는 라틴 대문자 W",374:"곡절 악센트 부호가 있는 라틴 대문자 Y",373:"곡절 악센트 부호가 있는 라틴 소문자 w",375:"곡절 악센트 부호가 있는 라틴 소문자 y",sbquo:"외 아래-9 인용 부호",8219:"외 위쪽-뒤집힌-9 인용 부호",bdquo:"쌍 아래-9 인용 부호",hellip:"수평 생략 부호",trade:"상표 기호",9658:"검정 오른쪽 포인터",bull:"큰 점",
10 | rarr:"오른쪽 화살표",rArr:"오른쪽 두 줄 화살표",hArr:"양쪽 두 줄 화살표",diams:"검정 다이아몬드",asymp:"근사"});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("specialchar","zh-cn",{euro:"欧元符号",lsquo:"左单引号",rsquo:"右单引号",ldquo:"左双引号",rdquo:"右双引号",ndash:"短划线",mdash:"长划线",iexcl:"竖翻叹号",cent:"分币符号",pound:"英镑符号",curren:"货币符号",yen:"日元符号",brvbar:"间断条",sect:"节标记",uml:"分音符",copy:"版权所有标记",ordf:"阴性顺序指示符",laquo:"左指双尖引号",not:"非标记",reg:"注册标记",macr:"长音符",deg:"度标记",sup2:"上标二",sup3:"上标三",acute:"锐音符",micro:"微符",para:"段落标记",middot:"中间点",cedil:"下加符",sup1:"上标一",ordm:"阳性顺序指示符",raquo:"右指双尖引号",frac14:"普通分数四分之一",frac12:"普通分数二分之一",frac34:"普通分数四分之三",iquest:"竖翻问号",
6 | Agrave:"带抑音符的拉丁文大写字母 A",Aacute:"带锐音符的拉丁文大写字母 A",Acirc:"带扬抑符的拉丁文大写字母 A",Atilde:"带颚化符的拉丁文大写字母 A",Auml:"带分音符的拉丁文大写字母 A",Aring:"带上圆圈的拉丁文大写字母 A",AElig:"拉丁文大写字母 Æ",Ccedil:"带下加符的拉丁文大写字母 C",Egrave:"带抑音符的拉丁文大写字母 E",Eacute:"带锐音符的拉丁文大写字母 E",Ecirc:"带扬抑符的拉丁文大写字母 E",Euml:"带分音符的拉丁文大写字母 E",Igrave:"带抑音符的拉丁文大写字母 I",Iacute:"带锐音符的拉丁文大写字母 I",Icirc:"带扬抑符的拉丁文大写字母 I",Iuml:"带分音符的拉丁文大写字母 I",ETH:"拉丁文大写字母 Eth",Ntilde:"带颚化符的拉丁文大写字母 N",Ograve:"带抑音符的拉丁文大写字母 O",Oacute:"带锐音符的拉丁文大写字母 O",Ocirc:"带扬抑符的拉丁文大写字母 O",Otilde:"带颚化符的拉丁文大写字母 O",
7 | Ouml:"带分音符的拉丁文大写字母 O",times:"乘号",Oslash:"带粗线的拉丁文大写字母 O",Ugrave:"带抑音符的拉丁文大写字母 U",Uacute:"带锐音符的拉丁文大写字母 U",Ucirc:"带扬抑符的拉丁文大写字母 U",Uuml:"带分音符的拉丁文大写字母 U",Yacute:"带抑音符的拉丁文大写字母 Y",THORN:"拉丁文大写字母 Thorn",szlig:"拉丁文小写字母清音 S",agrave:"带抑音符的拉丁文小写字母 A",aacute:"带锐音符的拉丁文小写字母 A",acirc:"带扬抑符的拉丁文小写字母 A",atilde:"带颚化符的拉丁文小写字母 A",auml:"带分音符的拉丁文小写字母 A",aring:"带上圆圈的拉丁文小写字母 A",aelig:"拉丁文小写字母 Ae",ccedil:"带下加符的拉丁文小写字母 C",egrave:"带抑音符的拉丁文小写字母 E",eacute:"带锐音符的拉丁文小写字母 E",ecirc:"带扬抑符的拉丁文小写字母 E",euml:"带分音符的拉丁文小写字母 E",igrave:"带抑音符的拉丁文小写字母 I",
8 | iacute:"带锐音符的拉丁文小写字母 I",icirc:"带扬抑符的拉丁文小写字母 I",iuml:"带分音符的拉丁文小写字母 I",eth:"拉丁文小写字母 Eth",ntilde:"带颚化符的拉丁文小写字母 N",ograve:"带抑音符的拉丁文小写字母 O",oacute:"带锐音符的拉丁文小写字母 O",ocirc:"带扬抑符的拉丁文小写字母 O",otilde:"带颚化符的拉丁文小写字母 O",ouml:"带分音符的拉丁文小写字母 O",divide:"除号",oslash:"带粗线的拉丁文小写字母 O",ugrave:"带抑音符的拉丁文小写字母 U",uacute:"带锐音符的拉丁文小写字母 U",ucirc:"带扬抑符的拉丁文小写字母 U",uuml:"带分音符的拉丁文小写字母 U",yacute:"带抑音符的拉丁文小写字母 Y",thorn:"拉丁文小写字母 Thorn",yuml:"带分音符的拉丁文小写字母 Y",OElig:"拉丁文大写连字 Oe",oelig:"拉丁文小写连字 Oe",372:"带扬抑符的拉丁文大写字母 W",374:"带扬抑符的拉丁文大写字母 Y",
9 | 373:"带扬抑符的拉丁文小写字母 W",375:"带扬抑符的拉丁文小写字母 Y",sbquo:"单下 9 形引号",8219:"单高横翻 9 形引号",bdquo:"双下 9 形引号",hellip:"水平省略号",trade:"商标标志",9658:"实心右指指针",bull:"加重号",rarr:"向右箭头",rArr:"向右双线箭头",hArr:"左右双线箭头",diams:"实心方块纸牌",asymp:"约等于"});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/specialchar/dialogs/lang/zh.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.plugins.setLang("specialchar","zh",{euro:"歐元符號",lsquo:"左單引號",rsquo:"右單引號",ldquo:"左雙引號",rdquo:"右雙引號",ndash:"短破折號",mdash:"長破折號",iexcl:"倒置的驚嘆號",cent:"美分符號",pound:"英鎊符號",curren:"貨幣符號",yen:"日圓符號",brvbar:"破折號",sect:"章節符號",uml:"分音符號",copy:"版權符號",ordf:"雌性符號",laquo:"左雙角括號",not:"Not 符號",reg:"註冊商標符號",macr:"長音符號",deg:"度數符號",sup2:"上標字 2",sup3:"上標字 3",acute:"尖音符號",micro:"微",para:"段落符號",middot:"中間點",cedil:"字母 C 下面的尾型符號 ",sup1:"上標",ordm:"雄性符號",raquo:"右雙角括號",frac14:"四分之一符號",frac12:"二分之一符號",frac34:"四分之三符號",
6 | iquest:"倒置的問號",Agrave:"拉丁大寫字母 A 帶抑音符號",Aacute:"拉丁大寫字母 A 帶尖音符號",Acirc:"拉丁大寫字母 A 帶揚抑符",Atilde:"拉丁大寫字母 A 帶波浪號",Auml:"拉丁大寫字母 A 帶分音符號",Aring:"拉丁大寫字母 A 帶上圓圈",AElig:"拉丁大寫字母 Æ",Ccedil:"拉丁大寫字母 C 帶下尾符號",Egrave:"拉丁大寫字母 E 帶抑音符號",Eacute:"拉丁大寫字母 E 帶尖音符號",Ecirc:"拉丁大寫字母 E 帶揚抑符",Euml:"拉丁大寫字母 E 帶分音符號",Igrave:"拉丁大寫字母 I 帶抑音符號",Iacute:"拉丁大寫字母 I 帶尖音符號",Icirc:"拉丁大寫字母 I 帶揚抑符",Iuml:"拉丁大寫字母 I 帶分音符號",ETH:"拉丁大寫字母 Eth",Ntilde:"拉丁大寫字母 N 帶波浪號",Ograve:"拉丁大寫字母 O 帶抑音符號",Oacute:"拉丁大寫字母 O 帶尖音符號",Ocirc:"拉丁大寫字母 O 帶揚抑符",Otilde:"拉丁大寫字母 O 帶波浪號",
7 | Ouml:"拉丁大寫字母 O 帶分音符號",times:"乘號",Oslash:"拉丁大寫字母 O 帶粗線符號",Ugrave:"拉丁大寫字母 U 帶抑音符號",Uacute:"拉丁大寫字母 U 帶尖音符號",Ucirc:"拉丁大寫字母 U 帶揚抑符",Uuml:"拉丁大寫字母 U 帶分音符號",Yacute:"拉丁大寫字母 Y 帶尖音符號",THORN:"拉丁大寫字母 Thorn",szlig:"拉丁小寫字母 s",agrave:"拉丁小寫字母 a 帶抑音符號",aacute:"拉丁小寫字母 a 帶尖音符號",acirc:"拉丁小寫字母 a 帶揚抑符",atilde:"拉丁小寫字母 a 帶波浪號",auml:"拉丁小寫字母 a 帶分音符號",aring:"拉丁小寫字母 a 帶上圓圈",aelig:"拉丁小寫字母 æ",ccedil:"拉丁小寫字母 c 帶下尾符號",egrave:"拉丁小寫字母 e 帶抑音符號",eacute:"拉丁小寫字母 e 帶尖音符號",ecirc:"拉丁小寫字母 e 帶揚抑符",euml:"拉丁小寫字母 e 帶分音符號",igrave:"拉丁小寫字母 i 帶抑音符號",
8 | iacute:"拉丁小寫字母 i 帶尖音符號",icirc:"拉丁小寫字母 i 帶揚抑符",iuml:"拉丁小寫字母 i 帶分音符號",eth:"拉丁小寫字母 eth",ntilde:"拉丁小寫字母 n 帶波浪號",ograve:"拉丁小寫字母 o 帶抑音符號",oacute:"拉丁小寫字母 o 帶尖音符號",ocirc:"拉丁小寫字母 o 帶揚抑符",otilde:"拉丁小寫字母 o 帶波浪號",ouml:"拉丁小寫字母 o 帶分音符號",divide:"除號",oslash:"拉丁小寫字母 o 帶粗線符號",ugrave:"拉丁小寫字母 u 帶抑音符號",uacute:"拉丁小寫字母 u 帶尖音符號",ucirc:"拉丁小寫字母 u 帶揚抑符",uuml:"拉丁小寫字母 u 帶分音符號",yacute:"拉丁小寫字母 y 帶尖音符號",thorn:"拉丁小寫字母 thorn",yuml:"拉丁小寫字母 y 帶分音符號",OElig:"拉丁大寫字母 OE",oelig:"拉丁小寫字母 oe",372:"拉丁大寫字母 W 帶揚抑符",374:"拉丁大寫字母 Y 帶揚抑符",373:"拉丁小寫字母 w 帶揚抑符",
9 | 375:"拉丁小寫字母 y 帶揚抑符",sbquo:"低 9 單引號",8219:"高 9 反轉單引號",bdquo:"低 9 雙引號",hellip:"水平刪節號",trade:"商標符號",9658:"黑色向右指箭號",bull:"項目符號",rarr:"向右箭號",rArr:"向右雙箭號",hArr:"左右雙箭號",diams:"黑鑽套裝",asymp:"約等於"});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/tableselection/styles/tableselection.css:
--------------------------------------------------------------------------------
1 | .cke_table-faked-selection-editor *::selection, table.cke_table-faked-selection-table *::selection {
2 | background: transparent;
3 | }
4 |
5 | .cke_table-faked-selection-editor {
6 | /* With love, dedicated for Chrome, until https://bugs.chromium.org/p/chromium/issues/detail?id=702610 is resolved.
7 | It will force repaint (without reflow) so that selection is properly displayed. */
8 | transform: translateZ( 0 );
9 | }
10 |
11 | .cke_table-faked-selection {
12 | background: darkgray !important;
13 | color: black;
14 | }
15 | .cke_table-faked-selection a {
16 | color: black;
17 | }
18 | .cke_editable:focus .cke_table-faked-selection {
19 | /* We have to use !important here, as td might specify it's own background, thus table selection
20 | would not be visible. */
21 | background: #0076cb !important;
22 | color: white;
23 | }
24 | .cke_editable:focus .cke_table-faked-selection a {
25 | color: white;
26 | }
27 | .cke_table-faked-selection::-moz-selection, .cke_table-faked-selection ::-moz-selection {
28 | background: transparent;
29 | }
30 | .cke_table-faked-selection::selection, .cke_table-faked-selection ::selection {
31 | background: transparent;
32 | }
33 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/templates/dialogs/templates.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 |
6 | .cke_tpl_list
7 | {
8 | border: #dcdcdc 2px solid;
9 | background-color: #ffffff;
10 | overflow-y: auto;
11 | overflow-x: hidden;
12 | width: 100%;
13 | height: 220px;
14 | }
15 |
16 | .cke_tpl_item
17 | {
18 | margin: 5px;
19 | padding: 7px;
20 | border: #eeeeee 1px solid;
21 | *width: 88%;
22 | }
23 |
24 | .cke_tpl_preview
25 | {
26 | border-collapse: separate;
27 | text-indent:0;
28 | width: 100%;
29 | }
30 | .cke_tpl_preview td
31 | {
32 | padding: 2px;
33 | vertical-align: middle;
34 | }
35 | .cke_tpl_preview .cke_tpl_preview_img
36 | {
37 | width: 100px;
38 | }
39 | .cke_tpl_preview span
40 | {
41 | white-space: normal;
42 | }
43 |
44 | .cke_tpl_title
45 | {
46 | font-weight: bold;
47 | }
48 |
49 | .cke_tpl_list a:hover .cke_tpl_item,
50 | .cke_tpl_list a:focus .cke_tpl_item,
51 | .cke_tpl_list a:active .cke_tpl_item
52 | {
53 | border: #ff9933 1px solid;
54 | background-color: #fffacd;
55 | }
56 |
57 | .cke_tpl_list a:hover *,
58 | .cke_tpl_list a:focus *,
59 | .cke_tpl_list a:active *
60 | {
61 | cursor: pointer;
62 | }
63 |
64 | /* IE Quirks contextual selectors children will not get :hover transition until
65 | the hover style of the link itself contains certain CSS declarations. */
66 | .cke_browser_quirks .cke_tpl_list a:active,
67 | .cke_browser_quirks .cke_tpl_list a:hover,
68 | .cke_browser_quirks .cke_tpl_list a:focus
69 | {
70 | background-position: 0 0;
71 | }
72 |
73 | .cke_hc .cke_tpl_list a:hover .cke_tpl_item,
74 | .cke_hc .cke_tpl_list a:focus .cke_tpl_item,
75 | .cke_hc .cke_tpl_list a:active .cke_tpl_item
76 | {
77 | border-width: 3px;
78 | }
79 |
80 | .cke_tpl_empty, .cke_tpl_loading
81 | {
82 | text-align: center;
83 | padding: 5px;
84 | }
85 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/templates/templates/default.js:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.md or http://ckeditor.com/license
4 | */
5 | CKEDITOR.addTemplates("default",{imagesPath:CKEDITOR.getUrl(CKEDITOR.plugins.getPath("templates")+"templates/images/"),templates:[{title:"Image and Title",image:"template1.gif",description:"One main image with a title and text that surround the image.",html:'\x3ch3\x3e\x3cimg src\x3d" " alt\x3d"" style\x3d"margin-right: 10px" height\x3d"100" width\x3d"100" align\x3d"left" /\x3eType the title here\x3c/h3\x3e\x3cp\x3eType the text here\x3c/p\x3e'},{title:"Strange Template",image:"template2.gif",description:"A template that defines two columns, each one with a title, and some text.",
6 | html:'\x3ctable cellspacing\x3d"0" cellpadding\x3d"0" style\x3d"width:100%" border\x3d"0"\x3e\x3ctr\x3e\x3ctd style\x3d"width:50%"\x3e\x3ch3\x3eTitle 1\x3c/h3\x3e\x3c/td\x3e\x3ctd\x3e\x3c/td\x3e\x3ctd style\x3d"width:50%"\x3e\x3ch3\x3eTitle 2\x3c/h3\x3e\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3eText 1\x3c/td\x3e\x3ctd\x3e\x3c/td\x3e\x3ctd\x3eText 2\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3cp\x3eMore text goes here.\x3c/p\x3e'},{title:"Text and Table",image:"template3.gif",description:"A title with some text and a table.",
7 | html:'\x3cdiv style\x3d"width: 80%"\x3e\x3ch3\x3eTitle goes here\x3c/h3\x3e\x3ctable style\x3d"width:150px;float: right" cellspacing\x3d"0" cellpadding\x3d"0" border\x3d"1"\x3e\x3ccaption style\x3d"border:solid 1px black"\x3e\x3cstrong\x3eTable title\x3c/strong\x3e\x3c/caption\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3ctr\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3ctd\x3e\x26nbsp;\x3c/td\x3e\x3c/tr\x3e\x3c/table\x3e\x3cp\x3eType the text here\x3c/p\x3e\x3c/div\x3e'}]});
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template1.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template1.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template2.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template2.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template3.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/plugins/templates/templates/images/template3.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/LICENSE.md:
--------------------------------------------------------------------------------
1 | Software License Agreement
2 | ==========================
3 |
4 | **CKEditor WSC Plugin**
5 | Copyright © 2012, [CKSource](http://cksource.com) - Frederico Knabben. All rights reserved.
6 |
7 | Licensed under the terms of any of the following licenses at your choice:
8 |
9 | * GNU General Public License Version 2 or later (the "GPL"):
10 | http://www.gnu.org/licenses/gpl.html
11 |
12 | * GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
13 | http://www.gnu.org/licenses/lgpl.html
14 |
15 | * Mozilla Public License Version 1.1 or later (the "MPL"):
16 | http://www.mozilla.org/MPL/MPL-1.1.html
17 |
18 | You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
19 |
20 | Sources of Intellectual Property Included in this plugin
21 | --------------------------------------------------------
22 |
23 | Where not otherwise indicated, all plugin content is authored by CKSource engineers and consists of CKSource-owned intellectual property. In some specific instances, the plugin will incorporate work done by developers outside of CKSource with their express permission.
24 |
25 | Trademarks
26 | ----------
27 |
28 | CKEditor is a trademark of CKSource - Frederico Knabben. All other brand and product names are trademarks, registered trademarks or service marks of their respective holders.
29 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/README.md:
--------------------------------------------------------------------------------
1 | CKEditor WebSpellChecker Plugin
2 | ===============================
3 |
4 | This plugin brings Web Spell Checker (WSC) into CKEditor.
5 |
6 | WSC is "installation-less", using the web-services of [WebSpellChecker.net](http://www.webspellchecker.net/). It's an out of the box solution.
7 |
8 | Installation
9 | ------------
10 |
11 | 1. Clone/copy this repository contents in a new "plugins/wsc" folder in your CKEditor installation.
12 | 2. Enable the "wsc" plugin in the CKEditor configuration file (config.js):
13 |
14 | config.extraPlugins = 'wsc';
15 |
16 | That's all. WSC will appear on the editor toolbar and will be ready to use.
17 |
18 | License
19 | -------
20 |
21 | Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
22 |
23 | See LICENSE.md for more information.
24 |
25 | Developed in cooperation with [WebSpellChecker.net](http://www.webspellchecker.net/).
26 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/dialogs/ciframe.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
64 |
65 |
66 |
67 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/dialogs/tmpFrameset.html:
--------------------------------------------------------------------------------
1 |
2 |
6 |
7 |
8 |
9 |
10 |
44 |
45 |
46 |
52 |
53 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/dialogs/wsc.css:
--------------------------------------------------------------------------------
1 | /*
2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
3 | For licensing, see LICENSE.html or http://ckeditor.com/license
4 | */
5 |
6 | html, body
7 | {
8 | background-color: transparent;
9 | margin: 0px;
10 | padding: 0px;
11 | }
12 |
13 | body
14 | {
15 | padding: 10px;
16 | }
17 |
18 | body, td, input, select, textarea
19 | {
20 | font-size: 11px;
21 | font-family: 'Microsoft Sans Serif' , Arial, Helvetica, Verdana;
22 | }
23 |
24 | .midtext
25 | {
26 | padding:0px;
27 | margin:10px;
28 | }
29 |
30 | .midtext p
31 | {
32 | padding:0px;
33 | margin:10px;
34 | }
35 |
36 | .Button
37 | {
38 | border: #737357 1px solid;
39 | color: #3b3b1f;
40 | background-color: #c7c78f;
41 | }
42 |
43 | .PopupTabArea
44 | {
45 | color: #737357;
46 | background-color: #e3e3c7;
47 | }
48 |
49 | .PopupTitleBorder
50 | {
51 | border-bottom: #d5d59d 1px solid;
52 | }
53 | .PopupTabEmptyArea
54 | {
55 | padding-left: 10px;
56 | border-bottom: #d5d59d 1px solid;
57 | }
58 |
59 | .PopupTab, .PopupTabSelected
60 | {
61 | border-right: #d5d59d 1px solid;
62 | border-top: #d5d59d 1px solid;
63 | border-left: #d5d59d 1px solid;
64 | padding: 3px 5px 3px 5px;
65 | color: #737357;
66 | }
67 |
68 | .PopupTab
69 | {
70 | margin-top: 1px;
71 | border-bottom: #d5d59d 1px solid;
72 | cursor: pointer;
73 | }
74 |
75 | .PopupTabSelected
76 | {
77 | font-weight: bold;
78 | cursor: default;
79 | padding-top: 4px;
80 | border-bottom: #f1f1e3 1px solid;
81 | background-color: #f1f1e3;
82 | }
83 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/plugins/wsc/skins/moono-lisa/wsc.css:
--------------------------------------------------------------------------------
1 | .cke_dialog_body #overlayBlock,
2 | .cke_dialog_body #no_check_over
3 | {
4 | top: 39px !important;
5 | }
6 |
7 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_vbox td > .cke_dialog_ui_button:first-child
8 | {
9 | margin-top: 4px;
10 | }
11 |
12 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select > label
13 | {
14 | margin-left: 0;
15 | }
16 |
17 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select div.cke_dialog_ui_input_select
18 | {
19 | width: 140px !important;
20 | }
21 |
22 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select,
23 | div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select
24 | {
25 | margin-top: 1px;
26 | }
27 |
28 | div[name=SpellTab] .wsc-spelltab-bottom .cke_dialog_ui_hbox_first .cke_dialog_ui_select select.cke_dialog_ui_input_select:focus,
29 | div[name=Thesaurus] div.cke_dialog_ui_input_select select.cke_dialog_ui_input_select:focus
30 | {
31 | margin-top: 0;
32 | }
33 |
34 | div[name=GrammTab] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button,
35 | div[name=Thesaurus] .cke_dialog_ui_vbox tbody > tr:first-child .cke_dialog_ui_button
36 | {
37 | margin-top: 4px !important;
38 | }
39 |
40 | div[name=Thesaurus] div.cke_dialog_ui_input_select
41 | {
42 | width: 180px !important;
43 | }
44 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/icons.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/icons.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/icons_hidpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/icons_hidpi.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/arrow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/arrow.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/close.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/close.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/close.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/lock.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/hidpi/refresh.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/lock-open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/lock-open.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/lock.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/lock.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/refresh.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/refresh.png
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/spinner.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/ckeditor/skins/moono-lisa/images/spinner.gif
--------------------------------------------------------------------------------
/src/assets/global/plugins/ckeditor/skins/moono-lisa/readme.md:
--------------------------------------------------------------------------------
1 | "Moono-lisa" Skin
2 | =================
3 |
4 | This skin has been made a **default skin** starting from CKEditor 4.6.0 and is maintained by the core developers.
5 |
6 | For more information about skins, please check the [CKEditor Skin SDK](http://docs.cksource.com/CKEditor_4.x/Skin_SDK)
7 | documentation.
8 |
9 | Features
10 | -------------------
11 | "Moono-lisa" is a monochromatic skin, which offers a modern, flat and minimalistic look which blends very well in modern design.
12 | It comes with the following features:
13 |
14 | - Chameleon feature with brightness.
15 | - High-contrast compatibility.
16 | - Graphics source provided in SVG.
17 |
18 | Directory Structure
19 | -------------------
20 |
21 | CSS parts:
22 | - **editor.css**: the main CSS file. It's simply loading several other files, for easier maintenance,
23 | - **mainui.css**: the file contains styles of entire editor outline structures,
24 | - **toolbar.css**: the file contains styles of the editor toolbar space (top),
25 | - **richcombo.css**: the file contains styles of the rich combo ui elements on toolbar,
26 | - **panel.css**: the file contains styles of the rich combo drop-down, it's not loaded
27 | until the first panel open up,
28 | - **elementspath.css**: the file contains styles of the editor elements path bar (bottom),
29 | - **menu.css**: the file contains styles of all editor menus including context menu and button drop-down,
30 | it's not loaded until the first menu open up,
31 | - **dialog.css**: the CSS files for the dialog UI, it's not loaded until the first dialog open,
32 | - **reset.css**: the file defines the basis of style resets among all editor UI spaces,
33 | - **preset.css**: the file defines the default styles of some UI elements reflecting the skin preference,
34 | - **editor_XYZ.css** and **dialog_XYZ.css**: browser specific CSS hacks.
35 |
36 | Other parts:
37 | - **skin.js**: the only JavaScript part of the skin that registers the skin, its browser specific files and its icons and defines the Chameleon feature,
38 | - **images/**: contains a fill general used images,
39 | - **dev/**: contains SVG and PNG source of the skin icons.
40 |
41 | License
42 | -------
43 |
44 | Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
45 |
46 | For licensing, see LICENSE.md or [http://ckeditor.com/license](http://ckeditor.com/license)
47 |
--------------------------------------------------------------------------------
/src/assets/global/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/font-awesome-4.7.0/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/assets/global/plugins/font-awesome-4.7.0/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/src/assets/global/scripts/common.js:
--------------------------------------------------------------------------------
1 | var Common = (function() {
2 |
3 | return {
4 | startLoading: function() {
5 | $('.loading-container').remove();
6 | $('app-root').append(`
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
`)
16 | },
17 | stopLoading: function() {
18 | $('.loading-container').remove();
19 | }
20 | }
21 | })();
--------------------------------------------------------------------------------
/src/assets/i18n/en.json:
--------------------------------------------------------------------------------
1 | {
2 | "app":{
3 | "welcome":"Welcome",
4 | "logout":"Logout",
5 | "login":"Login",
6 | "register":"Register",
7 | "articles":"Articles",
8 | "doc":"Document",
9 | "console":"Console"
10 | },
11 | "post":{
12 | "publish":"publish"
13 | },
14 | "userRegister":{
15 | "userSignUp":"User Sign Up",
16 | "userName":"UserName:",
17 | "userName-placeholder":"4-32 characters",
18 | "nickName":"NickName:",
19 | "nickName-placeholder":"2-32 characters",
20 | "email":"Email:",
21 | "email-placeholder":"Frequently used mailboxes, sign in after verification.",
22 | "notice":"If you do not receive a verification email in your inbox, check your trash.",
23 | "password":"Password:",
24 | "password-placeholder":"Password, at least 8 characters.",
25 | "repeat-pwd":"Repeat PWD:",
26 | "repeat-pwd-placeholder":"Repeat password, two inputs must be consistent.",
27 | "signUp":"SignUp"
28 | },
29 | "userLogin":{
30 | "userLogin":"User Login"
31 | },
32 | "search":"search",
33 | "submit":"Submit",
34 | "firstPage":"First",
35 | "lastPage":"Last",
36 | "previousPage":"Previous",
37 | "nextPage":"Next"
38 | }
--------------------------------------------------------------------------------
/src/assets/i18n/zh.json:
--------------------------------------------------------------------------------
1 | {
2 | "app": {
3 | "articles": "动态",
4 | "welcome": "欢迎你",
5 | "logout": "退出",
6 | "login": "登录",
7 | "register": "注册",
8 | "doc": "官方文档",
9 | "console": "管理后台"
10 | },
11 | "post": {
12 | "publish": "发布文章"
13 | },
14 | "userRegister":{
15 | "userSignUp":"用户注册",
16 | "userName":"用户名:",
17 | "userName-placeholder":"用户名4到32个字符",
18 | "nickName":"昵称:",
19 | "nickName-placeholder":"昵称2到32个字符",
20 | "email":"常用邮箱:",
21 | "email-placeholder":"常用邮箱,验证后才能登录",
22 | "notice":"【如果您未在收件箱收到验证邮件,请到垃圾箱查收。】",
23 | "password":"密码:",
24 | "password-placeholder":"密码,至少8位",
25 | "repeat-pwd":"重复密码:",
26 | "repeat-pwd-placeholder":"重复密码,两次输入必须一致",
27 | "signUp":"注册"
28 | },
29 | "userLogin":{
30 | "userLogin":"用户登录"
31 | },
32 | "search": "搜索",
33 | "submit": "提交",
34 | "firstPage": "首页",
35 | "lastPage": "末页",
36 | "previousPage": "上一页",
37 | "nextPage": "下一页"
38 | }
39 |
--------------------------------------------------------------------------------
/src/assets/mock-data/forget-pwd.json:
--------------------------------------------------------------------------------
1 | {
2 | "message": "邮件发送成功,请登录邮箱查看。"
3 | }
--------------------------------------------------------------------------------
/src/assets/mock-data/menu.json:
--------------------------------------------------------------------------------
1 | [
2 | {
3 | "name": "首页",
4 | "icon": "home",
5 | "link": "/home"
6 | },
7 | {
8 | "name": "增改查删Demo",
9 | "icon": "star",
10 | "submenu": [
11 | {
12 | "name": "人员管理",
13 | "icon": "person",
14 | "link": "/person-list"
15 | }
16 | ]
17 | },
18 | {
19 | "name": "一些工具",
20 | "icon": "brightness_7",
21 | "submenu": [
22 | {
23 | "name": "图表",
24 | "icon": "equalizer",
25 | "link": "/charts"
26 | },
27 | {
28 | "name": "地图",
29 | "icon": "place",
30 | "link": "/amap"
31 | },
32 | {
33 | "name": "日程安排",
34 | "icon": "date_range",
35 | "link": "/calendar"
36 | },
37 | {
38 | "name": "弹出框",
39 | "icon": "sms",
40 | "link": "/alert"
41 | },
42 | {
43 | "name": "树结构",
44 | "icon": "device_hub",
45 | "link": "/tree"
46 | },
47 | {
48 | "name": "流程图",
49 | "icon": "widgets",
50 | "link": "/jsplumb"
51 | },
52 | {
53 | "name": "文本编辑器",
54 | "icon": "mode_edit",
55 | "link": "/ckeditor"
56 | }
57 | ]
58 | }
59 | ]
--------------------------------------------------------------------------------
/src/assets/mock-data/person.json:
--------------------------------------------------------------------------------
1 | [
2 | { "id": "1", "name": "叶修", "sex": "男", "team": "兴欣", "account": "君莫笑", "role": "散人", "position": "队长" },
3 | { "id": "2", "name": "苏沐橙", "sex": "女", "team": "兴欣", "account": "风梳烟沐", "role": "枪炮师", "position": "队员" },
4 | { "id": "3", "name": "方锐", "sex": "男", "team": "兴欣", "account": "海无量", "role": "气功师", "position": "队员" },
5 | { "id": "4", "name": "叶修", "sex": "男", "team": "兴欣", "account": "君莫笑", "role": "散人", "position": "队长" },
6 | { "id": "5", "name": "苏沐橙", "sex": "女", "team": "兴欣", "account": "风梳烟沐", "role": "枪炮师", "position": "队员" },
7 | { "id": "6", "name": "方锐", "sex": "男", "team": "兴欣", "account": "海无量", "role": "气功师", "position": "队员" },
8 | { "id": "7", "name": "叶修", "sex": "男", "team": "兴欣", "account": "君莫笑", "role": "散人", "position": "队长" },
9 | { "id": "8", "name": "苏沐橙", "sex": "女", "team": "兴欣", "account": "风梳烟沐", "role": "枪炮师", "position": "队员" }
10 | ]
--------------------------------------------------------------------------------
/src/assets/mock-data/user-login.json:
--------------------------------------------------------------------------------
1 | {
2 | "userId": "1",
3 | "userName": "Admin",
4 | "token": "fake-token"
5 | }
--------------------------------------------------------------------------------
/src/assets/mock-data/user-register.json:
--------------------------------------------------------------------------------
1 | {
2 | "id": 1,
3 | "username": "Admin",
4 | "email": "admin@gmail.com",
5 | "token": "fake-token"
6 | }
--------------------------------------------------------------------------------
/src/document/0.1.0_alpha.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/document/0.1.0_alpha.gif
--------------------------------------------------------------------------------
/src/environments/environment.prod.ts:
--------------------------------------------------------------------------------
1 | export const environment = {
2 | production: true
3 | };
4 |
--------------------------------------------------------------------------------
/src/environments/environment.ts:
--------------------------------------------------------------------------------
1 | // The file contents for the current environment will overwrite these during build.
2 | // The build system defaults to the dev environment which uses `environment.ts`, but if you do
3 | // `ng build --env=prod` then `environment.prod.ts` will be used instead.
4 | // The list of which env maps to which file can be found in `.angular-cli.json`.
5 |
6 | export const environment = {
7 | production: false
8 | };
9 |
--------------------------------------------------------------------------------
/src/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/weihomechen/angular4-admin-front/39f53539df6fb18d3665ef634d9f7b7abfca5bcf/src/favicon.ico
--------------------------------------------------------------------------------
/src/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
Angular4Admin
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/src/main.ts:
--------------------------------------------------------------------------------
1 | import { enableProdMode } from '@angular/core';
2 | import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3 |
4 | import { AppModule } from './app/app.module';
5 | import { environment } from './environments/environment';
6 |
7 | if (environment.production) {
8 | enableProdMode();
9 | }
10 |
11 | platformBrowserDynamic().bootstrapModule(AppModule);
12 |
--------------------------------------------------------------------------------
/src/polyfills.ts:
--------------------------------------------------------------------------------
1 | /**
2 | * This file includes polyfills needed by Angular and is loaded before the app.
3 | * You can add your own extra polyfills to this file.
4 | *
5 | * This file is divided into 2 sections:
6 | * 1. Browser polyfills. These are applied before loading ZoneJS and are sorted by browsers.
7 | * 2. Application imports. Files imported after ZoneJS that should be loaded before your main
8 | * file.
9 | *
10 | * The current setup is for so-called "evergreen" browsers; the last versions of browsers that
11 | * automatically update themselves. This includes Safari >= 10, Chrome >= 55 (including Opera),
12 | * Edge >= 13 on the desktop, and iOS 10 and Chrome on mobile.
13 | *
14 | * Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
15 | */
16 |
17 | /***************************************************************************************************
18 | * BROWSER POLYFILLS
19 | */
20 |
21 | /** IE9, IE10 and IE11 requires all of the following polyfills. **/
22 | // import 'core-js/es6/symbol';
23 | // import 'core-js/es6/object';
24 | // import 'core-js/es6/function';
25 | // import 'core-js/es6/parse-int';
26 | // import 'core-js/es6/parse-float';
27 | // import 'core-js/es6/number';
28 | // import 'core-js/es6/math';
29 | // import 'core-js/es6/string';
30 | // import 'core-js/es6/date';
31 | // import 'core-js/es6/array';
32 | // import 'core-js/es6/regexp';
33 | // import 'core-js/es6/map';
34 | // import 'core-js/es6/set';
35 |
36 | /** IE10 and IE11 requires the following for NgClass support on SVG elements */
37 | // import 'classlist.js'; // Run `npm install --save classlist.js`.
38 |
39 | /** IE10 and IE11 requires the following to support `@angular/animation`. */
40 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
41 |
42 |
43 | /** Evergreen browsers require these. **/
44 | import 'core-js/es6/reflect';
45 | import 'core-js/es7/reflect';
46 |
47 |
48 | /** ALL Firefox browsers require the following to support `@angular/animation`. **/
49 | // import 'web-animations-js'; // Run `npm install --save web-animations-js`.
50 |
51 |
52 |
53 | /***************************************************************************************************
54 | * Zone JS is required by Angular itself.
55 | */
56 | import 'zone.js/dist/zone'; // Included with Angular CLI.
57 |
58 |
59 |
60 | /***************************************************************************************************
61 | * APPLICATION IMPORTS
62 | */
63 |
64 | /**
65 | * Date, currency, decimal and percent pipes.
66 | * Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
67 | */
68 | // import 'intl'; // Run `npm install --save intl`.
69 | /**
70 | * Need to import at least one locale-data with intl.
71 | */
72 | // import 'intl/locale-data/jsonp/en';
73 |
--------------------------------------------------------------------------------
/src/test.ts:
--------------------------------------------------------------------------------
1 | // This file is required by karma.conf.js and loads recursively all the .spec and framework files
2 |
3 | import 'zone.js/dist/long-stack-trace-zone';
4 | import 'zone.js/dist/proxy.js';
5 | import 'zone.js/dist/sync-test';
6 | import 'zone.js/dist/jasmine-patch';
7 | import 'zone.js/dist/async-test';
8 | import 'zone.js/dist/fake-async-test';
9 | import { getTestBed } from '@angular/core/testing';
10 | import {
11 | BrowserDynamicTestingModule,
12 | platformBrowserDynamicTesting
13 | } from '@angular/platform-browser-dynamic/testing';
14 |
15 | // Unfortunately there's no typing for the `__karma__` variable. Just declare it as any.
16 | declare var __karma__: any;
17 | declare var require: any;
18 |
19 | // Prevent Karma from running prematurely.
20 | __karma__.loaded = function () {};
21 |
22 | // First, initialize the Angular testing environment.
23 | getTestBed().initTestEnvironment(
24 | BrowserDynamicTestingModule,
25 | platformBrowserDynamicTesting()
26 | );
27 | // Then we find all the tests.
28 | const context = require.context('./', true, /\.spec\.ts$/);
29 | // And load the modules.
30 | context.keys().map(context);
31 | // Finally, start Karma to run the tests.
32 | __karma__.start();
33 |
--------------------------------------------------------------------------------
/src/tsconfig.app.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../tsconfig.json",
3 | "compilerOptions": {
4 | "outDir": "../out-tsc/app",
5 | "module": "es2015",
6 | "baseUrl": "",
7 | "types": []
8 | },
9 | "exclude": [
10 | "test.ts",
11 | "**/*.spec.ts"
12 | ]
13 | }
14 |
--------------------------------------------------------------------------------
/src/tsconfig.spec.json:
--------------------------------------------------------------------------------
1 | {
2 | "extends": "../tsconfig.json",
3 | "compilerOptions": {
4 | "outDir": "../out-tsc/spec",
5 | "module": "commonjs",
6 | "target": "es5",
7 | "baseUrl": "",
8 | "types": [
9 | "jasmine",
10 | "node"
11 | ]
12 | },
13 | "files": [
14 | "test.ts"
15 | ],
16 | "include": [
17 | "**/*.spec.ts",
18 | "**/*.d.ts"
19 | ]
20 | }
21 |
--------------------------------------------------------------------------------
/src/typings.d.ts:
--------------------------------------------------------------------------------
1 | /* SystemJS module definition */
2 | declare var module: NodeModule;
3 | interface NodeModule {
4 | id: string;
5 | }
6 |
--------------------------------------------------------------------------------
/tsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compileOnSave": false,
3 | "compilerOptions": {
4 | "outDir": "./dist/out-tsc",
5 | "baseUrl": "src",
6 | "sourceMap": true,
7 | "declaration": false,
8 | "moduleResolution": "node",
9 | "emitDecoratorMetadata": true,
10 | "experimentalDecorators": true,
11 | "target": "es5",
12 | "typeRoots": [
13 | "node_modules/@types"
14 | ],
15 | "lib": [
16 | "es2016",
17 | "dom"
18 | ]
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/tsd.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "v4",
3 | "repo": "borisyankov/DefinitelyTyped",
4 | "ref": "master",
5 | "path": "typings",
6 | "bundle": "typings/tsd.d.ts",
7 | "installed": {}
8 | }
9 |
--------------------------------------------------------------------------------