├── README.md ├── app ├── admin │ ├── controller │ │ ├── BaseController.php │ │ ├── BasePage.php │ │ ├── BaseZoom.php │ │ ├── BlogController.php │ │ ├── IndexController.php │ │ ├── UserController.php │ │ └── ZoomController.php │ ├── model │ │ ├── BaseModel.php │ │ ├── DetailsModel.php │ │ └── UserModel.php │ └── view │ │ ├── blog │ │ └── bloglist.html │ │ ├── index │ │ └── index.html │ │ └── user │ │ ├── changepwd.html │ │ └── userinfo.html └── index │ ├── controller │ ├── ArticleController.php │ ├── BaseController.php │ ├── BasePage.php │ ├── ContactController.php │ ├── GalleryController.php │ ├── IndexController.php │ └── UserController.php │ ├── model │ ├── BaseModel.php │ ├── DetailsModel.php │ └── UserModel.php │ └── view │ ├── article │ ├── newblog.html │ ├── newblog2.html │ └── single.html │ ├── contact │ └── contact.html │ ├── gallery │ └── gallery.html │ ├── index │ └── index.html │ ├── news.php │ ├── notice.html │ └── user │ ├── login.html │ └── registration.html ├── boot ├── Psr4Autoload.php └── Router.php ├── cache ├── admin │ ├── .php │ ├── blog │ │ └── bloglist_html.php │ ├── index │ │ └── index_html.php │ └── user │ │ ├── changepwd_html.php │ │ └── userinfo_html.php ├── database │ ├── myblog_details.php │ └── myblog_user.php └── index │ ├── article │ ├── newblog2_html.php │ ├── newblog_html.php │ └── single_html.php │ ├── contact │ └── contact_html.php │ ├── gallery │ └── gallery_html.php │ ├── index │ └── index_html.php │ └── user │ ├── login_html.php │ └── registration_html.php ├── config ├── database.php └── namespace.php ├── index.php ├── public ├── ckeditor │ ├── CHANGES.html │ ├── CHANGES.md │ ├── INSTALL.html │ ├── LICENSE.html │ ├── LICENSE.md │ ├── README.md │ ├── _samples │ │ ├── adobeair │ │ │ ├── application.xml │ │ │ ├── run.bat │ │ │ ├── run.sh │ │ │ └── sample.html │ │ ├── ajax.html │ │ ├── api.html │ │ ├── api_dialog.html │ │ ├── api_dialog │ │ │ └── my_dialog.js │ │ ├── asp │ │ │ ├── advanced.asp │ │ │ ├── events.asp │ │ │ ├── index.html │ │ │ ├── replace.asp │ │ │ ├── replaceall.asp │ │ │ ├── sample_posteddata.asp │ │ │ └── standalone.asp │ │ ├── assets │ │ │ ├── _posteddata.php │ │ │ ├── output_for_flash.fla │ │ │ ├── output_for_flash.swf │ │ │ ├── output_xhtml.css │ │ │ ├── parsesample.css │ │ │ └── swfobject.js │ │ ├── autogrow.html │ │ ├── bbcode.html │ │ ├── devtools.html │ │ ├── divreplace.html │ │ ├── enterkey.html │ │ ├── fullpage.html │ │ ├── index.html │ │ ├── jqueryadapter.html │ │ ├── output_for_flash.html │ │ ├── output_html.html │ │ ├── output_xhtml.html │ │ ├── php │ │ │ ├── advanced.php │ │ │ ├── events.php │ │ │ ├── index.html │ │ │ ├── replace.php │ │ │ ├── replaceall.php │ │ │ └── standalone.php │ │ ├── placeholder.html │ │ ├── readonly.html │ │ ├── replacebyclass.html │ │ ├── replacebycode.html │ │ ├── sample_posteddata.php │ │ ├── sharedspaces.html │ │ ├── skins.html │ │ ├── stylesheetparser.html │ │ ├── tableresize.html │ │ ├── ui_color.html │ │ └── ui_languages.html │ ├── _source │ │ ├── adapters │ │ │ └── jquery.js │ │ ├── core │ │ │ ├── _bootstrap.js │ │ │ ├── ckeditor.js │ │ │ ├── ckeditor_base.js │ │ │ ├── ckeditor_basic.js │ │ │ ├── command.js │ │ │ ├── commanddefinition.js │ │ │ ├── config.js │ │ │ ├── dataprocessor.js │ │ │ ├── dom.js │ │ │ ├── dom │ │ │ │ ├── comment.js │ │ │ │ ├── document.js │ │ │ │ ├── documentfragment.js │ │ │ │ ├── domobject.js │ │ │ │ ├── element.js │ │ │ │ ├── elementpath.js │ │ │ │ ├── event.js │ │ │ │ ├── node.js │ │ │ │ ├── nodelist.js │ │ │ │ ├── range.js │ │ │ │ ├── rangelist.js │ │ │ │ ├── text.js │ │ │ │ ├── walker.js │ │ │ │ └── window.js │ │ │ ├── dtd.js │ │ │ ├── editor.js │ │ │ ├── editor_basic.js │ │ │ ├── env.js │ │ │ ├── event.js │ │ │ ├── eventInfo.js │ │ │ ├── focusmanager.js │ │ │ ├── htmlparser.js │ │ │ ├── htmlparser │ │ │ │ ├── basicwriter.js │ │ │ │ ├── cdata.js │ │ │ │ ├── comment.js │ │ │ │ ├── element.js │ │ │ │ ├── filter.js │ │ │ │ ├── fragment.js │ │ │ │ └── text.js │ │ │ ├── lang.js │ │ │ ├── loader.js │ │ │ ├── plugindefinition.js │ │ │ ├── plugins.js │ │ │ ├── resourcemanager.js │ │ │ ├── scriptloader.js │ │ │ ├── skins.js │ │ │ ├── themes.js │ │ │ ├── tools.js │ │ │ └── ui.js │ │ ├── lang │ │ │ ├── _languages.js │ │ │ ├── _translationstatus.txt │ │ │ ├── af.js │ │ │ ├── ar.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ ├── dialogs │ │ │ │ │ └── a11yhelp.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ └── plugin.js │ │ │ ├── about │ │ │ │ ├── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── plugin.js │ │ │ ├── adobeair │ │ │ │ └── plugin.js │ │ │ ├── ajax │ │ │ │ └── plugin.js │ │ │ ├── autogrow │ │ │ │ └── plugin.js │ │ │ ├── basicstyles │ │ │ │ └── plugin.js │ │ │ ├── bbcode │ │ │ │ └── plugin.js │ │ │ ├── bidi │ │ │ │ └── plugin.js │ │ │ ├── blockquote │ │ │ │ └── plugin.js │ │ │ ├── button │ │ │ │ └── plugin.js │ │ │ ├── clipboard │ │ │ │ ├── dialogs │ │ │ │ │ └── paste.js │ │ │ │ └── plugin.js │ │ │ ├── colorbutton │ │ │ │ └── plugin.js │ │ │ ├── colordialog │ │ │ │ ├── dialogs │ │ │ │ │ └── colordialog.js │ │ │ │ └── plugin.js │ │ │ ├── contextmenu │ │ │ │ └── plugin.js │ │ │ ├── devtools │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ └── plugin.js │ │ │ ├── dialog │ │ │ │ ├── dialogDefinition.js │ │ │ │ └── plugin.js │ │ │ ├── dialogadvtab │ │ │ │ └── plugin.js │ │ │ ├── dialogui │ │ │ │ └── plugin.js │ │ │ ├── div │ │ │ │ ├── dialogs │ │ │ │ │ └── div.js │ │ │ │ └── plugin.js │ │ │ ├── docprops │ │ │ │ ├── dialogs │ │ │ │ │ └── docprops.js │ │ │ │ └── plugin.js │ │ │ ├── domiterator │ │ │ │ └── plugin.js │ │ │ ├── editingblock │ │ │ │ └── plugin.js │ │ │ ├── elementspath │ │ │ │ └── plugin.js │ │ │ ├── enterkey │ │ │ │ └── plugin.js │ │ │ ├── entities │ │ │ │ └── plugin.js │ │ │ ├── fakeobjects │ │ │ │ └── plugin.js │ │ │ ├── filebrowser │ │ │ │ └── plugin.js │ │ │ ├── find │ │ │ │ ├── dialogs │ │ │ │ │ └── find.js │ │ │ │ └── plugin.js │ │ │ ├── flash │ │ │ │ ├── dialogs │ │ │ │ │ └── flash.js │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ └── plugin.js │ │ │ ├── floatpanel │ │ │ │ └── plugin.js │ │ │ ├── font │ │ │ │ └── plugin.js │ │ │ ├── format │ │ │ │ └── plugin.js │ │ │ ├── forms │ │ │ │ ├── dialogs │ │ │ │ │ ├── button.js │ │ │ │ │ ├── checkbox.js │ │ │ │ │ ├── form.js │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ ├── radio.js │ │ │ │ │ ├── select.js │ │ │ │ │ ├── textarea.js │ │ │ │ │ └── textfield.js │ │ │ │ ├── images │ │ │ │ │ └── hiddenfield.gif │ │ │ │ └── plugin.js │ │ │ ├── horizontalrule │ │ │ │ └── plugin.js │ │ │ ├── htmldataprocessor │ │ │ │ └── plugin.js │ │ │ ├── htmlwriter │ │ │ │ └── plugin.js │ │ │ ├── iframe │ │ │ │ ├── dialogs │ │ │ │ │ └── iframe.js │ │ │ │ ├── images │ │ │ │ │ └── placeholder.png │ │ │ │ └── plugin.js │ │ │ ├── iframedialog │ │ │ │ └── plugin.js │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── plugin.js │ │ │ ├── indent │ │ │ │ └── plugin.js │ │ │ ├── justify │ │ │ │ └── plugin.js │ │ │ ├── keystrokes │ │ │ │ └── plugin.js │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ ├── images │ │ │ │ │ └── anchor.gif │ │ │ │ └── plugin.js │ │ │ ├── list │ │ │ │ └── plugin.js │ │ │ ├── listblock │ │ │ │ └── plugin.js │ │ │ ├── liststyle │ │ │ │ ├── dialogs │ │ │ │ │ └── liststyle.js │ │ │ │ └── plugin.js │ │ │ ├── maximize │ │ │ │ └── plugin.js │ │ │ ├── menu │ │ │ │ └── plugin.js │ │ │ ├── menubutton │ │ │ │ └── plugin.js │ │ │ ├── newpage │ │ │ │ └── plugin.js │ │ │ ├── pagebreak │ │ │ │ ├── images │ │ │ │ │ └── pagebreak.gif │ │ │ │ └── plugin.js │ │ │ ├── panel │ │ │ │ └── plugin.js │ │ │ ├── panelbutton │ │ │ │ └── plugin.js │ │ │ ├── pastefromword │ │ │ │ ├── filter │ │ │ │ │ └── default.js │ │ │ │ └── plugin.js │ │ │ ├── pastetext │ │ │ │ ├── dialogs │ │ │ │ │ └── pastetext.js │ │ │ │ └── plugin.js │ │ │ ├── placeholder │ │ │ │ ├── dialogs │ │ │ │ │ └── placeholder.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── placeholder.gif │ │ │ │ └── plugin.js │ │ │ ├── popup │ │ │ │ └── plugin.js │ │ │ ├── preview │ │ │ │ └── plugin.js │ │ │ ├── print │ │ │ │ └── plugin.js │ │ │ ├── removeformat │ │ │ │ └── plugin.js │ │ │ ├── resize │ │ │ │ └── plugin.js │ │ │ ├── richcombo │ │ │ │ └── plugin.js │ │ │ ├── save │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ │ └── plugin.js │ │ │ ├── selection │ │ │ │ └── plugin.js │ │ │ ├── showblocks │ │ │ │ ├── images │ │ │ │ │ ├── block_address.png │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ ├── block_div.png │ │ │ │ │ ├── block_h1.png │ │ │ │ │ ├── block_h2.png │ │ │ │ │ ├── block_h3.png │ │ │ │ │ ├── block_h4.png │ │ │ │ │ ├── block_h5.png │ │ │ │ │ ├── block_h6.png │ │ │ │ │ ├── block_p.png │ │ │ │ │ └── block_pre.png │ │ │ │ └── plugin.js │ │ │ ├── showborders │ │ │ │ └── plugin.js │ │ │ ├── smiley │ │ │ │ ├── dialogs │ │ │ │ │ └── smiley.js │ │ │ │ ├── images │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ ├── envelope.gif │ │ │ │ │ ├── heart.gif │ │ │ │ │ ├── kiss.gif │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ └── wink_smile.gif │ │ │ │ └── plugin.js │ │ │ ├── sourcearea │ │ │ │ └── plugin.js │ │ │ ├── specialchar │ │ │ │ ├── dialogs │ │ │ │ │ └── specialchar.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ └── zh-cn.js │ │ │ │ └── plugin.js │ │ │ ├── styles │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ └── default.js │ │ │ ├── stylescombo │ │ │ │ └── plugin.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── tab │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ ├── dialogs │ │ │ │ │ └── table.js │ │ │ │ └── plugin.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── tabletools │ │ │ │ ├── dialogs │ │ │ │ │ └── tableCell.js │ │ │ │ └── plugin.js │ │ │ ├── templates │ │ │ │ ├── dialogs │ │ │ │ │ └── templates.js │ │ │ │ ├── plugin.js │ │ │ │ └── templates │ │ │ │ │ ├── default.js │ │ │ │ │ └── images │ │ │ │ │ ├── template1.gif │ │ │ │ │ ├── template2.gif │ │ │ │ │ └── template3.gif │ │ │ ├── toolbar │ │ │ │ └── plugin.js │ │ │ ├── uicolor │ │ │ │ ├── dialogs │ │ │ │ │ └── uicolor.js │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ ├── plugin.js │ │ │ │ ├── uicolor.gif │ │ │ │ └── yui │ │ │ │ │ ├── assets │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ └── yui.css │ │ │ │ │ └── yui.js │ │ │ ├── undo │ │ │ │ └── plugin.js │ │ │ ├── wsc │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ └── wsc.js │ │ │ │ └── plugin.js │ │ │ ├── wysiwygarea │ │ │ │ └── plugin.js │ │ │ └── xml │ │ │ │ └── plugin.js │ │ ├── skins │ │ │ ├── kama │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── elementspath.css │ │ │ │ ├── icons.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ ├── sprites_ie6.png │ │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── mainui.css │ │ │ │ ├── menu.css │ │ │ │ ├── panel.css │ │ │ │ ├── presets.css │ │ │ │ ├── reset.css │ │ │ │ ├── richcombo.css │ │ │ │ ├── skin.js │ │ │ │ ├── templates.css │ │ │ │ └── toolbar.css │ │ │ ├── office2003 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── elementspath.css │ │ │ │ ├── icons.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ │ ├── dialog_sides.gif │ │ │ │ │ ├── dialog_sides.png │ │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ │ ├── mini.gif │ │ │ │ │ ├── noimage.png │ │ │ │ │ ├── sprites.png │ │ │ │ │ └── sprites_ie6.png │ │ │ │ ├── mainui.css │ │ │ │ ├── menu.css │ │ │ │ ├── panel.css │ │ │ │ ├── presets.css │ │ │ │ ├── reset.css │ │ │ │ ├── richcombo.css │ │ │ │ ├── skin.js │ │ │ │ ├── templates.css │ │ │ │ └── toolbar.css │ │ │ └── v2 │ │ │ │ ├── dialog.css │ │ │ │ ├── editor.css │ │ │ │ ├── elementspath.css │ │ │ │ ├── icons.css │ │ │ │ ├── icons.png │ │ │ │ ├── icons_rtl.png │ │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ │ ├── mainui.css │ │ │ │ ├── menu.css │ │ │ │ ├── panel.css │ │ │ │ ├── presets.css │ │ │ │ ├── reset.css │ │ │ │ ├── richcombo.css │ │ │ │ ├── skin.js │ │ │ │ ├── templates.css │ │ │ │ └── toolbar.css │ │ └── themes │ │ │ └── default │ │ │ └── theme.js │ ├── adapters │ │ └── jquery.js │ ├── build-config.js │ ├── ckeditor.asp │ ├── ckeditor.js │ ├── ckeditor.pack │ ├── ckeditor.php │ ├── ckeditor_basic.js │ ├── ckeditor_basic_source.js │ ├── ckeditor_php4.php │ ├── ckeditor_php5.php │ ├── ckeditor_source.js │ ├── config.js │ ├── contents.css │ ├── images │ │ └── spacer.gif │ ├── lang │ │ ├── _languages.js │ │ ├── _translationstatus.txt │ │ ├── af.js │ │ ├── ar.js │ │ ├── az.js │ │ ├── bg.js │ │ ├── bn.js │ │ ├── bs.js │ │ ├── ca.js │ │ ├── cs.js │ │ ├── cy.js │ │ ├── da.js │ │ ├── de-ch.js │ │ ├── de.js │ │ ├── el.js │ │ ├── en-au.js │ │ ├── en-ca.js │ │ ├── en-gb.js │ │ ├── en.js │ │ ├── eo.js │ │ ├── es.js │ │ ├── et.js │ │ ├── eu.js │ │ ├── fa.js │ │ ├── fi.js │ │ ├── fo.js │ │ ├── fr-ca.js │ │ ├── fr.js │ │ ├── gl.js │ │ ├── gu.js │ │ ├── he.js │ │ ├── hi.js │ │ ├── hr.js │ │ ├── hu.js │ │ ├── id.js │ │ ├── is.js │ │ ├── it.js │ │ ├── ja.js │ │ ├── ka.js │ │ ├── km.js │ │ ├── ko.js │ │ ├── ku.js │ │ ├── lt.js │ │ ├── lv.js │ │ ├── mk.js │ │ ├── mn.js │ │ ├── ms.js │ │ ├── nb.js │ │ ├── nl.js │ │ ├── no.js │ │ ├── oc.js │ │ ├── pl.js │ │ ├── pt-br.js │ │ ├── pt.js │ │ ├── ro.js │ │ ├── ru.js │ │ ├── si.js │ │ ├── sk.js │ │ ├── sl.js │ │ ├── sq.js │ │ ├── sr-latn.js │ │ ├── sr.js │ │ ├── sv.js │ │ ├── th.js │ │ ├── tr.js │ │ ├── tt.js │ │ ├── ug.js │ │ ├── uk.js │ │ ├── vi.js │ │ ├── zh-cn.js │ │ └── zh.js │ ├── plugins │ │ ├── a11yhelp │ │ │ ├── dialogs │ │ │ │ ├── a11yhelp.js │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── it.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── adobeair │ │ │ └── plugin.js │ │ ├── ajax │ │ │ └── plugin.js │ │ ├── autogrow │ │ │ └── plugin.js │ │ ├── bbcode │ │ │ └── plugin.js │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── colordialog │ │ │ └── dialogs │ │ │ │ └── colordialog.js │ │ ├── devtools │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ │ └── plugin.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ └── dialogs │ │ │ │ └── div.js │ │ ├── docprops │ │ │ ├── dialogs │ │ │ │ └── docprops.js │ │ │ └── plugin.js │ │ ├── find │ │ │ └── dialogs │ │ │ │ └── find.js │ │ ├── flash │ │ │ ├── dialogs │ │ │ │ └── flash.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── forms │ │ │ ├── dialogs │ │ │ │ ├── button.js │ │ │ │ ├── checkbox.js │ │ │ │ ├── form.js │ │ │ │ ├── hiddenfield.js │ │ │ │ ├── radio.js │ │ │ │ ├── select.js │ │ │ │ ├── textarea.js │ │ │ │ └── textfield.js │ │ │ └── images │ │ │ │ └── hiddenfield.gif │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── iframe │ │ │ ├── dialogs │ │ │ │ └── iframe.js │ │ │ └── images │ │ │ │ └── placeholder.png │ │ ├── iframedialog │ │ │ └── plugin.js │ │ ├── image │ │ │ ├── dialogs │ │ │ │ └── image.js │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── link │ │ │ ├── dialogs │ │ │ │ ├── anchor.js │ │ │ │ └── link.js │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ └── anchor.png │ │ ├── liststyle │ │ │ └── dialogs │ │ │ │ └── liststyle.js │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── hidpi │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ │ │ ├── icon-rtl.png │ │ │ │ └── icon.png │ │ ├── pagebreak │ │ │ └── images │ │ │ │ └── pagebreak.gif │ │ ├── pastefromword │ │ │ └── filter │ │ │ │ └── default.js │ │ ├── pastetext │ │ │ └── dialogs │ │ │ │ └── pastetext.js │ │ ├── placeholder │ │ │ ├── dialogs │ │ │ │ └── placeholder.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ │ ├── placeholder.gif │ │ │ └── plugin.js │ │ ├── scayt │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── options.js │ │ │ │ └── toolbar.css │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── scayt.css │ │ ├── showblocks │ │ │ └── images │ │ │ │ ├── block_address.png │ │ │ │ ├── block_blockquote.png │ │ │ │ ├── block_div.png │ │ │ │ ├── block_h1.png │ │ │ │ ├── block_h2.png │ │ │ │ ├── block_h3.png │ │ │ │ ├── block_h4.png │ │ │ │ ├── block_h5.png │ │ │ │ ├── block_h6.png │ │ │ │ ├── block_p.png │ │ │ │ └── block_pre.png │ │ ├── smiley │ │ │ ├── dialogs │ │ │ │ └── smiley.js │ │ │ └── images │ │ │ │ ├── angel_smile.gif │ │ │ │ ├── angry_smile.gif │ │ │ │ ├── broken_heart.gif │ │ │ │ ├── confused_smile.gif │ │ │ │ ├── cry_smile.gif │ │ │ │ ├── devil_smile.gif │ │ │ │ ├── embaressed_smile.gif │ │ │ │ ├── envelope.gif │ │ │ │ ├── heart.gif │ │ │ │ ├── kiss.gif │ │ │ │ ├── lightbulb.gif │ │ │ │ ├── omg_smile.gif │ │ │ │ ├── regular_smile.gif │ │ │ │ ├── sad_smile.gif │ │ │ │ ├── shades_smile.gif │ │ │ │ ├── teeth_smile.gif │ │ │ │ ├── thumbs_down.gif │ │ │ │ ├── thumbs_up.gif │ │ │ │ ├── tounge_smile.gif │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ └── wink_smile.gif │ │ ├── specialchar │ │ │ ├── dialogs │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── az.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ └── specialchar.js │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── de.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ └── zh-cn.js │ │ ├── styles │ │ │ └── styles │ │ │ │ └── default.js │ │ ├── stylesheetparser │ │ │ └── plugin.js │ │ ├── table │ │ │ └── dialogs │ │ │ │ └── table.js │ │ ├── tableresize │ │ │ └── plugin.js │ │ ├── tabletools │ │ │ └── dialogs │ │ │ │ └── tableCell.js │ │ ├── templates │ │ │ ├── dialogs │ │ │ │ └── templates.js │ │ │ └── templates │ │ │ │ ├── default.js │ │ │ │ └── images │ │ │ │ ├── template1.gif │ │ │ │ ├── template2.gif │ │ │ │ └── template3.gif │ │ ├── uicolor │ │ │ ├── dialogs │ │ │ │ └── uicolor.js │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── bg.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── et.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hr.js │ │ │ │ ├── it.js │ │ │ │ ├── mk.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ └── zh-cn.js │ │ │ ├── plugin.js │ │ │ ├── uicolor.gif │ │ │ └── yui │ │ │ │ ├── assets │ │ │ │ ├── hue_bg.png │ │ │ │ ├── hue_thumb.png │ │ │ │ ├── picker_mask.png │ │ │ │ ├── picker_thumb.png │ │ │ │ └── yui.css │ │ │ │ └── yui.js │ │ ├── wsc │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ └── wsc.css │ │ └── xml │ │ │ └── plugin.js │ ├── sample.css │ ├── sample.js │ ├── samples │ │ ├── css │ │ │ └── samples.css │ │ ├── img │ │ │ ├── github-top.png │ │ │ ├── header-bg.png │ │ │ ├── header-separator.png │ │ │ ├── logo.png │ │ │ └── navigation-tip.png │ │ ├── index.html │ │ ├── js │ │ │ ├── sample.js │ │ │ └── sf.js │ │ ├── old │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── dialog │ │ │ │ ├── assets │ │ │ │ │ └── my_dialog.js │ │ │ │ └── dialog.html │ │ │ ├── divreplace.html │ │ │ ├── enterkey │ │ │ │ └── enterkey.html │ │ │ ├── htmlwriter │ │ │ │ ├── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ └── swfobject.js │ │ │ │ ├── outputforflash.html │ │ │ │ └── outputhtml.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── magicline │ │ │ │ └── magicline.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── toolbar │ │ │ │ └── toolbar.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ ├── wysiwygarea │ │ │ │ └── fullpage.html │ │ │ └── xhtmlstyle.html │ │ └── toolbarconfigurator │ │ │ ├── css │ │ │ └── fontello.css │ │ │ ├── font │ │ │ ├── LICENSE.txt │ │ │ ├── config.json │ │ │ ├── fontello.eot │ │ │ ├── fontello.svg │ │ │ ├── fontello.ttf │ │ │ └── fontello.woff │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── abstracttoolbarmodifier.js │ │ │ ├── fulltoolbareditor.js │ │ │ ├── toolbarmodifier.js │ │ │ └── toolbartextmodifier.js │ │ │ └── lib │ │ │ └── codemirror │ │ │ ├── LICENSE │ │ │ ├── codemirror.css │ │ │ ├── codemirror.js │ │ │ ├── javascript.js │ │ │ ├── neo.css │ │ │ ├── show-hint.css │ │ │ └── show-hint.js │ ├── skins │ │ ├── kama │ │ │ ├── dialog.css │ │ │ ├── editor.css │ │ │ ├── icons.png │ │ │ ├── icons_rtl.png │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ ├── sprites_ie6.png │ │ │ │ └── toolbar_start.gif │ │ │ ├── skin.js │ │ │ └── templates.css │ │ ├── moono-lisa │ │ │ ├── dialog.css │ │ │ ├── dialog_ie.css │ │ │ ├── dialog_ie8.css │ │ │ ├── dialog_iequirks.css │ │ │ ├── editor.css │ │ │ ├── editor_gecko.css │ │ │ ├── editor_ie.css │ │ │ ├── editor_ie8.css │ │ │ ├── editor_iequirks.css │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ ├── lock-open.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── spinner.gif │ │ │ └── readme.md │ │ ├── office2003 │ │ │ ├── dialog.css │ │ │ ├── editor.css │ │ │ ├── icons.png │ │ │ ├── icons_rtl.png │ │ │ ├── images │ │ │ │ ├── dialog_sides.gif │ │ │ │ ├── dialog_sides.png │ │ │ │ ├── dialog_sides_rtl.png │ │ │ │ ├── mini.gif │ │ │ │ ├── noimage.png │ │ │ │ ├── sprites.png │ │ │ │ └── sprites_ie6.png │ │ │ ├── skin.js │ │ │ └── templates.css │ │ └── v2 │ │ │ ├── dialog.css │ │ │ ├── editor.css │ │ │ ├── icons.png │ │ │ ├── icons_rtl.png │ │ │ ├── images │ │ │ ├── dialog_sides.gif │ │ │ ├── dialog_sides.png │ │ │ ├── dialog_sides_rtl.png │ │ │ ├── mini.gif │ │ │ ├── noimage.png │ │ │ ├── sprites.png │ │ │ ├── sprites_ie6.png │ │ │ └── toolbar_start.gif │ │ │ ├── skin.js │ │ │ └── templates.css │ ├── styles.js │ └── themes │ │ └── default │ │ └── theme.js ├── css │ ├── admin.css │ ├── bootstrap.css │ ├── lightbox.css │ ├── newblog.css │ ├── pintuer.css │ └── style.css ├── fonts │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Regular.ttf │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── 1.jpg │ ├── 11.jpg │ ├── 2.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 594880e7ecae9.png │ ├── Bootstrapv335_jb51.rar │ ├── ab.jpg │ ├── arrow.png │ ├── bg.jpg │ ├── bmw1.jpg │ ├── bmw2.jpg │ ├── bmw3.jpg │ ├── bmw4.jpg │ ├── city.jpg │ ├── close.png │ ├── co.png │ ├── cross97.png │ ├── default.jpg │ ├── f1.jpg │ ├── f4.jpg │ ├── gen1.jpg │ ├── gen2.jpg │ ├── gen3.jpg │ ├── gen4.jpg │ ├── gen5.jpg │ ├── gen6.jpg │ ├── icons.png │ ├── icons2.png │ ├── img-sprite.png │ ├── kuaiji.jpg │ ├── move-top.png │ ├── nav.png │ ├── next.png │ ├── passcode.jpg │ ├── pic1.jpg │ ├── pic2.jpg │ ├── pic3.jpg │ ├── pic4.jpg │ ├── plus.png │ ├── prev.png │ ├── search 1.png │ ├── search.png │ ├── sin1.jpg │ ├── sin2.jpg │ ├── sprit-1.png │ ├── tmbg-white.png │ ├── y.jpg │ ├── yamaha1.jpg │ └── yamaha2.jpg ├── js │ ├── bootstrap.min.js │ ├── easing.js │ ├── easyResponsiveTabs.js │ ├── jquery.chocolat.js │ ├── jquery.js │ ├── jquery.magnific-popup.js │ ├── jquery.min.js │ ├── lightbox.js │ ├── modernizr.custom.js │ ├── move-top.js │ ├── owl.carousel.js │ ├── pintuer.js │ └── responsiveslides.min.js └── md │ ├── .gitignore │ ├── .jshintrc │ ├── BUGS.md │ ├── CHANGE.md │ ├── Gulpfile.js │ ├── LICENSE │ ├── README.md │ ├── bower.json │ ├── css │ ├── editormd.css │ ├── editormd.logo.css │ ├── editormd.logo.min.css │ ├── editormd.min.css │ ├── editormd.preview.css │ └── editormd.preview.min.css │ ├── docs │ ├── editormd.js.html │ ├── fonts │ │ ├── OpenSans-Bold-webfont.eot │ │ ├── OpenSans-Bold-webfont.svg │ │ ├── OpenSans-Bold-webfont.woff │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ ├── OpenSans-Italic-webfont.eot │ │ ├── OpenSans-Italic-webfont.svg │ │ ├── OpenSans-Italic-webfont.woff │ │ ├── OpenSans-Light-webfont.eot │ │ ├── OpenSans-Light-webfont.svg │ │ ├── OpenSans-Light-webfont.woff │ │ ├── OpenSans-LightItalic-webfont.eot │ │ ├── OpenSans-LightItalic-webfont.svg │ │ ├── OpenSans-LightItalic-webfont.woff │ │ ├── OpenSans-Regular-webfont.eot │ │ ├── OpenSans-Regular-webfont.svg │ │ └── OpenSans-Regular-webfont.woff │ ├── index.html │ ├── scripts │ │ ├── linenumber.js │ │ └── prettify │ │ │ ├── Apache-License-2.0.txt │ │ │ ├── lang-css.js │ │ │ └── prettify.js │ └── styles │ │ ├── jsdoc-default.css │ │ ├── prettify-jsdoc.css │ │ └── prettify-tomorrow.css │ ├── editormd.amd.js │ ├── editormd.amd.min.js │ ├── editormd.js │ ├── editormd.min.js │ ├── examples │ ├── @links.html │ ├── auto-height.html │ ├── change-mode.html │ ├── code-fold.html │ ├── css │ │ └── style.css │ ├── custom-keyboard-shortcuts.html │ ├── custom-toolbar.html │ ├── define-plugin.html │ ├── delay-renderer-preview.html │ ├── dynamic-create-editormd.html │ ├── emoji.html │ ├── extends.html │ ├── external-use.html │ ├── flowchart.html │ ├── form-get-value.html │ ├── full.html │ ├── goto-line.html │ ├── html-preview-markdown-to-html-custom-toc-container.html │ ├── html-preview-markdown-to-html.html │ ├── html-tags-decode.html │ ├── image-cross-domain-upload.html │ ├── image-upload.html │ ├── images │ │ ├── 4.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── editormd-screenshot.png │ ├── index.html │ ├── js │ │ ├── jquery.min.js │ │ ├── require.min.js │ │ ├── sea.js │ │ ├── seajs-main.js │ │ └── zepto.min.js │ ├── katex.html │ ├── manually-load-modules.html │ ├── multi-editormd.html │ ├── multi-languages.html │ ├── on-off.html │ ├── onchange.html │ ├── onfullscreen.html │ ├── onload.html │ ├── onpreviewing-onpreviewed.html │ ├── onresize.html │ ├── onscroll-onpreviewscroll.html │ ├── onwatch-onunwatch.html │ ├── page-break.html │ ├── php │ │ ├── cross-domain-upload.php │ │ ├── editormd.uploader.class.php │ │ ├── post.php │ │ ├── upload.php │ │ └── upload_callback.html │ ├── readonly.html │ ├── resettings.html │ ├── search-replace.html │ ├── sequence-diagram.html │ ├── set-get-replace-selection.html │ ├── simple.html │ ├── sync-scrolling.html │ ├── task-lists.html │ ├── test.md │ ├── themes.html │ ├── toc.html │ ├── toolbar-auto-fixed.html │ ├── use-requirejs.html │ ├── use-seajs.html │ └── use-zepto.html │ ├── fonts │ ├── FontAwesome.otf │ ├── editormd-logo.eot │ ├── editormd-logo.svg │ ├── editormd-logo.ttf │ ├── editormd-logo.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── images │ ├── loading.gif │ ├── loading@2x.gif │ ├── loading@3x.gif │ └── logos │ │ ├── editormd-favicon-16x16.ico │ │ ├── editormd-favicon-24x24.ico │ │ ├── editormd-favicon-32x32.ico │ │ ├── editormd-favicon-48x48.ico │ │ ├── editormd-favicon-64x64.ico │ │ ├── editormd-logo-114x114.png │ │ ├── editormd-logo-120x120.png │ │ ├── editormd-logo-144x144.png │ │ ├── editormd-logo-16x16.png │ │ ├── editormd-logo-180x180.png │ │ ├── editormd-logo-240x240.png │ │ ├── editormd-logo-24x24.png │ │ ├── editormd-logo-320x320.png │ │ ├── editormd-logo-32x32.png │ │ ├── editormd-logo-48x48.png │ │ ├── editormd-logo-57x57.png │ │ ├── editormd-logo-64x64.png │ │ ├── editormd-logo-72x72.png │ │ ├── editormd-logo-96x96.png │ │ └── vi.png │ ├── languages │ ├── en.js │ └── zh-tw.js │ ├── lib │ ├── codemirror │ │ ├── AUTHORS │ │ ├── LICENSE │ │ ├── README.md │ │ ├── addon │ │ │ ├── comment │ │ │ │ ├── comment.js │ │ │ │ └── continuecomment.js │ │ │ ├── dialog │ │ │ │ ├── dialog.css │ │ │ │ └── dialog.js │ │ │ ├── display │ │ │ │ ├── fullscreen.css │ │ │ │ ├── fullscreen.js │ │ │ │ ├── panel.js │ │ │ │ ├── placeholder.js │ │ │ │ └── rulers.js │ │ │ ├── edit │ │ │ │ ├── closebrackets.js │ │ │ │ ├── closetag.js │ │ │ │ ├── continuelist.js │ │ │ │ ├── matchbrackets.js │ │ │ │ ├── matchtags.js │ │ │ │ └── trailingspace.js │ │ │ ├── fold │ │ │ │ ├── brace-fold.js │ │ │ │ ├── comment-fold.js │ │ │ │ ├── foldcode.js │ │ │ │ ├── foldgutter.css │ │ │ │ ├── foldgutter.js │ │ │ │ ├── indent-fold.js │ │ │ │ ├── markdown-fold.js │ │ │ │ └── xml-fold.js │ │ │ ├── hint │ │ │ │ ├── anyword-hint.js │ │ │ │ ├── css-hint.js │ │ │ │ ├── html-hint.js │ │ │ │ ├── javascript-hint.js │ │ │ │ ├── show-hint.css │ │ │ │ ├── show-hint.js │ │ │ │ ├── sql-hint.js │ │ │ │ └── xml-hint.js │ │ │ ├── lint │ │ │ │ ├── coffeescript-lint.js │ │ │ │ ├── css-lint.js │ │ │ │ ├── javascript-lint.js │ │ │ │ ├── json-lint.js │ │ │ │ ├── lint.css │ │ │ │ ├── lint.js │ │ │ │ └── yaml-lint.js │ │ │ ├── merge │ │ │ │ ├── merge.css │ │ │ │ └── merge.js │ │ │ ├── mode │ │ │ │ ├── loadmode.js │ │ │ │ ├── multiplex.js │ │ │ │ ├── multiplex_test.js │ │ │ │ ├── overlay.js │ │ │ │ └── simple.js │ │ │ ├── runmode │ │ │ │ ├── colorize.js │ │ │ │ ├── runmode-standalone.js │ │ │ │ ├── runmode.js │ │ │ │ └── runmode.node.js │ │ │ ├── scroll │ │ │ │ ├── annotatescrollbar.js │ │ │ │ ├── scrollpastend.js │ │ │ │ ├── simplescrollbars.css │ │ │ │ └── simplescrollbars.js │ │ │ ├── search │ │ │ │ ├── match-highlighter.js │ │ │ │ ├── matchesonscrollbar.css │ │ │ │ ├── matchesonscrollbar.js │ │ │ │ ├── search.js │ │ │ │ └── searchcursor.js │ │ │ ├── selection │ │ │ │ ├── active-line.js │ │ │ │ ├── mark-selection.js │ │ │ │ └── selection-pointer.js │ │ │ ├── tern │ │ │ │ ├── tern.css │ │ │ │ ├── tern.js │ │ │ │ └── worker.js │ │ │ └── wrap │ │ │ │ └── hardwrap.js │ │ ├── addons.min.js │ │ ├── bower.json │ │ ├── codemirror.min.css │ │ ├── codemirror.min.js │ │ ├── lib │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── mode │ │ │ ├── apl │ │ │ │ ├── apl.js │ │ │ │ └── index.html │ │ │ ├── asterisk │ │ │ │ ├── asterisk.js │ │ │ │ └── index.html │ │ │ ├── clike │ │ │ │ ├── clike.js │ │ │ │ ├── index.html │ │ │ │ └── scala.html │ │ │ ├── clojure │ │ │ │ ├── clojure.js │ │ │ │ └── index.html │ │ │ ├── cobol │ │ │ │ ├── cobol.js │ │ │ │ └── index.html │ │ │ ├── coffeescript │ │ │ │ ├── coffeescript.js │ │ │ │ └── index.html │ │ │ ├── commonlisp │ │ │ │ ├── commonlisp.js │ │ │ │ └── index.html │ │ │ ├── css │ │ │ │ ├── css.js │ │ │ │ ├── index.html │ │ │ │ ├── less.html │ │ │ │ ├── less_test.js │ │ │ │ ├── scss.html │ │ │ │ ├── scss_test.js │ │ │ │ └── test.js │ │ │ ├── cypher │ │ │ │ ├── cypher.js │ │ │ │ └── index.html │ │ │ ├── d │ │ │ │ ├── d.js │ │ │ │ └── index.html │ │ │ ├── dart │ │ │ │ ├── dart.js │ │ │ │ └── index.html │ │ │ ├── diff │ │ │ │ ├── diff.js │ │ │ │ └── index.html │ │ │ ├── django │ │ │ │ ├── django.js │ │ │ │ └── index.html │ │ │ ├── dockerfile │ │ │ │ ├── dockerfile.js │ │ │ │ └── index.html │ │ │ ├── dtd │ │ │ │ ├── dtd.js │ │ │ │ └── index.html │ │ │ ├── dylan │ │ │ │ ├── dylan.js │ │ │ │ └── index.html │ │ │ ├── ebnf │ │ │ │ ├── ebnf.js │ │ │ │ └── index.html │ │ │ ├── ecl │ │ │ │ ├── ecl.js │ │ │ │ └── index.html │ │ │ ├── eiffel │ │ │ │ ├── eiffel.js │ │ │ │ └── index.html │ │ │ ├── erlang │ │ │ │ ├── erlang.js │ │ │ │ └── index.html │ │ │ ├── forth │ │ │ │ ├── forth.js │ │ │ │ └── index.html │ │ │ ├── fortran │ │ │ │ ├── fortran.js │ │ │ │ └── index.html │ │ │ ├── gas │ │ │ │ ├── gas.js │ │ │ │ └── index.html │ │ │ ├── gfm │ │ │ │ ├── gfm.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── gherkin │ │ │ │ ├── gherkin.js │ │ │ │ └── index.html │ │ │ ├── go │ │ │ │ ├── go.js │ │ │ │ └── index.html │ │ │ ├── groovy │ │ │ │ ├── groovy.js │ │ │ │ └── index.html │ │ │ ├── haml │ │ │ │ ├── haml.js │ │ │ │ ├── index.html │ │ │ │ └── test.js │ │ │ ├── haskell │ │ │ │ ├── haskell.js │ │ │ │ └── index.html │ │ │ ├── haxe │ │ │ │ ├── haxe.js │ │ │ │ └── index.html │ │ │ ├── htmlembedded │ │ │ │ ├── htmlembedded.js │ │ │ │ └── index.html │ │ │ ├── htmlmixed │ │ │ │ ├── htmlmixed.js │ │ │ │ └── index.html │ │ │ ├── http │ │ │ │ ├── http.js │ │ │ │ └── index.html │ │ │ ├── idl │ │ │ │ ├── idl.js │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── jade │ │ │ │ ├── index.html │ │ │ │ └── jade.js │ │ │ ├── javascript │ │ │ │ ├── index.html │ │ │ │ ├── javascript.js │ │ │ │ ├── json-ld.html │ │ │ │ ├── test.js │ │ │ │ └── typescript.html │ │ │ ├── jinja2 │ │ │ │ ├── index.html │ │ │ │ └── jinja2.js │ │ │ ├── julia │ │ │ │ ├── index.html │ │ │ │ └── julia.js │ │ │ ├── kotlin │ │ │ │ ├── index.html │ │ │ │ └── kotlin.js │ │ │ ├── livescript │ │ │ │ ├── index.html │ │ │ │ └── livescript.js │ │ │ ├── lua │ │ │ │ ├── index.html │ │ │ │ └── lua.js │ │ │ ├── markdown │ │ │ │ ├── index.html │ │ │ │ ├── markdown.js │ │ │ │ └── test.js │ │ │ ├── meta.js │ │ │ ├── mirc │ │ │ │ ├── index.html │ │ │ │ └── mirc.js │ │ │ ├── mllike │ │ │ │ ├── index.html │ │ │ │ └── mllike.js │ │ │ ├── modelica │ │ │ │ ├── index.html │ │ │ │ └── modelica.js │ │ │ ├── nginx │ │ │ │ ├── index.html │ │ │ │ └── nginx.js │ │ │ ├── ntriples │ │ │ │ ├── index.html │ │ │ │ └── ntriples.js │ │ │ ├── octave │ │ │ │ ├── index.html │ │ │ │ └── octave.js │ │ │ ├── pascal │ │ │ │ ├── index.html │ │ │ │ └── pascal.js │ │ │ ├── pegjs │ │ │ │ ├── index.html │ │ │ │ └── pegjs.js │ │ │ ├── perl │ │ │ │ ├── index.html │ │ │ │ └── perl.js │ │ │ ├── php │ │ │ │ ├── index.html │ │ │ │ ├── php.js │ │ │ │ └── test.js │ │ │ ├── pig │ │ │ │ ├── index.html │ │ │ │ └── pig.js │ │ │ ├── properties │ │ │ │ ├── index.html │ │ │ │ └── properties.js │ │ │ ├── puppet │ │ │ │ ├── index.html │ │ │ │ └── puppet.js │ │ │ ├── python │ │ │ │ ├── index.html │ │ │ │ └── python.js │ │ │ ├── q │ │ │ │ ├── index.html │ │ │ │ └── q.js │ │ │ ├── r │ │ │ │ ├── index.html │ │ │ │ └── r.js │ │ │ ├── rpm │ │ │ │ ├── changes │ │ │ │ │ └── index.html │ │ │ │ ├── index.html │ │ │ │ └── rpm.js │ │ │ ├── rst │ │ │ │ ├── index.html │ │ │ │ └── rst.js │ │ │ ├── ruby │ │ │ │ ├── index.html │ │ │ │ ├── ruby.js │ │ │ │ └── test.js │ │ │ ├── rust │ │ │ │ ├── index.html │ │ │ │ └── rust.js │ │ │ ├── sass │ │ │ │ ├── index.html │ │ │ │ └── sass.js │ │ │ ├── scheme │ │ │ │ ├── index.html │ │ │ │ └── scheme.js │ │ │ ├── shell │ │ │ │ ├── index.html │ │ │ │ ├── shell.js │ │ │ │ └── test.js │ │ │ ├── sieve │ │ │ │ ├── index.html │ │ │ │ └── sieve.js │ │ │ ├── slim │ │ │ │ ├── index.html │ │ │ │ ├── slim.js │ │ │ │ └── test.js │ │ │ ├── smalltalk │ │ │ │ ├── index.html │ │ │ │ └── smalltalk.js │ │ │ ├── smarty │ │ │ │ ├── index.html │ │ │ │ └── smarty.js │ │ │ ├── smartymixed │ │ │ │ ├── index.html │ │ │ │ └── smartymixed.js │ │ │ ├── solr │ │ │ │ ├── index.html │ │ │ │ └── solr.js │ │ │ ├── soy │ │ │ │ ├── index.html │ │ │ │ └── soy.js │ │ │ ├── sparql │ │ │ │ ├── index.html │ │ │ │ └── sparql.js │ │ │ ├── spreadsheet │ │ │ │ ├── index.html │ │ │ │ └── spreadsheet.js │ │ │ ├── sql │ │ │ │ ├── index.html │ │ │ │ └── sql.js │ │ │ ├── stex │ │ │ │ ├── index.html │ │ │ │ ├── stex.js │ │ │ │ └── test.js │ │ │ ├── stylus │ │ │ │ ├── index.html │ │ │ │ └── stylus.js │ │ │ ├── tcl │ │ │ │ ├── index.html │ │ │ │ └── tcl.js │ │ │ ├── textile │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── textile.js │ │ │ ├── tiddlywiki │ │ │ │ ├── index.html │ │ │ │ ├── tiddlywiki.css │ │ │ │ └── tiddlywiki.js │ │ │ ├── tiki │ │ │ │ ├── index.html │ │ │ │ ├── tiki.css │ │ │ │ └── tiki.js │ │ │ ├── toml │ │ │ │ ├── index.html │ │ │ │ └── toml.js │ │ │ ├── tornado │ │ │ │ ├── index.html │ │ │ │ └── tornado.js │ │ │ ├── turtle │ │ │ │ ├── index.html │ │ │ │ └── turtle.js │ │ │ ├── vb │ │ │ │ ├── index.html │ │ │ │ └── vb.js │ │ │ ├── vbscript │ │ │ │ ├── index.html │ │ │ │ └── vbscript.js │ │ │ ├── velocity │ │ │ │ ├── index.html │ │ │ │ └── velocity.js │ │ │ ├── verilog │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── verilog.js │ │ │ ├── xml │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xml.js │ │ │ ├── xquery │ │ │ │ ├── index.html │ │ │ │ ├── test.js │ │ │ │ └── xquery.js │ │ │ ├── yaml │ │ │ │ ├── index.html │ │ │ │ └── yaml.js │ │ │ └── z80 │ │ │ │ ├── index.html │ │ │ │ └── z80.js │ │ ├── modes.min.js │ │ ├── package.json │ │ └── theme │ │ │ ├── 3024-day.css │ │ │ ├── 3024-night.css │ │ │ ├── ambiance-mobile.css │ │ │ ├── ambiance.css │ │ │ ├── base16-dark.css │ │ │ ├── base16-light.css │ │ │ ├── blackboard.css │ │ │ ├── cobalt.css │ │ │ ├── colorforth.css │ │ │ ├── eclipse.css │ │ │ ├── elegant.css │ │ │ ├── erlang-dark.css │ │ │ ├── lesser-dark.css │ │ │ ├── mbo.css │ │ │ ├── mdn-like.css │ │ │ ├── midnight.css │ │ │ ├── monokai.css │ │ │ ├── neat.css │ │ │ ├── neo.css │ │ │ ├── night.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── pastel-on-dark.css │ │ │ ├── rubyblue.css │ │ │ ├── solarized.css │ │ │ ├── the-matrix.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── twilight.css │ │ │ ├── vibrant-ink.css │ │ │ ├── xq-dark.css │ │ │ ├── xq-light.css │ │ │ └── zenburn.css │ ├── flowchart.min.js │ ├── jquery.flowchart.min.js │ ├── marked.min.js │ ├── prettify.min.js │ ├── raphael.min.js │ ├── sequence-diagram.min.js │ └── underscore.min.js │ ├── package.json │ ├── plugins │ ├── code-block-dialog │ │ └── code-block-dialog.js │ ├── emoji-dialog │ │ ├── emoji-dialog.js │ │ └── emoji.json │ ├── goto-line-dialog │ │ └── goto-line-dialog.js │ ├── help-dialog │ │ ├── help-dialog.js │ │ └── help.md │ ├── html-entities-dialog │ │ ├── html-entities-dialog.js │ │ └── html-entities.json │ ├── image-dialog │ │ └── image-dialog.js │ ├── link-dialog │ │ └── link-dialog.js │ ├── plugin-template.js │ ├── preformatted-text-dialog │ │ └── preformatted-text-dialog.js │ ├── reference-link-dialog │ │ └── reference-link-dialog.js │ ├── table-dialog │ │ └── table-dialog.js │ └── test-plugin │ │ └── test-plugin.js │ ├── scss │ ├── editormd.codemirror.scss │ ├── editormd.dialog.scss │ ├── editormd.form.scss │ ├── editormd.grid.scss │ ├── editormd.logo.scss │ ├── editormd.menu.scss │ ├── editormd.preview.scss │ ├── editormd.preview.themes.scss │ ├── editormd.scss │ ├── editormd.tab.scss │ ├── editormd.themes.scss │ ├── font-awesome.scss │ ├── github-markdown.scss │ ├── lib │ │ ├── prefixes.scss │ │ └── variables.scss │ └── prettify.scss │ ├── src │ └── editormd.js │ └── tests │ ├── bootstrap-test.html │ ├── codemirror-searchbox-test.html │ ├── codemirror-test.html │ ├── css │ ├── bootstrap-theme.min.css │ └── bootstrap.min.css │ ├── js │ ├── bootstrap.min.js │ └── searchbox.js │ ├── katex-tests.html │ ├── marked-@at-test.html │ ├── marked-emoji-test.html │ ├── marked-heading-link-test.html │ ├── marked-todo-list-test.html │ └── qunit │ ├── qunit-1.16.0.css │ └── qunit-1.16.0.js ├── upload └── 2017 │ └── 06 │ ├── 19 │ └── 59477b5e996e4.jpg │ └── 20 │ └── 594880e7e8c68.jpg ├── vendor ├── alidayu │ ├── AlibabaAliqinFcSmsNumSendRequest.php │ ├── RequestCheckUtil.php │ ├── ResultSet.php │ └── TopClient.php └── cokiy │ └── framework │ └── src │ ├── Model.php │ ├── Template.php │ ├── Upload.php │ ├── page.php │ ├── verifyCode.php │ └── waterMark.php └── 数据库设计.xlsx /README.md: -------------------------------------------------------------------------------- 1 | # easy_mvc 2 | A simaple mvc 3 | -------------------------------------------------------------------------------- /app/admin/controller/BasePage.php: -------------------------------------------------------------------------------- 1 | details = new DetailsModel(); 12 | $totalCount = $this->details->countBlog(); 13 | parent::__construct($totalCount,5); 14 | } 15 | } -------------------------------------------------------------------------------- /app/admin/controller/BaseZoom.php: -------------------------------------------------------------------------------- 1 | var = new UserModel(); 12 | parent::_init(); 13 | } 14 | 15 | public function index() 16 | { 17 | $data = $this->var->showUser(6); 18 | $this->assign('data',$data); 19 | $this->display(); 20 | } 21 | } -------------------------------------------------------------------------------- /app/admin/controller/ZoomController.php: -------------------------------------------------------------------------------- 1 | ZoomController.php -------------------------------------------------------------------------------- /app/admin/model/BaseModel.php: -------------------------------------------------------------------------------- 1 | limit("$page,$countOfPage")->select(); 10 | } 11 | 12 | public function countBlog() 13 | { 14 | return count($this->select()); 15 | } 16 | 17 | public function deleteBorC($id) 18 | { 19 | return $this->where("id=$id")->delete(); 20 | } 21 | } -------------------------------------------------------------------------------- /app/admin/model/UserModel.php: -------------------------------------------------------------------------------- 1 | where("uid=$uid")->fields('username,picture,phone,qq,email')->select()[0]; 9 | } 10 | 11 | public function doChangeUser($uid,$picture,$phone,$qq,$email) 12 | { 13 | return $this->updatevalues(['picture'=>$picture,'phone'=>$phone,'qq'=>$qq,'email'=>$email])->where("uid=$uid")->update(); 14 | } 15 | } -------------------------------------------------------------------------------- /app/index/controller/BasePage.php: -------------------------------------------------------------------------------- 1 | details = new DetailsModel(); 12 | $totalPage = $this->details->countBlog(); 13 | parent::__construct($totalPage,2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/index/controller/GalleryController.php: -------------------------------------------------------------------------------- 1 | assign('nothing',$nothing); 10 | $this->display(); 11 | } 12 | } -------------------------------------------------------------------------------- /app/index/model/BaseModel.php: -------------------------------------------------------------------------------- 1 | maps = $config; 9 | spl_autoload_register([$this,'loadClass']); 10 | } 11 | 12 | protected function loadClass($className) 13 | { 14 | $arr = explode('\\',$className); 15 | $realClass = array_pop($arr); 16 | $namespace = implode('\\',$arr); 17 | $this->loadMap($namespace,$realClass); 18 | } 19 | 20 | protected function loadMap($namespace,$realClass) 21 | { 22 | if (array_key_exists($namespace, $this->maps)) { 23 | $path = $this->maps[$namespace]; 24 | } else { 25 | $path = str_replace('\\','/',$namespace); 26 | } 27 | $path = rtrim($path,'/') . '/' . ucfirst($realClass) . '.php'; 28 | // var_dump($path); 29 | if (!file_exists($path)) { 30 | exit('文件不存在'); 31 | } 32 | include $path; 33 | } 34 | 35 | } -------------------------------------------------------------------------------- /boot/Router.php: -------------------------------------------------------------------------------- 1 | 'id', 4 | 0 => 'id', 5 | 1 => 'parentid', 6 | 2 => 'authorid', 7 | 3 => 'title', 8 | 4 => 'content', 9 | 5 => 'addtime', 10 | 6 => 'addip', 11 | 7 => 'pic', 12 | 8 => 'replycount', 13 | 9 => 'hits', 14 | 10 => 'rate', 15 | 11 => 'attachment', 16 | 12 => 'isdel', 17 | 13 => 'isdisplay', 18 | 14 => 'cname', 19 | );?> -------------------------------------------------------------------------------- /cache/database/myblog_user.php: -------------------------------------------------------------------------------- 1 | 'uid', 4 | 0 => 'uid', 5 | 1 => 'username', 6 | 2 => 'password', 7 | 3 => 'email', 8 | 4 => 'regtime', 9 | 5 => 'picture', 10 | 6 => 'usertype', 11 | 7 => 'grade', 12 | 8 => 'allowlogin', 13 | 9 => 'phone', 14 | 10 => 'qq', 15 | );?> -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | 'localhost', 4 | 'DB_USER' => 'root', 5 | 'DB_PASSWORD' => '', 6 | 'DB_NAME' => 'myblog', 7 | 'DB_PREFIX' => 'myblog_', 8 | 'DB_CHARSET' => 'utf8', 9 | 'DB_CACHE' => './cache/database' 10 | ]; -------------------------------------------------------------------------------- /config/namespace.php: -------------------------------------------------------------------------------- 1 | 'app/index/controller', 4 | 'index\\model' => 'app/index/model', 5 | 'index\\view' => 'app/index/view', 6 | 'admin\\controller' => 'app/admin/controller', 7 | 'admin\\model' => 'app/admin/model', 8 | 'admin\\view' => 'app/admin/view', 9 | 'cokiy\\framework' => 'vendor/cokiy/framework/src', 10 | 'vendor\\alidayu' => 'vendor/alidayu' 11 | ]; -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 22 | -------------------------------------------------------------------------------- /public/ckeditor/_source/core/dom.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @fileOverview Defines the {@link CKEDITOR.dom} object, which contains DOM 8 | * manipulation objects and function. 9 | */ 10 | 11 | /** 12 | * @namespace DOM manipulation objects, classes and functions. 13 | * @see CKEDITOR.dom.element 14 | * @see CKEDITOR.dom.node 15 | * @example 16 | */ 17 | CKEDITOR.dom = 18 | {}; 19 | 20 | // PACKAGER_RENAME( CKEDITOR.dom ) 21 | -------------------------------------------------------------------------------- /public/ckeditor/_source/core/dom/nodelist.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @class 8 | */ 9 | CKEDITOR.dom.nodeList = function( nativeList ) 10 | { 11 | this.$ = nativeList; 12 | }; 13 | 14 | CKEDITOR.dom.nodeList.prototype = 15 | { 16 | count : function() 17 | { 18 | return this.$.length; 19 | }, 20 | 21 | getItem : function( index ) 22 | { 23 | var $node = this.$[ index ]; 24 | return $node ? new CKEDITOR.dom.node( $node ) : null; 25 | } 26 | }; 27 | -------------------------------------------------------------------------------- /public/ckeditor/_source/core/themes.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | /** 7 | * @fileOverview Defines the {@link CKEDITOR.themes} object, which is used to 8 | * manage themes registration and loading. 9 | */ 10 | 11 | /** 12 | * Manages themes registration and loading. 13 | * @namespace 14 | * @augments CKEDITOR.resourceManager 15 | * @example 16 | */ 17 | CKEDITOR.themes = new CKEDITOR.resourceManager( 18 | '_source/'+ // @Packager.RemoveLine 19 | 'themes/', 'theme' ); 20 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/about/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add( 'about', 7 | { 8 | requires : [ 'dialog' ], 9 | init : function( editor ) 10 | { 11 | var command = editor.addCommand( 'about', new CKEDITOR.dialogCommand( 'about' ) ); 12 | command.modes = { wysiwyg:1, source:1 }; 13 | command.canUndo = false; 14 | command.readOnly = 1; 15 | 16 | editor.ui.addButton( 'About', 17 | { 18 | label : editor.lang.about.title, 19 | command : 'about' 20 | }); 21 | 22 | CKEDITOR.dialog.add( 'about', this.path + 'dialogs/about.js' ); 23 | } 24 | }); 25 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/colordialog/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.colordialog = 7 | { 8 | init : function( editor ) 9 | { 10 | editor.addCommand( 'colordialog', new CKEDITOR.dialogCommand( 'colordialog' ) ); 11 | CKEDITOR.dialog.add( 'colordialog', this.path + 'dialogs/colordialog.js' ); 12 | } 13 | }; 14 | 15 | CKEDITOR.plugins.add( 'colordialog', CKEDITOR.plugins.colordialog ); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'bg', 7 | { 8 | devTools : 9 | { 10 | title : 'Информация за елемента', 11 | dialogName : 'Име на диалоговия прозорец', 12 | tabName : 'Име на таб', 13 | elementId : 'ID на елемента', 14 | elementType : 'Тип на елемента' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'cs', 7 | { 8 | devTools : 9 | { 10 | title : 'Informace o prvku', 11 | dialogName : 'Název dialogového okna', 12 | tabName : 'Název karty', 13 | elementId : 'ID prvku', 14 | elementType : 'Typ prvku' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'cy', 7 | { 8 | devTools : 9 | { 10 | title : 'Gwybodaeth am yr Elfen', 11 | dialogName : 'Enw ffenestr y deialog', 12 | tabName : 'Enw\'r tab', 13 | elementId : 'ID yr Elfen', 14 | elementType : 'Math yr elfen' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'da', 7 | { 8 | devTools : 9 | { 10 | title : 'Information på elementet', 11 | dialogName : 'Dialogboks', 12 | tabName : 'Tab beskrivelse', 13 | elementId : 'ID på element', 14 | elementType : 'Type af element' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'de', 7 | { 8 | devTools : 9 | { 10 | title : 'Elementinformation', 11 | dialogName : 'Dialogfenstername', 12 | tabName : 'Reitername', 13 | elementId : 'Element ID', 14 | elementType : 'Elementtyp' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'el', 7 | { 8 | devTools : 9 | { 10 | title : 'Πληροφορίες Στοιχείου', 11 | dialogName : 'Όνομα παραθύρου διαλόγου', 12 | tabName : 'Όνομα καρτέλας', 13 | elementId : 'ID Στοιχείου', 14 | elementType : 'Τύπος στοιχείου' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'en', 7 | { 8 | devTools : 9 | { 10 | title : 'Element Information', 11 | dialogName : 'Dialog window name', 12 | tabName : 'Tab name', 13 | elementId : 'Element ID', 14 | elementType : 'Element type' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'eo', 7 | { 8 | devTools : 9 | { 10 | title : 'Informo pri la elemento', 11 | dialogName : 'Nomo de la dialogfenestro', 12 | tabName : 'Langetnomo', 13 | elementId : 'ID de la elemento', 14 | elementType : 'Tipo de la elemento' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'et', 7 | { 8 | devTools : 9 | { 10 | title : 'Elemendi andmed', 11 | dialogName : 'Dialoogiakna nimi', 12 | tabName : 'Saki nimi', 13 | elementId : 'Elemendi ID', 14 | elementType : 'Elemendi liik' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'fa', 7 | { 8 | devTools : 9 | { 10 | title : 'اطلاعات عنصر', 11 | dialogName : 'نام پنجره محاورهای', 12 | tabName : 'نام برگه', 13 | elementId : 'ID عنصر', 14 | elementType : 'نوع عنصر' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'fi', 7 | { 8 | devTools : 9 | { 10 | title : 'Elementin tiedot', 11 | dialogName : 'Dialogi-ikkunan nimi', 12 | tabName : 'Välilehden nimi', 13 | elementId : 'Elementin ID', 14 | elementType : 'Elementin tyyppi' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'fr', 7 | { 8 | devTools : 9 | { 10 | title : 'Information sur l\'élément', 11 | dialogName : 'Nom de la fenêtre de dialogue', 12 | tabName : 'Nom de l\'onglet', 13 | elementId : 'ID de l\'élément', 14 | elementType : 'Type de l\'élément' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'gu', 7 | { 8 | devTools : 9 | { 10 | title : 'પ્રાથમિક માહિતી', 11 | dialogName : 'વિન્ડોનું નામ', 12 | tabName : 'ટેબનું નામ', 13 | elementId : 'પ્રાથમિક આઈડી', 14 | elementType : 'પ્રાથમિક પ્રકાર' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'he', 7 | { 8 | devTools : 9 | { 10 | title : 'מידע על האלמנט', 11 | dialogName : 'שם הדיאלוג', 12 | tabName : 'שם הטאב', 13 | elementId : 'ID של האלמנט', 14 | elementType : 'סוג האלמנט' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'hr', 7 | { 8 | devTools : 9 | { 10 | title : 'Informacije elementa', 11 | dialogName : 'Naziv prozora za dijalog', 12 | tabName : 'Naziva jahača', 13 | elementId : 'ID elementa', 14 | elementType : 'Vrsta elementa' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'it', 7 | { 8 | devTools : 9 | { 10 | title : 'Informazioni elemento', 11 | dialogName : 'Nome finestra di dialogo', 12 | tabName : 'Nome Tab', 13 | elementId : 'ID Elemento', 14 | elementType : 'Tipo elemento' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'nb', 7 | { 8 | devTools : 9 | { 10 | title : 'Elementinformasjon', 11 | dialogName : 'Navn på dialogvindu', 12 | tabName : 'Navn på fane', 13 | elementId : 'Element-ID', 14 | elementType : 'Elementtype' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'nl', 7 | { 8 | devTools : 9 | { 10 | title : 'Elementinformatie', 11 | dialogName : 'Naam dialoogvenster', 12 | tabName : 'Tabnaam', 13 | elementId : 'Element ID', 14 | elementType : 'Elementtype' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'no', 7 | { 8 | devTools : 9 | { 10 | title : 'Elementinformasjon', 11 | dialogName : 'Navn på dialogvindu', 12 | tabName : 'Navn på fane', 13 | elementId : 'Element-ID', 14 | elementType : 'Elementtype' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'pl', 7 | { 8 | devTools : 9 | { 10 | title : 'Informacja o elemencie', 11 | dialogName : 'Nazwa okna dialogowego', 12 | tabName : 'Nazwa zakładki', 13 | elementId : 'ID elementu', 14 | elementType : 'Typ elementu' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'tr', 7 | { 8 | devTools : 9 | { 10 | title : 'Eleman Bilgisi', 11 | dialogName : 'İletişim pencere ismi', 12 | tabName : 'Sekme adı', 13 | elementId : 'Eleman ID', 14 | elementType : 'Eleman türü' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'ug', 7 | { 8 | devTools : 9 | { 10 | title : 'ئېلېمېنت ئۇچۇرى', 11 | dialogName : 'سۆزلەشكۈ كۆزنەك ئاتى', 12 | tabName : 'Tab ئاتى', 13 | elementId : 'ئېلېمېنت كىملىكى', 14 | elementType : 'ئېلېمېنت تىپى' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'uk', 7 | { 8 | devTools : 9 | { 10 | title : 'Відомості про Елемент', 11 | dialogName : 'Заголовок діалогового вікна', 12 | tabName : 'Назва вкладки', 13 | elementId : 'Ідентифікатор Елемента', 14 | elementType : 'Тип Елемента' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'vi', 7 | { 8 | devTools : 9 | { 10 | title : 'Thông tin thành ph', 11 | dialogName : 'Tên hộp tho', 12 | tabName : 'Tên th', 13 | elementId : 'Mã thành ph', 14 | elementType : 'Loại thành ph' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'devtools', 'zh-cn', 7 | { 8 | devTools : 9 | { 10 | title : '元素信息', 11 | dialogName : '对话框窗口名称', 12 | tabName : 'Tab 名称', 13 | elementId : '元素 ID', 14 | elementType : '元素类型' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add( 'docprops', 7 | { 8 | init : function( editor ) 9 | { 10 | var cmd = new CKEDITOR.dialogCommand( 'docProps' ); 11 | // Only applicable on full page mode. 12 | cmd.modes = { wysiwyg : editor.config.fullPage }; 13 | editor.addCommand( 'docProps', cmd ); 14 | CKEDITOR.dialog.add( 'docProps', this.path + 'dialogs/docprops.js' ); 15 | 16 | editor.ui.addButton( 'DocProps', 17 | { 18 | label : editor.lang.docprops.label, 19 | command : 'docProps' 20 | }); 21 | } 22 | }); 23 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'bg', 7 | { 8 | placeholder : 9 | { 10 | title : 'Настройки на контейнера', 11 | toolbar : 'Нов контейнер', 12 | text : 'Текст за контейнера', 13 | edit : 'Промяна на контейнер', 14 | textMissing : 'Контейнера трябва да съдържа текст.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'cs', 7 | { 8 | placeholder : 9 | { 10 | title : 'Vlastnosti vyhrazeného prostoru', 11 | toolbar : 'Vytvořit vyhrazený prostor', 12 | text : 'Vyhrazený text', 13 | edit : 'Upravit vyhrazený prostor', 14 | textMissing : 'Vyhrazený prostor musí obsahovat text.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'cy', 7 | { 8 | placeholder : 9 | { 10 | title : 'Priodweddau\'r Daliwr Geiriau', 11 | toolbar : 'Creu Daliwr Geiriau', 12 | text : 'Testun y Daliwr Geiriau', 13 | edit : 'Golygu\'r Dailwr Geiriau', 14 | textMissing : 'Mae\'n rhaid i\'r daliwr geiriau gynnwys testun.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'da', 7 | { 8 | placeholder : 9 | { 10 | title : 'Egenskaber for pladsholder', 11 | toolbar : 'Opret pladsholder', 12 | text : 'Tekst til pladsholder', 13 | edit : 'Rediger pladsholder', 14 | textMissing : 'Pladsholder skal indeholde tekst' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'de', 7 | { 8 | placeholder : 9 | { 10 | title : 'Platzhalter Einstellungen', 11 | toolbar : 'Platzhalter erstellen', 12 | text : 'Platzhalter Text', 13 | edit : 'Platzhalter bearbeiten', 14 | textMissing : 'Der Platzhalter muss einen Text beinhalten.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'el', 7 | { 8 | placeholder : 9 | { 10 | title : 'Ιδιότητες Υποκατάστατου Κειμένου', 11 | toolbar : 'Δημιουργία Υποκατάσταστου Κειμένου', 12 | text : 'Υποκαθιστόμενο Κείμενο', 13 | edit : 'Επεξεργασία Υποκατάσταστου Κειμένου', 14 | textMissing : 'Πρέπει να υπάρχει υποκαθιστόμενο κείμενο.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'en', 7 | { 8 | placeholder : 9 | { 10 | title : 'Placeholder Properties', 11 | toolbar : 'Create Placeholder', 12 | text : 'Placeholder Text', 13 | edit : 'Edit Placeholder', 14 | textMissing : 'The placeholder must contain text.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'eo', 7 | { 8 | placeholder : 9 | { 10 | title : 'Atributoj de la rezervita spaco', 11 | toolbar : 'Krei la rezervitan spacon', 12 | text : 'Texto de la rezervita spaco', 13 | edit : 'Modifi la rezervitan spacon', 14 | textMissing : 'La rezervita spaco devas enteni tekston.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'et', 7 | { 8 | placeholder : 9 | { 10 | title : 'Kohahoidja omadused', 11 | toolbar : 'Kohahoidja loomine', 12 | text : 'Kohahoidja tekst', 13 | edit : 'Kohahoidja muutmine', 14 | textMissing : 'Kohahoidja peab sisaldama teksti.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'fa', 7 | { 8 | placeholder : 9 | { 10 | title : 'ویژگیهای محل نگهداری', 11 | toolbar : 'ایجاد یک محل نگهداری', 12 | text : 'متن محل نگهداری', 13 | edit : 'ویرایش محل نگهداری', 14 | textMissing : 'محل نگهداری باید محتوی متن باشد.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'fi', 7 | { 8 | placeholder : 9 | { 10 | title : 'Paikkamerkin ominaisuudet', 11 | toolbar : 'Luo paikkamerkki', 12 | text : 'Paikkamerkin teksti', 13 | edit : 'Muokkaa paikkamerkkiä', 14 | textMissing : 'Paikkamerkin täytyy sisältää tekstiä' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'fr', 7 | { 8 | placeholder : 9 | { 10 | title : 'Propriétés de l\'Espace réservé', 11 | toolbar : 'Créer l\'Espace réservé', 12 | text : 'Texte de l\'Espace réservé', 13 | edit : 'Modifier l\'Espace réservé', 14 | textMissing : 'L\'Espace réservé doit contenir du texte.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'he', 7 | { 8 | placeholder : 9 | { 10 | title : 'מאפייני שומר מקום', 11 | toolbar : 'צור שומר מקום', 12 | text : 'תוכן שומר המקום', 13 | edit : 'ערוך שומר מקום', 14 | textMissing : 'שומר המקום חייב להכיל טקסט.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'hr', 7 | { 8 | placeholder : 9 | { 10 | title : 'Svojstva rezerviranog mjesta', 11 | toolbar : 'Napravi rezervirano mjesto', 12 | text : 'Tekst rezerviranog mjesta', 13 | edit : 'Uredi rezervirano mjesto', 14 | textMissing : 'Rezervirano mjesto mora sadržavati tekst.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'it', 7 | { 8 | placeholder : 9 | { 10 | title : 'Proprietà segnaposto', 11 | toolbar : 'Crea segnaposto', 12 | text : 'Testo segnaposto', 13 | edit : 'Modifica segnaposto', 14 | textMissing : 'Il segnaposto deve contenere del testo.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'nb', 7 | { 8 | placeholder : 9 | { 10 | title : 'Egenskaper for plassholder', 11 | toolbar : 'Opprett plassholder', 12 | text : 'Tekst for plassholder', 13 | edit : 'Rediger plassholder', 14 | textMissing : 'Plassholderen må inneholde tekst.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'nl', 7 | { 8 | placeholder : 9 | { 10 | title : 'Eigenschappen placeholder', 11 | toolbar : 'Placeholder aanmaken', 12 | text : 'Placeholder tekst', 13 | edit : 'Placeholder wijzigen', 14 | textMissing : 'De placeholder moet tekst bevatten.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'no', 7 | { 8 | placeholder : 9 | { 10 | title : 'Egenskaper for plassholder', 11 | toolbar : 'Opprett plassholder', 12 | text : 'Tekst for plassholder', 13 | edit : 'Rediger plassholder', 14 | textMissing : 'Plassholderen må inneholde tekst.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'pl', 7 | { 8 | placeholder : 9 | { 10 | title : 'Właściwości wypełniacza', 11 | toolbar : 'Utwórz wypełniacz', 12 | text : 'Tekst wypełnienia', 13 | edit : 'Edytuj wypełnienie', 14 | textMissing : 'Wypełnienie musi posiadać jakiś tekst.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'tr', 7 | { 8 | placeholder : 9 | { 10 | title : 'Yer tutucu özellikleri', 11 | toolbar : 'Yer tutucu oluşturun', 12 | text : 'Yer tutucu metini', 13 | edit : 'Yer tutucuyu düzenle', 14 | textMissing : 'Yer tutucu metin içermelidir.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'ug', 7 | { 8 | placeholder : 9 | { 10 | title : 'ئورۇن بەلگە خاسلىقى', 11 | toolbar : 'ئورۇن بەلگە قۇر', 12 | text : 'ئورۇن بەلگە تېكىستى', 13 | edit : 'ئورۇن بەلگە تەھرىر', 14 | textMissing : 'ئورۇن بەلگىسىدە چوقۇم تېكىست بولۇشى لازىم' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'uk', 7 | { 8 | placeholder : 9 | { 10 | title : 'Налаштування Заповнювача', 11 | toolbar : 'Створити Заповнювач', 12 | text : 'Текст Заповнювача', 13 | edit : 'Редагувати Заповнювач', 14 | textMissing : 'Заповнювач повинен містити текст.' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'vi', 7 | { 8 | placeholder : 9 | { 10 | title : 'Thuộc tính đặt chỗ', 11 | toolbar : 'Tạo đặt chỗ', 12 | text : 'Văn bản đặt chỗ', 13 | edit : 'Edit Placeholder', // MISSING 14 | textMissing : 'The placeholder must contain text.' // MISSING 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'placeholder', 'zh-cn', 7 | { 8 | placeholder : 9 | { 10 | title : '占位符属性', 11 | toolbar : '创建占位符', 12 | text : '占位符文字', 13 | edit : '编辑占位符', 14 | textMissing : '占位符必需包含有文字' 15 | } 16 | }); 17 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/specialchar/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.html 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 | eo.js Found: 118 Missing: 0 8 | et.js Found: 31 Missing: 87 9 | fa.js Found: 24 Missing: 94 10 | fi.js Found: 23 Missing: 95 11 | fr.js Found: 118 Missing: 0 12 | hr.js Found: 23 Missing: 95 13 | it.js Found: 118 Missing: 0 14 | nb.js Found: 118 Missing: 0 15 | nl.js Found: 118 Missing: 0 16 | no.js Found: 118 Missing: 0 17 | tr.js Found: 118 Missing: 0 18 | ug.js Found: 39 Missing: 79 19 | zh-cn.js Found: 118 Missing: 0 20 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'bg', 7 | { 8 | uicolor : 9 | { 10 | title : 'ПИ избор на цвят', 11 | preview : 'Преглед', 12 | config : 'Вмъкнете този низ във Вашия config.js fajl', 13 | predefined : 'Предефинирани цветови палитри' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'cs', 7 | { 8 | uicolor : 9 | { 10 | title : 'Výběr barvy rozhraní', 11 | preview : 'Živý náhled', 12 | config : 'Vložte tento řetězec do Vašeho souboru config.js', 13 | predefined : 'Přednastavené sady barev' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'cy', 7 | { 8 | uicolor : 9 | { 10 | title : 'Dewisydd Lliwiau\'r UI', 11 | preview : 'Rhagolwg Byw', 12 | config : 'Gludwch y llinyn hwn i\'ch ffeil config.js', 13 | predefined : 'Setiau lliw wedi\'u cyn-ddiffinio' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'da', 7 | { 8 | uicolor : 9 | { 10 | title : 'Brugerflade på farvevælger', 11 | preview : 'Vis liveeksempel', 12 | config : 'Indsæt denne streng i din config.js fil', 13 | predefined : 'Prædefinerede farveskemaer' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'de', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Pipette', 11 | preview : 'Live-Vorschau', 12 | config : 'Fügen Sie diese Zeichenfolge in die \'config.js\' Datei.', 13 | predefined : 'Vordefinierte Farbsätze' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'el', 7 | { 8 | uicolor : 9 | { 10 | title : 'Διεπαφή Επιλογέα Χρωμάτων', 11 | preview : 'Ζωντανή Προεπισκόπηση', 12 | config : 'Επικολλήστε αυτό το κείμενο στο αρχείο config.js', 13 | predefined : 'Προκαθορισμένα σύνολα χρωμάτων' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'en', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Color Picker', 11 | preview : 'Live preview', 12 | config : 'Paste this string into your config.js file', 13 | predefined : 'Predefined color sets' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'eo', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Kolorselektilo', 11 | preview : 'Vidigi la aspekton', 12 | config : 'Gluu tiun signoĉenon en vian dosieron config.js', 13 | predefined : 'Antaŭdifinita koloraro' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'et', 7 | { 8 | uicolor : 9 | { 10 | title : 'Värvivalija kasutajaliides', 11 | preview : 'Automaatne eelvaade', 12 | config : 'Aseta see sõne oma config.js faili.', 13 | predefined : 'Eelmääratud värvikomplektid' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'fa', 7 | { 8 | uicolor : 9 | { 10 | title : 'انتخاب رنگ UI', 11 | preview : 'پیشنمایش زنده', 12 | config : 'این رشته را در فایل config.js خود بچسبانید.', 13 | predefined : 'مجموعه رنگ از پیش تعریف شده' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'fi', 7 | { 8 | uicolor : 9 | { 10 | title : 'Käyttöliittymän värivalitsin', 11 | preview : 'Esikatsele', 12 | config : 'Liitä tämä merkkijono config.js tiedostoosi', 13 | predefined : 'Esimääritellyt värijoukot' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'fr', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Sélecteur de couleur', 11 | preview : 'Aperçu', 12 | config : 'Collez cette chaîne de caractères dans votre fichier config.js', 13 | predefined : 'Palettes de couleurs prédéfinies' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'he', 7 | { 8 | uicolor : 9 | { 10 | title : 'בחירת צבע ממשק משתמש', 11 | preview : 'תצוגה מקדימה', 12 | config : 'הדבק את הטקסט הבא לתוך הקובץ config.js', 13 | predefined : 'קבוצות צבעים מוגדרות מראש' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'hr', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI odabir boja', 11 | preview : 'Pregled uživo', 12 | config : 'Zalijepite ovaj tekst u Vašu config.js datoteku.', 13 | predefined : 'Već postavljeni setovi boja' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'it', 7 | { 8 | uicolor : 9 | { 10 | title : 'Selettore Colore UI', 11 | preview : 'Anteprima Live', 12 | config : 'Incolla questa stringa nel tuo file config.js', 13 | predefined : 'Set di colori predefiniti' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'mk', 7 | { 8 | uicolor : 9 | { 10 | title : 'Палета со бои', 11 | preview : 'Преглед', 12 | config : 'Залепи го овој текст во config.js датотеката', 13 | predefined : 'Предефинирани множества на бои' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'nb', 7 | { 8 | uicolor : 9 | { 10 | title : 'Fargevelger for brukergrensesnitt', 11 | preview : 'Forhåndsvisning i sanntid', 12 | config : 'Lim inn følgende tekst i din config.js-fil', 13 | predefined : 'Forhåndsdefinerte fargesett' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'nl', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Kleurenkiezer', 11 | preview : 'Live voorbeeld', 12 | config : 'Plak deze tekst in jouw config.js bestand', 13 | predefined : 'Voorgedefinieerde kleurensets' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'no', 7 | { 8 | uicolor : 9 | { 10 | title : 'Fargevelger for brukergrensesnitt', 11 | preview : 'Forhåndsvisning i sanntid', 12 | config : 'Lim inn følgende tekst i din config.js-fil', 13 | predefined : 'Forhåndsdefinerte fargesett' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'pl', 7 | { 8 | uicolor : 9 | { 10 | title : 'Wybór koloru interfejsu', 11 | preview : 'Podgląd na żywo', 12 | config : 'Wklej poniższy łańcuch znaków do pliku config.js:', 13 | predefined : 'Predefiniowane zestawy kolorów' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'tr', 7 | { 8 | uicolor : 9 | { 10 | title : 'UI Renk Seçicisi', 11 | preview : 'Canlı önizleme', 12 | config : 'Bu dizeyi config.js dosyasının içine yapıştırın', 13 | predefined : 'Önceden tanımlanmış renk kümeleri' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'ug', 7 | { 8 | uicolor : 9 | { 10 | title : 'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ', 11 | preview : 'شۇئان ئالدىن كۆزىتىش', 12 | config : 'بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ', 13 | predefined : 'ئالدىن بەلگىلەنگەن رەڭلەر' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'uk', 7 | { 8 | uicolor : 9 | { 10 | title : 'Color Picker Інтерфейс', 11 | preview : 'Перегляд наживо', 12 | config : 'Вставте цей рядок у файл config.js', 13 | predefined : 'Стандартний набір кольорів' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'vi', 7 | { 8 | uicolor : 9 | { 10 | title : 'Giao diện người dùng Color Picker', 11 | preview : 'Xem trước trực tiếp', 12 | config : 'Dán chuỗi này vào tập tin config.js của bạn', 13 | predefined : 'Tập màu định nghĩa sẵn' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'uicolor', 'zh-cn', 7 | { 8 | uicolor : 9 | { 10 | title : '用户界面颜色选择器', 11 | preview : '即时预览', 12 | config : '粘贴此字符串到你的 config.js 文件', 13 | predefined : '预定义颜色集' 14 | } 15 | }); 16 | -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /public/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_kama 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_kama_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/icons.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_office2003 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_office2003_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/icons.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/editor.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | @import url("reset.css"); 7 | @import url("mainui.css"); 8 | @import url("panel.css"); 9 | @import url("toolbar.css"); 10 | @import url("menu.css"); 11 | @import url("richcombo.css"); 12 | @import url("elementspath.css"); 13 | @import url("icons.css"); 14 | @import url("presets.css"); 15 | 16 | /* Restore the container visibility */ 17 | html .cke_skin_v2 18 | { 19 | visibility: inherit; 20 | } 21 | 22 | html.cke_skin_v2_container 23 | { 24 | visibility: visible; 25 | } 26 | -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/icons.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/_source/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/_source/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /public/ckeditor/config.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) 7 | { 8 | // Define changes to default configuration here. For example: 9 | // config.language = 'fr'; 10 | // config.uiColor = '#AADC6E'; 11 | config.width = 750; 12 | config.height = 700; 13 | }; 14 | -------------------------------------------------------------------------------- /public/ckeditor/contents.css: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | body 7 | { 8 | /* Font */ 9 | font-family: Arial, Verdana, sans-serif; 10 | font-size: 12px; 11 | 12 | /* Text color */ 13 | color: #222; 14 | 15 | /* Remove the background color to make it transparent */ 16 | background-color: #fff; 17 | } 18 | 19 | ol,ul,dl 20 | { 21 | /* IE7: reset rtl list margin. (#7334) */ 22 | *margin-right:0px; 23 | /* preserved spaces for list items with text direction other than the list. (#6249,#8049)*/ 24 | padding:0 40px; 25 | } 26 | -------------------------------------------------------------------------------- /public/ckeditor/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/images/spacer.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','bg',{devTools:{title:'Информация за елемента',dialogName:'Име на диалоговия прозорец',tabName:'Име на таб',elementId:'ID на елемента',elementType:'Тип на елемента'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cs',{devTools:{title:'Informace o prvku',dialogName:'Název dialogového okna',tabName:'Název karty',elementId:'ID prvku',elementType:'Typ prvku'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','cy',{devTools:{title:'Gwybodaeth am yr Elfen',dialogName:'Enw ffenestr y deialog',tabName:"Enw'r tab",elementId:'ID yr Elfen',elementType:'Math yr elfen'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','da',{devTools:{title:'Information på elementet',dialogName:'Dialogboks',tabName:'Tab beskrivelse',elementId:'ID på element',elementType:'Type af element'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','de',{devTools:{title:'Elementinformation',dialogName:'Dialogfenstername',tabName:'Reitername',elementId:'Element ID',elementType:'Elementtyp'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','el',{devTools:{title:'Πληροφορίες Στοιχείου',dialogName:'Όνομα παραθύρου διαλόγου',tabName:'Όνομα καρτέλας',elementId:'ID Στοιχείου',elementType:'Τύπος στοιχείου'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','en',{devTools:{title:'Element Information',dialogName:'Dialog window name',tabName:'Tab name',elementId:'Element ID',elementType:'Element type'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','eo',{devTools:{title:'Informo pri la elemento',dialogName:'Nomo de la dialogfenestro',tabName:'Langetnomo',elementId:'ID de la elemento',elementType:'Tipo de la elemento'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','et',{devTools:{title:'Elemendi andmed',dialogName:'Dialoogiakna nimi',tabName:'Saki nimi',elementId:'Elemendi ID',elementType:'Elemendi liik'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fa',{devTools:{title:'اطلاعات عنصر',dialogName:'نام پنجره محاورهای',tabName:'نام برگه',elementId:'ID عنصر',elementType:'نوع عنصر'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fi',{devTools:{title:'Elementin tiedot',dialogName:'Dialogi-ikkunan nimi',tabName:'Välilehden nimi',elementId:'Elementin ID',elementType:'Elementin tyyppi'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','fr',{devTools:{title:"Information sur l'élément",dialogName:'Nom de la fenêtre de dialogue',tabName:"Nom de l'onglet",elementId:"ID de l'élément",elementType:"Type de l'élément"}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','gu',{devTools:{title:'પ્રાથમિક માહિતી',dialogName:'વિન્ડોનું નામ',tabName:'ટેબનું નામ',elementId:'પ્રાથમિક આઈડી',elementType:'પ્રાથમિક પ્રકાર'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','he',{devTools:{title:'מידע על האלמנט',dialogName:'שם הדיאלוג',tabName:'שם הטאב',elementId:'ID של האלמנט',elementType:'סוג האלמנט'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','hr',{devTools:{title:'Informacije elementa',dialogName:'Naziv prozora za dijalog',tabName:'Naziva jahača',elementId:'ID elementa',elementType:'Vrsta elementa'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','it',{devTools:{title:'Informazioni elemento',dialogName:'Nome finestra di dialogo',tabName:'Nome Tab',elementId:'ID Elemento',elementType:'Tipo elemento'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nb',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','nl',{devTools:{title:'Elementinformatie',dialogName:'Naam dialoogvenster',tabName:'Tabnaam',elementId:'Element ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','no',{devTools:{title:'Elementinformasjon',dialogName:'Navn på dialogvindu',tabName:'Navn på fane',elementId:'Element-ID',elementType:'Elementtype'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','pl',{devTools:{title:'Informacja o elemencie',dialogName:'Nazwa okna dialogowego',tabName:'Nazwa zakładki',elementId:'ID elementu',elementType:'Typ elementu'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','tr',{devTools:{title:'Eleman Bilgisi',dialogName:'İletişim pencere ismi',tabName:'Sekme adı',elementId:'Eleman ID',elementType:'Eleman türü'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','ug',{devTools:{title:'ئېلېمېنت ئۇچۇرى',dialogName:'سۆزلەشكۈ كۆزنەك ئاتى',tabName:'Tab ئاتى',elementId:'ئېلېمېنت كىملىكى',elementType:'ئېلېمېنت تىپى'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','uk',{devTools:{title:'Відомості про Елемент',dialogName:'Заголовок діалогового вікна',tabName:'Назва вкладки',elementId:'Ідентифікатор Елемента',elementType:'Тип Елемента'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','vi',{devTools:{title:'Thông tin thành ph',dialogName:'Tên hộp tho',tabName:'Tên th',elementId:'Mã thành ph',elementType:'Loại thành ph'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('devtools','zh-cn',{devTools:{title:'元素信息',dialogName:'对话框窗口名称',tabName:'Tab 名称',elementId:'元素 ID',elementType:'元素类型'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/docprops/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('docprops',{init:function(a){var b=new CKEDITOR.dialogCommand('docProps');b.modes={wysiwyg:a.config.fullPage};a.addCommand('docProps',b);CKEDITOR.dialog.add('docProps',this.path+'dialogs/docprops.js');a.ui.addButton('DocProps',{label:a.lang.docprops.label,command:'docProps'});}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/link/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/link/images/anchor.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','bg',{placeholder:{title:'Настройки на контейнера',toolbar:'Нов контейнер',text:'Текст за контейнера',edit:'Промяна на контейнер',textMissing:'Контейнера трябва да съдържа текст.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cs',{placeholder:{title:'Vlastnosti vyhrazeného prostoru',toolbar:'Vytvořit vyhrazený prostor',text:'Vyhrazený text',edit:'Upravit vyhrazený prostor',textMissing:'Vyhrazený prostor musí obsahovat text.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','cy',{placeholder:{title:"Priodweddau'r Daliwr Geiriau",toolbar:'Creu Daliwr Geiriau',text:'Testun y Daliwr Geiriau',edit:"Golygu'r Dailwr Geiriau",textMissing:"Mae'n rhaid i'r daliwr geiriau gynnwys testun."}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','da',{placeholder:{title:'Egenskaber for pladsholder',toolbar:'Opret pladsholder',text:'Tekst til pladsholder',edit:'Rediger pladsholder',textMissing:'Pladsholder skal indeholde tekst'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','de',{placeholder:{title:'Platzhalter Einstellungen',toolbar:'Platzhalter erstellen',text:'Platzhalter Text',edit:'Platzhalter bearbeiten',textMissing:'Der Platzhalter muss einen Text beinhalten.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','el',{placeholder:{title:'Ιδιότητες Υποκατάστατου Κειμένου',toolbar:'Δημιουργία Υποκατάσταστου Κειμένου',text:'Υποκαθιστόμενο Κείμενο',edit:'Επεξεργασία Υποκατάσταστου Κειμένου',textMissing:'Πρέπει να υπάρχει υποκαθιστόμενο κείμενο.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','en',{placeholder:{title:'Placeholder Properties',toolbar:'Create Placeholder',text:'Placeholder Text',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','eo',{placeholder:{title:'Atributoj de la rezervita spaco',toolbar:'Krei la rezervitan spacon',text:'Texto de la rezervita spaco',edit:'Modifi la rezervitan spacon',textMissing:'La rezervita spaco devas enteni tekston.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','et',{placeholder:{title:'Kohahoidja omadused',toolbar:'Kohahoidja loomine',text:'Kohahoidja tekst',edit:'Kohahoidja muutmine',textMissing:'Kohahoidja peab sisaldama teksti.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fa',{placeholder:{title:'ویژگیهای محل نگهداری',toolbar:'ایجاد یک محل نگهداری',text:'متن محل نگهداری',edit:'ویرایش محل نگهداری',textMissing:'محل نگهداری باید محتوی متن باشد.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fi',{placeholder:{title:'Paikkamerkin ominaisuudet',toolbar:'Luo paikkamerkki',text:'Paikkamerkin teksti',edit:'Muokkaa paikkamerkkiä',textMissing:'Paikkamerkin täytyy sisältää tekstiä'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','fr',{placeholder:{title:"Propriétés de l'Espace réservé",toolbar:"Créer l'Espace réservé",text:"Texte de l'Espace réservé",edit:"Modifier l'Espace réservé",textMissing:"L'Espace réservé doit contenir du texte."}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','he',{placeholder:{title:'מאפייני שומר מקום',toolbar:'צור שומר מקום',text:'תוכן שומר המקום',edit:'ערוך שומר מקום',textMissing:'שומר המקום חייב להכיל טקסט.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','hr',{placeholder:{title:'Svojstva rezerviranog mjesta',toolbar:'Napravi rezervirano mjesto',text:'Tekst rezerviranog mjesta',edit:'Uredi rezervirano mjesto',textMissing:'Rezervirano mjesto mora sadržavati tekst.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','it',{placeholder:{title:'Proprietà segnaposto',toolbar:'Crea segnaposto',text:'Testo segnaposto',edit:'Modifica segnaposto',textMissing:'Il segnaposto deve contenere del testo.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nb',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','nl',{placeholder:{title:'Eigenschappen placeholder',toolbar:'Placeholder aanmaken',text:'Placeholder tekst',edit:'Placeholder wijzigen',textMissing:'De placeholder moet tekst bevatten.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','no',{placeholder:{title:'Egenskaper for plassholder',toolbar:'Opprett plassholder',text:'Tekst for plassholder',edit:'Rediger plassholder',textMissing:'Plassholderen må inneholde tekst.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','pl',{placeholder:{title:'Właściwości wypełniacza',toolbar:'Utwórz wypełniacz',text:'Tekst wypełnienia',edit:'Edytuj wypełnienie',textMissing:'Wypełnienie musi posiadać jakiś tekst.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','tr',{placeholder:{title:'Yer tutucu özellikleri',toolbar:'Yer tutucu oluşturun',text:'Yer tutucu metini',edit:'Yer tutucuyu düzenle',textMissing:'Yer tutucu metin içermelidir.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','ug',{placeholder:{title:'ئورۇن بەلگە خاسلىقى',toolbar:'ئورۇن بەلگە قۇر',text:'ئورۇن بەلگە تېكىستى',edit:'ئورۇن بەلگە تەھرىر',textMissing:'ئورۇن بەلگىسىدە چوقۇم تېكىست بولۇشى لازىم'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','uk',{placeholder:{title:'Налаштування Заповнювача',toolbar:'Створити Заповнювач',text:'Текст Заповнювача',edit:'Редагувати Заповнювач',textMissing:'Заповнювач повинен містити текст.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','vi',{placeholder:{title:'Thuộc tính đặt chỗ',toolbar:'Tạo đặt chỗ',text:'Văn bản đặt chỗ',edit:'Edit Placeholder',textMissing:'The placeholder must contain text.'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('placeholder','zh-cn',{placeholder:{title:'占位符属性',toolbar:'创建占位符',text:'占位符文字',edit:'编辑占位符',textMissing:'占位符必需包含有文字'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/placeholder/placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/placeholder/placeholder.gif -------------------------------------------------------------------------------- /public/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 | width: 190px; 14 | margin: 30px auto 0 auto; 15 | } 16 | 17 | .cke_dialog_contents_body div[name=dictionaries] .cke_dialog_ui_hbox_last > a.cke_dialog_ui_button 18 | { 19 | margin-top: 0; 20 | } 21 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /public/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 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/specialchar/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.html 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 | eo.js Found: 118 Missing: 0 8 | et.js Found: 31 Missing: 87 9 | fa.js Found: 24 Missing: 94 10 | fi.js Found: 23 Missing: 95 11 | fr.js Found: 118 Missing: 0 12 | hr.js Found: 23 Missing: 95 13 | it.js Found: 118 Missing: 0 14 | nb.js Found: 118 Missing: 0 15 | nl.js Found: 118 Missing: 0 16 | no.js Found: 118 Missing: 0 17 | tr.js Found: 118 Missing: 0 18 | ug.js Found: 39 Missing: 79 19 | zh-cn.js Found: 118 Missing: 0 20 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','bg',{uicolor:{title:'ПИ избор на цвят',preview:'Преглед',config:'Вмъкнете този низ във Вашия config.js fajl',predefined:'Предефинирани цветови палитри'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cs',{uicolor:{title:'Výběr barvy rozhraní',preview:'Živý náhled',config:'Vložte tento řetězec do Vašeho souboru config.js',predefined:'Přednastavené sady barev'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','cy',{uicolor:{title:"Dewisydd Lliwiau'r UI",preview:'Rhagolwg Byw',config:"Gludwch y llinyn hwn i'ch ffeil config.js",predefined:"Setiau lliw wedi'u cyn-ddiffinio"}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','da',{uicolor:{title:'Brugerflade på farvevælger',preview:'Vis liveeksempel',config:'Indsæt denne streng i din config.js fil',predefined:'Prædefinerede farveskemaer'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','de',{uicolor:{title:'UI Pipette',preview:'Live-Vorschau',config:"Fügen Sie diese Zeichenfolge in die 'config.js' Datei.",predefined:'Vordefinierte Farbsätze'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','el',{uicolor:{title:'Διεπαφή Επιλογέα Χρωμάτων',preview:'Ζωντανή Προεπισκόπηση',config:'Επικολλήστε αυτό το κείμενο στο αρχείο config.js',predefined:'Προκαθορισμένα σύνολα χρωμάτων'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','en',{uicolor:{title:'UI Color Picker',preview:'Live preview',config:'Paste this string into your config.js file',predefined:'Predefined color sets'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','eo',{uicolor:{title:'UI Kolorselektilo',preview:'Vidigi la aspekton',config:'Gluu tiun signoĉenon en vian dosieron config.js',predefined:'Antaŭdifinita koloraro'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','et',{uicolor:{title:'Värvivalija kasutajaliides',preview:'Automaatne eelvaade',config:'Aseta see sõne oma config.js faili.',predefined:'Eelmääratud värvikomplektid'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fa',{uicolor:{title:'انتخاب رنگ UI',preview:'پیشنمایش زنده',config:'این رشته را در فایل config.js خود بچسبانید.',predefined:'مجموعه رنگ از پیش تعریف شده'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fi',{uicolor:{title:'Käyttöliittymän värivalitsin',preview:'Esikatsele',config:'Liitä tämä merkkijono config.js tiedostoosi',predefined:'Esimääritellyt värijoukot'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','fr',{uicolor:{title:'UI Sélecteur de couleur',preview:'Aperçu',config:'Collez cette chaîne de caractères dans votre fichier config.js',predefined:'Palettes de couleurs prédéfinies'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','he',{uicolor:{title:'בחירת צבע ממשק משתמש',preview:'תצוגה מקדימה',config:'הדבק את הטקסט הבא לתוך הקובץ config.js',predefined:'קבוצות צבעים מוגדרות מראש'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','hr',{uicolor:{title:'UI odabir boja',preview:'Pregled uživo',config:'Zalijepite ovaj tekst u Vašu config.js datoteku.',predefined:'Već postavljeni setovi boja'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','it',{uicolor:{title:'Selettore Colore UI',preview:'Anteprima Live',config:'Incolla questa stringa nel tuo file config.js',predefined:'Set di colori predefiniti'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','mk',{uicolor:{title:'Палета со бои',preview:'Преглед',config:'Залепи го овој текст во config.js датотеката',predefined:'Предефинирани множества на бои'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nb',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','nl',{uicolor:{title:'UI Kleurenkiezer',preview:'Live voorbeeld',config:'Plak deze tekst in jouw config.js bestand',predefined:'Voorgedefinieerde kleurensets'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','no',{uicolor:{title:'Fargevelger for brukergrensesnitt',preview:'Forhåndsvisning i sanntid',config:'Lim inn følgende tekst i din config.js-fil',predefined:'Forhåndsdefinerte fargesett'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','pl',{uicolor:{title:'Wybór koloru interfejsu',preview:'Podgląd na żywo',config:'Wklej poniższy łańcuch znaków do pliku config.js:',predefined:'Predefiniowane zestawy kolorów'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','tr',{uicolor:{title:'UI Renk Seçicisi',preview:'Canlı önizleme',config:'Bu dizeyi config.js dosyasının içine yapıştırın',predefined:'Önceden tanımlanmış renk kümeleri'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','ug',{uicolor:{title:'ئىشلەتكۈچى ئارايۈزى رەڭ تاللىغۇچ',preview:'شۇئان ئالدىن كۆزىتىش',config:'بۇ ھەرپ تىزىقىنى config.js ھۆججەتكە چاپلايدۇ',predefined:'ئالدىن بەلگىلەنگەن رەڭلەر'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','uk',{uicolor:{title:'Color Picker Інтерфейс',preview:'Перегляд наживо',config:'Вставте цей рядок у файл config.js',predefined:'Стандартний набір кольорів'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','vi',{uicolor:{title:'Giao diện người dùng Color Picker',preview:'Xem trước trực tiếp',config:'Dán chuỗi này vào tập tin config.js của bạn',predefined:'Tập màu định nghĩa sẵn'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang('uicolor','zh-cn',{uicolor:{title:'用户界面颜色选择器',preview:'即时预览',config:'粘贴此字符串到你的 config.js 文件',predefined:'预定义颜色集'}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/plugin.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | 6 | CKEDITOR.plugins.add('uicolor',{requires:['dialog'],lang:['bg','cs','cy','da','de','el','en','eo','et','fa','fi','fr','he','hr','it','mk','nb','nl','no','pl','tr','ug','uk','vi','zh-cn'],init:function(a){if(CKEDITOR.env.ie6Compat)return;a.addCommand('uicolor',new CKEDITOR.dialogCommand('uicolor'));a.ui.addButton('UIColor',{label:a.lang.uicolor.title,command:'uicolor',icon:this.path+'uicolor.gif'});CKEDITOR.dialog.add('uicolor',this.path+'dialogs/uicolor.js');CKEDITOR.scriptLoader.load(CKEDITOR.getUrl('plugins/uicolor/yui/yui.js'));a.element.getDocument().appendStyleSheet(CKEDITOR.getUrl('plugins/uicolor/yui/assets/yui.css'));}}); 7 | -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/uicolor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/uicolor/uicolor.gif -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /public/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /public/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /public/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /public/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /public/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /public/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /public/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /public/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /public/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /public/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /public/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |
 2 | 
 3 | -------------------------------------------------------------------------------------------
 4 |   CKEditor - Posted Data
 5 | 
 6 |   We are sorry, but your Web server does not support the PHP language used in this script.
 7 | 
 8 |   Please note that CKEditor can be used with any other server-side language than just PHP.
 9 |   To save the content created with CKEditor you need to read the POST data on the server
10 |   side and write it to a file or the database.
11 | 
12 |   Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
13 |   For licensing, see LICENSE.md or http://ckeditor.com/license
14 | -------------------------------------------------------------------------------------------
15 | 
16 | 
*/ include "assets/posteddata.php"; ?> 17 | -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/font/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "", 3 | "css_prefix_text": "icon-", 4 | "css_use_suffix": false, 5 | "hinting": true, 6 | "units_per_em": 1000, 7 | "ascent": 850, 8 | "glyphs": [ 9 | { 10 | "uid": "f48ae54adfb27d8ada53d0fd9e34ee10", 11 | "css": "trash-empty", 12 | "code": 59392, 13 | "src": "fontawesome" 14 | }, 15 | { 16 | "uid": "1c4068ed75209e21af36017df8871802", 17 | "css": "down-big", 18 | "code": 59393, 19 | "src": "fontawesome" 20 | }, 21 | { 22 | "uid": "95376bf082bfec6ce06ea1cda7bd7ead", 23 | "css": "up-big", 24 | "code": 59394, 25 | "src": "fontawesome" 26 | } 27 | ] 28 | } -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /public/ckeditor/samples/toolbarconfigurator/lib/codemirror/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/icons.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/skins/kama/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/kama/images/toolbar_start.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /public/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/icons.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/skins/office2003/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/office2003/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/icons.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/icons_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/icons_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/dialog_sides.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/dialog_sides.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/dialog_sides.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/dialog_sides.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/dialog_sides_rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/dialog_sides_rtl.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/mini.gif -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/noimage.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/sprites.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/sprites.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/sprites_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/sprites_ie6.png -------------------------------------------------------------------------------- /public/ckeditor/skins/v2/images/toolbar_start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/ckeditor/skins/v2/images/toolbar_start.gif -------------------------------------------------------------------------------- /public/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /public/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/1.jpg -------------------------------------------------------------------------------- /public/images/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/11.jpg -------------------------------------------------------------------------------- /public/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/2.jpg -------------------------------------------------------------------------------- /public/images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/3.jpg -------------------------------------------------------------------------------- /public/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/4.jpg -------------------------------------------------------------------------------- /public/images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/5.jpg -------------------------------------------------------------------------------- /public/images/594880e7ecae9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/594880e7ecae9.png -------------------------------------------------------------------------------- /public/images/Bootstrapv335_jb51.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/Bootstrapv335_jb51.rar -------------------------------------------------------------------------------- /public/images/ab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/ab.jpg -------------------------------------------------------------------------------- /public/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/arrow.png -------------------------------------------------------------------------------- /public/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/bg.jpg -------------------------------------------------------------------------------- /public/images/bmw1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/bmw1.jpg -------------------------------------------------------------------------------- /public/images/bmw2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/bmw2.jpg -------------------------------------------------------------------------------- /public/images/bmw3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/bmw3.jpg -------------------------------------------------------------------------------- /public/images/bmw4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/bmw4.jpg -------------------------------------------------------------------------------- /public/images/city.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/city.jpg -------------------------------------------------------------------------------- /public/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/close.png -------------------------------------------------------------------------------- /public/images/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/co.png -------------------------------------------------------------------------------- /public/images/cross97.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/cross97.png -------------------------------------------------------------------------------- /public/images/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/default.jpg -------------------------------------------------------------------------------- /public/images/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/f1.jpg -------------------------------------------------------------------------------- /public/images/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/f4.jpg -------------------------------------------------------------------------------- /public/images/gen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen1.jpg -------------------------------------------------------------------------------- /public/images/gen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen2.jpg -------------------------------------------------------------------------------- /public/images/gen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen3.jpg -------------------------------------------------------------------------------- /public/images/gen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen4.jpg -------------------------------------------------------------------------------- /public/images/gen5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen5.jpg -------------------------------------------------------------------------------- /public/images/gen6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/gen6.jpg -------------------------------------------------------------------------------- /public/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/icons.png -------------------------------------------------------------------------------- /public/images/icons2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/icons2.png -------------------------------------------------------------------------------- /public/images/img-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/img-sprite.png -------------------------------------------------------------------------------- /public/images/kuaiji.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/kuaiji.jpg -------------------------------------------------------------------------------- /public/images/move-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/move-top.png -------------------------------------------------------------------------------- /public/images/nav.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/nav.png -------------------------------------------------------------------------------- /public/images/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/next.png -------------------------------------------------------------------------------- /public/images/passcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/passcode.jpg -------------------------------------------------------------------------------- /public/images/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/pic1.jpg -------------------------------------------------------------------------------- /public/images/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/pic2.jpg -------------------------------------------------------------------------------- /public/images/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/pic3.jpg -------------------------------------------------------------------------------- /public/images/pic4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/pic4.jpg -------------------------------------------------------------------------------- /public/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/plus.png -------------------------------------------------------------------------------- /public/images/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/prev.png -------------------------------------------------------------------------------- /public/images/search 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/search 1.png -------------------------------------------------------------------------------- /public/images/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/search.png -------------------------------------------------------------------------------- /public/images/sin1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/sin1.jpg -------------------------------------------------------------------------------- /public/images/sin2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/sin2.jpg -------------------------------------------------------------------------------- /public/images/sprit-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/sprit-1.png -------------------------------------------------------------------------------- /public/images/tmbg-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/tmbg-white.png -------------------------------------------------------------------------------- /public/images/y.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/y.jpg -------------------------------------------------------------------------------- /public/images/yamaha1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/yamaha1.jpg -------------------------------------------------------------------------------- /public/images/yamaha2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/images/yamaha2.jpg -------------------------------------------------------------------------------- /public/md/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | *.log 3 | *.pid 4 | *.seed 5 | node_modules/ 6 | .sass-cache/ 7 | research/ 8 | test/ 9 | backup/ 10 | examples/uploads/**/* 11 | *.bat 12 | *.sh 13 | .project 14 | .url 15 | css/*.map -------------------------------------------------------------------------------- /public/md/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "esnext": true, 3 | "bitwise": true, 4 | "camelcase": true, 5 | "curly": true, 6 | "eqeqeq": true, 7 | "immed": true, 8 | "indent": 4, 9 | "latedef": true, 10 | "newcap": true, 11 | "noarg": true, 12 | "quotmark": "double", 13 | "regexp": true, 14 | "undef": true, 15 | "unused": true, 16 | "strict": true, 17 | "trailing": true, 18 | "smarttabs": true, 19 | "white": true 20 | } -------------------------------------------------------------------------------- /public/md/BUGS.md: -------------------------------------------------------------------------------- 1 | #Bugs 2 | 3 | > 说明:删除线表示已经解决。 4 | 5 | ####IE8 6 | 7 | - ~~不能加载;~~ 8 | - flowChart(流程图)、sequenceDiagram(序列图)不支持IE8; 9 | - ~~不支持Markdown转HTML页面解析预览;~~ 10 | 11 | ####IE8 & IE9 & IE10 12 | 13 | - KaTeX会出现解析错误,但不影响程序运行; 14 | 15 | ####Sea.js 16 | 17 | - ~~Raphael.js无法加载;~~ 18 | 19 | ####Require.js 20 | 21 | - ~~CodeMirror编辑器的代码无法高亮;~~ 22 | - ~~sequenceDiagram不支持: `Uncaught TypeError: Cannot call method 'isArray' of undefined.`~~ 23 | -------------------------------------------------------------------------------- /public/md/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "editor.md", 3 | "version": "1.5.0", 4 | "homepage": "https://github.com/pandao/editor.md", 5 | "authors": [ 6 | "Pandao " 7 | ], 8 | "description": "Open source online markdown editor.", 9 | "keywords": [ 10 | "editor.md", 11 | "markdown", 12 | "editor" 13 | ], 14 | "license": "MIT", 15 | "ignore": [ 16 | "**/.*", 17 | "research", 18 | "docs", 19 | "node_modules", 20 | "bower_components", 21 | "test", 22 | "tests" 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /public/md/docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /public/md/docs/scripts/linenumber.js: -------------------------------------------------------------------------------- 1 | /*global document */ 2 | (function() { 3 | var source = document.getElementsByClassName('prettyprint source linenums'); 4 | var i = 0; 5 | var lineNumber = 0; 6 | var lineId; 7 | var lines; 8 | var totalLines; 9 | var anchorHash; 10 | 11 | if (source && source[0]) { 12 | anchorHash = document.location.hash.substring(1); 13 | lines = source[0].getElementsByTagName('li'); 14 | totalLines = lines.length; 15 | 16 | for (; i < totalLines; i++) { 17 | lineNumber++; 18 | lineId = 'line' + lineNumber; 19 | lines[i].id = lineId; 20 | if (lineId === anchorHash) { 21 | lines[i].className += ' selected'; 22 | } 23 | } 24 | } 25 | })(); 26 | -------------------------------------------------------------------------------- /public/md/docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- 1 | PR.registerLangHandler(PR.createSimpleLexer([["pln",/^[\t\n\f\r ]+/,null," \t\r\n "]],[["str",/^"(?:[^\n\f\r"\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*"/,null],["str",/^'(?:[^\n\f\r'\\]|\\(?:\r\n?|\n|\f)|\\[\S\s])*'/,null],["lang-css-str",/^url\(([^"')]*)\)/i],["kwd",/^(?:url|rgb|!important|@import|@page|@media|@charset|inherit)(?=[^\w-]|$)/i,null],["lang-css-kw",/^(-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*)\s*:/i],["com",/^\/\*[^*]*\*+(?:[^*/][^*]*\*+)*\//],["com", 2 | /^(?:<\!--|--\>)/],["lit",/^(?:\d+|\d*\.\d+)(?:%|[a-z]+)?/i],["lit",/^#[\da-f]{3,6}/i],["pln",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i],["pun",/^[^\s\w"']+/]]),["css"]);PR.registerLangHandler(PR.createSimpleLexer([],[["kwd",/^-?(?:[_a-z]|\\[\da-f]+ ?)(?:[\w-]|\\\\[\da-f]+ ?)*/i]]),["css-kw"]);PR.registerLangHandler(PR.createSimpleLexer([],[["str",/^[^"')]+/]]),["css-str"]); 3 | -------------------------------------------------------------------------------- /public/md/examples/images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/examples/images/4.jpg -------------------------------------------------------------------------------- /public/md/examples/images/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/examples/images/7.jpg -------------------------------------------------------------------------------- /public/md/examples/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/examples/images/8.jpg -------------------------------------------------------------------------------- /public/md/examples/images/editormd-screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/examples/images/editormd-screenshot.png -------------------------------------------------------------------------------- /public/md/examples/php/post.php: -------------------------------------------------------------------------------- 1 | "; 7 | echo htmlspecialchars($_POST["test-editormd-markdown-doc"]); 8 | 9 | if(isset($_POST["test-editormd-html-code"])) { 10 | echo "

"; 11 | echo htmlspecialchars($_POST["test-editormd-html-code"]); 12 | } 13 | 14 | echo ""; 15 | } 16 | 17 | exit; 18 | ?> -------------------------------------------------------------------------------- /public/md/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/md/fonts/editormd-logo.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/editormd-logo.eot -------------------------------------------------------------------------------- /public/md/fonts/editormd-logo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/editormd-logo.ttf -------------------------------------------------------------------------------- /public/md/fonts/editormd-logo.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/editormd-logo.woff -------------------------------------------------------------------------------- /public/md/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/md/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/md/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/md/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/md/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/loading.gif -------------------------------------------------------------------------------- /public/md/images/loading@2x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/loading@2x.gif -------------------------------------------------------------------------------- /public/md/images/loading@3x.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/loading@3x.gif -------------------------------------------------------------------------------- /public/md/images/logos/editormd-favicon-16x16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-favicon-16x16.ico -------------------------------------------------------------------------------- /public/md/images/logos/editormd-favicon-24x24.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-favicon-24x24.ico -------------------------------------------------------------------------------- /public/md/images/logos/editormd-favicon-32x32.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-favicon-32x32.ico -------------------------------------------------------------------------------- /public/md/images/logos/editormd-favicon-48x48.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-favicon-48x48.ico -------------------------------------------------------------------------------- /public/md/images/logos/editormd-favicon-64x64.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-favicon-64x64.ico -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-114x114.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-120x120.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-144x144.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-16x16.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-180x180.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-240x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-240x240.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-24x24.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-320x320.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-320x320.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-32x32.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-48x48.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-57x57.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-64x64.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-72x72.png -------------------------------------------------------------------------------- /public/md/images/logos/editormd-logo-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/editormd-logo-96x96.png -------------------------------------------------------------------------------- /public/md/images/logos/vi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/public/md/images/logos/vi.png -------------------------------------------------------------------------------- /public/md/lib/codemirror/README.md: -------------------------------------------------------------------------------- 1 | # CodeMirror 2 | [![Build Status](https://travis-ci.org/codemirror/CodeMirror.svg)](https://travis-ci.org/codemirror/CodeMirror) 3 | [![NPM version](https://img.shields.io/npm/v/codemirror.svg)](https://www.npmjs.org/package/codemirror) 4 | [Funding status: ![maintainer happiness](https://marijnhaverbeke.nl/fund/status_s.png)](https://marijnhaverbeke.nl/fund/) 5 | 6 | CodeMirror is a JavaScript component that provides a code editor in 7 | the browser. When a mode is available for the language you are coding 8 | in, it will color your code, and optionally help with indentation. 9 | 10 | The project page is http://codemirror.net 11 | The manual is at http://codemirror.net/doc/manual.html 12 | The contributing guidelines are in [CONTRIBUTING.md](https://github.com/codemirror/CodeMirror/blob/master/CONTRIBUTING.md) 13 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/addon/dialog/dialog.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-dialog { 2 | position: absolute; 3 | left: 0; right: 0; 4 | background: white; 5 | z-index: 15; 6 | padding: .1em .8em; 7 | overflow: hidden; 8 | color: #333; 9 | } 10 | 11 | .CodeMirror-dialog-top { 12 | border-bottom: 1px solid #eee; 13 | top: 0; 14 | } 15 | 16 | .CodeMirror-dialog-bottom { 17 | border-top: 1px solid #eee; 18 | bottom: 0; 19 | } 20 | 21 | .CodeMirror-dialog input { 22 | border: none; 23 | outline: none; 24 | background: transparent; 25 | width: 20em; 26 | color: inherit; 27 | font-family: monospace; 28 | } 29 | 30 | .CodeMirror-dialog button { 31 | font-size: 70%; 32 | } 33 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/addon/display/fullscreen.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-fullscreen { 2 | position: fixed; 3 | top: 0; left: 0; right: 0; bottom: 0; 4 | height: auto; 5 | z-index: 9; 6 | } 7 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/addon/fold/foldgutter.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-foldmarker { 2 | color: blue; 3 | text-shadow: #b9f 1px 1px 2px, #b9f -1px -1px 2px, #b9f 1px -1px 2px, #b9f -1px 1px 2px; 4 | font-family: arial; 5 | line-height: .3; 6 | cursor: pointer; 7 | } 8 | .CodeMirror-foldgutter { 9 | width: .7em; 10 | } 11 | .CodeMirror-foldgutter-open, 12 | .CodeMirror-foldgutter-folded { 13 | cursor: pointer; 14 | } 15 | .CodeMirror-foldgutter-open:after { 16 | content: "\25BE"; 17 | } 18 | .CodeMirror-foldgutter-folded:after { 19 | content: "\25B8"; 20 | } 21 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/addon/hint/show-hint.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-hints { 2 | position: absolute; 3 | z-index: 10; 4 | overflow: hidden; 5 | list-style: none; 6 | 7 | margin: 0; 8 | padding: 2px; 9 | 10 | -webkit-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 11 | -moz-box-shadow: 2px 3px 5px rgba(0,0,0,.2); 12 | box-shadow: 2px 3px 5px rgba(0,0,0,.2); 13 | border-radius: 3px; 14 | border: 1px solid silver; 15 | 16 | background: white; 17 | font-size: 90%; 18 | font-family: monospace; 19 | 20 | max-height: 20em; 21 | overflow-y: auto; 22 | } 23 | 24 | .CodeMirror-hint { 25 | margin: 0; 26 | padding: 0 4px; 27 | border-radius: 2px; 28 | max-width: 19em; 29 | overflow: hidden; 30 | white-space: pre; 31 | color: black; 32 | cursor: pointer; 33 | } 34 | 35 | li.CodeMirror-hint-active { 36 | background: #08f; 37 | color: white; 38 | } 39 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/addon/search/matchesonscrollbar.css: -------------------------------------------------------------------------------- 1 | .CodeMirror-search-match { 2 | background: gold; 3 | border-top: 1px solid orange; 4 | border-bottom: 1px solid orange; 5 | -moz-box-sizing: border-box; 6 | box-sizing: border-box; 7 | opacity: .5; 8 | } 9 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "codemirror", 3 | "version":"5.0.0", 4 | "main": ["lib/codemirror.js", "lib/codemirror.css"], 5 | "ignore": [ 6 | "**/.*", 7 | "node_modules", 8 | "components", 9 | "bin", 10 | "demo", 11 | "doc", 12 | "test", 13 | "index.html", 14 | "package.json" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/mode/ruby/test.js: -------------------------------------------------------------------------------- 1 | // CodeMirror, copyright (c) by Marijn Haverbeke and others 2 | // Distributed under an MIT license: http://codemirror.net/LICENSE 3 | 4 | (function() { 5 | var mode = CodeMirror.getMode({indentUnit: 2}, "ruby"); 6 | function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } 7 | 8 | MT("divide_equal_operator", 9 | "[variable bar] [operator /=] [variable foo]"); 10 | 11 | MT("divide_equal_operator_no_spacing", 12 | "[variable foo][operator /=][number 42]"); 13 | 14 | })(); 15 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/mode/tiddlywiki/tiddlywiki.css: -------------------------------------------------------------------------------- 1 | span.cm-underlined { 2 | text-decoration: underline; 3 | } 4 | span.cm-strikethrough { 5 | text-decoration: line-through; 6 | } 7 | span.cm-brace { 8 | color: #170; 9 | font-weight: bold; 10 | } 11 | span.cm-table { 12 | color: blue; 13 | font-weight: bold; 14 | } 15 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/mode/tiki/tiki.css: -------------------------------------------------------------------------------- 1 | .cm-tw-syntaxerror { 2 | color: #FFF; 3 | background-color: #900; 4 | } 5 | 6 | .cm-tw-deleted { 7 | text-decoration: line-through; 8 | } 9 | 10 | .cm-tw-header5 { 11 | font-weight: bold; 12 | } 13 | .cm-tw-listitem:first-child { /*Added first child to fix duplicate padding when highlighting*/ 14 | padding-left: 10px; 15 | } 16 | 17 | .cm-tw-box { 18 | border-top-width: 0px ! important; 19 | border-style: solid; 20 | border-width: 1px; 21 | border-color: inherit; 22 | } 23 | 24 | .cm-tw-underline { 25 | text-decoration: underline; 26 | } -------------------------------------------------------------------------------- /public/md/lib/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/theme/elegant.css: -------------------------------------------------------------------------------- 1 | .cm-s-elegant span.cm-number, .cm-s-elegant span.cm-string, .cm-s-elegant span.cm-atom {color: #762;} 2 | .cm-s-elegant span.cm-comment {color: #262; font-style: italic; line-height: 1em;} 3 | .cm-s-elegant span.cm-meta {color: #555; font-style: italic; line-height: 1em;} 4 | .cm-s-elegant span.cm-variable {color: black;} 5 | .cm-s-elegant span.cm-variable-2 {color: #b11;} 6 | .cm-s-elegant span.cm-qualifier {color: #555;} 7 | .cm-s-elegant span.cm-keyword {color: #730;} 8 | .cm-s-elegant span.cm-builtin {color: #30a;} 9 | .cm-s-elegant span.cm-link {color: #762;} 10 | .cm-s-elegant span.cm-error {background-color: #fdd;} 11 | 12 | .cm-s-elegant .CodeMirror-activeline-background {background: #e8f2ff !important;} 13 | .cm-s-elegant .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 14 | -------------------------------------------------------------------------------- /public/md/lib/codemirror/theme/neat.css: -------------------------------------------------------------------------------- 1 | .cm-s-neat span.cm-comment { color: #a86; } 2 | .cm-s-neat span.cm-keyword { line-height: 1em; font-weight: bold; color: blue; } 3 | .cm-s-neat span.cm-string { color: #a22; } 4 | .cm-s-neat span.cm-builtin { line-height: 1em; font-weight: bold; color: #077; } 5 | .cm-s-neat span.cm-special { line-height: 1em; font-weight: bold; color: #0aa; } 6 | .cm-s-neat span.cm-variable { color: black; } 7 | .cm-s-neat span.cm-number, .cm-s-neat span.cm-atom { color: #3a3; } 8 | .cm-s-neat span.cm-meta {color: #555;} 9 | .cm-s-neat span.cm-link { color: #3a3; } 10 | 11 | .cm-s-neat .CodeMirror-activeline-background {background: #e8f2ff !important;} 12 | .cm-s-neat .CodeMirror-matchingbracket {outline:1px solid grey; color:black !important;} 13 | -------------------------------------------------------------------------------- /public/md/scss/editormd.themes.scss: -------------------------------------------------------------------------------- 1 | /* Editor.md Dark theme */ 2 | 3 | #{$prefix}theme-dark { 4 | border-color: #1a1a17; 5 | 6 | #{$prefix}toolbar { 7 | background: #1A1A17; 8 | border-color: #1a1a17; 9 | } 10 | 11 | #{$prefix}menu > li > a { 12 | color: #777; 13 | border-color: #1a1a17; 14 | 15 | &:hover, &.active { 16 | border-color: #333; 17 | background: #333; 18 | } 19 | } 20 | 21 | #{$prefix}menu > li.divider { 22 | border-right: 1px solid #111; 23 | } 24 | 25 | .CodeMirror { 26 | border-right: 1px solid rgba(0,0,0,0.1); 27 | } 28 | } -------------------------------------------------------------------------------- /public/md/scss/lib/variables.scss: -------------------------------------------------------------------------------- 1 | @charset "UTF-8"; 2 | 3 | // Global Variables 4 | 5 | $prefix : ".editormd-"; 6 | $color : #666; 7 | $mainColor : #2196F3; 8 | $primaryColor : $mainColor; 9 | $secondColor : #33CC66; 10 | $thirdColor : #999999; 11 | $borderColor : #ddd; -------------------------------------------------------------------------------- /upload/2017/06/19/59477b5e996e4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/upload/2017/06/19/59477b5e996e4.jpg -------------------------------------------------------------------------------- /upload/2017/06/20/594880e7e8c68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/upload/2017/06/20/594880e7e8c68.jpg -------------------------------------------------------------------------------- /vendor/alidayu/RequestCheckUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DrCokiy/easy_mvc/6737353e3a0be48382cb2267c4f5f541adb08e29/vendor/alidayu/RequestCheckUtil.php -------------------------------------------------------------------------------- /vendor/alidayu/ResultSet.php: -------------------------------------------------------------------------------- 1 |