├── .gitignore ├── cloudFunctions ├── addComment │ └── index.py ├── admin │ ├── Flask_CKEditor-0.4.3.dist-info │ │ ├── INSTALLER │ │ ├── LICENSE.txt │ │ ├── METADATA │ │ ├── RECORD │ │ ├── WHEEL │ │ └── top_level.txt │ ├── app.py │ ├── flask_admin │ │ ├── __init__.py │ │ ├── _backwards.py │ │ ├── _compat.py │ │ ├── actions.py │ │ ├── babel.py │ │ ├── base.py │ │ ├── consts.py │ │ ├── contrib │ │ │ ├── __init__.py │ │ │ ├── appengine │ │ │ │ ├── __init__.py │ │ │ │ ├── fields.py │ │ │ │ ├── form.py │ │ │ │ └── view.py │ │ │ ├── fileadmin │ │ │ │ ├── __init__.py │ │ │ │ ├── azure.py │ │ │ │ └── s3.py │ │ │ ├── geoa │ │ │ │ ├── __init__.py │ │ │ │ ├── fields.py │ │ │ │ ├── form.py │ │ │ │ ├── typefmt.py │ │ │ │ ├── view.py │ │ │ │ └── widgets.py │ │ │ ├── mongoengine │ │ │ │ ├── __init__.py │ │ │ │ ├── ajax.py │ │ │ │ ├── fields.py │ │ │ │ ├── filters.py │ │ │ │ ├── form.py │ │ │ │ ├── helpers.py │ │ │ │ ├── subdoc.py │ │ │ │ ├── tools.py │ │ │ │ ├── typefmt.py │ │ │ │ ├── view.py │ │ │ │ └── widgets.py │ │ │ ├── peewee │ │ │ │ ├── __init__.py │ │ │ │ ├── ajax.py │ │ │ │ ├── filters.py │ │ │ │ ├── form.py │ │ │ │ ├── tools.py │ │ │ │ └── view.py │ │ │ ├── peeweemodel │ │ │ │ └── __init__.py │ │ │ ├── pymongo │ │ │ │ ├── __init__.py │ │ │ │ ├── filters.py │ │ │ │ ├── tools.py │ │ │ │ ├── typefmt.py │ │ │ │ └── view.py │ │ │ ├── rediscli.py │ │ │ ├── sqla │ │ │ │ ├── __init__.py │ │ │ │ ├── ajax.py │ │ │ │ ├── fields.py │ │ │ │ ├── filters.py │ │ │ │ ├── form.py │ │ │ │ ├── tools.py │ │ │ │ ├── typefmt.py │ │ │ │ ├── validators.py │ │ │ │ ├── view.py │ │ │ │ └── widgets.py │ │ │ └── sqlamodel │ │ │ │ └── __init__.py │ │ ├── form │ │ │ ├── __init__.py │ │ │ ├── fields.py │ │ │ ├── rules.py │ │ │ ├── upload.py │ │ │ ├── validators.py │ │ │ └── widgets.py │ │ ├── helpers.py │ │ ├── menu.py │ │ ├── model │ │ │ ├── __init__.py │ │ │ ├── ajax.py │ │ │ ├── base.py │ │ │ ├── fields.py │ │ │ ├── filters.py │ │ │ ├── form.py │ │ │ ├── helpers.py │ │ │ ├── template.py │ │ │ ├── typefmt.py │ │ │ └── widgets.py │ │ ├── templates │ │ │ ├── bootstrap2 │ │ │ │ └── admin │ │ │ │ │ ├── actions.html │ │ │ │ │ ├── base.html │ │ │ │ │ ├── file │ │ │ │ │ ├── form.html │ │ │ │ │ ├── list.html │ │ │ │ │ └── modals │ │ │ │ │ │ └── form.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── lib.html │ │ │ │ │ ├── master.html │ │ │ │ │ ├── model │ │ │ │ │ ├── create.html │ │ │ │ │ ├── details.html │ │ │ │ │ ├── edit.html │ │ │ │ │ ├── inline_field_list.html │ │ │ │ │ ├── inline_form.html │ │ │ │ │ ├── inline_list_base.html │ │ │ │ │ ├── layout.html │ │ │ │ │ ├── list.html │ │ │ │ │ ├── modals │ │ │ │ │ │ ├── create.html │ │ │ │ │ │ ├── details.html │ │ │ │ │ │ └── edit.html │ │ │ │ │ └── row_actions.html │ │ │ │ │ ├── rediscli │ │ │ │ │ ├── console.html │ │ │ │ │ └── response.html │ │ │ │ │ └── static.html │ │ │ └── bootstrap3 │ │ │ │ └── admin │ │ │ │ ├── actions.html │ │ │ │ ├── base.html │ │ │ │ ├── file │ │ │ │ ├── form.html │ │ │ │ ├── list.html │ │ │ │ └── modals │ │ │ │ │ └── form.html │ │ │ │ ├── index.html │ │ │ │ ├── layout.html │ │ │ │ ├── lib.html │ │ │ │ ├── master.html │ │ │ │ ├── model │ │ │ │ ├── create.html │ │ │ │ ├── details.html │ │ │ │ ├── edit.html │ │ │ │ ├── inline_field_list.html │ │ │ │ ├── inline_form.html │ │ │ │ ├── inline_list_base.html │ │ │ │ ├── layout.html │ │ │ │ ├── list.html │ │ │ │ ├── modals │ │ │ │ │ ├── create.html │ │ │ │ │ ├── details.html │ │ │ │ │ └── edit.html │ │ │ │ └── row_actions.html │ │ │ │ ├── rediscli │ │ │ │ ├── console.html │ │ │ │ └── response.html │ │ │ │ └── static.html │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── data │ │ │ │ ├── copyleft.gif │ │ │ │ ├── copyleft.jpeg │ │ │ │ ├── copyleft.jpg │ │ │ │ ├── copyleft.png │ │ │ │ └── copyleft.tiff │ │ │ ├── fileadmin │ │ │ │ ├── __init__.py │ │ │ │ ├── files │ │ │ │ │ └── dummy.txt │ │ │ │ ├── test_fileadmin.py │ │ │ │ └── test_fileadmin_azure.py │ │ │ ├── geoa │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic.py │ │ │ ├── mock.py │ │ │ ├── mongoengine │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic.py │ │ │ ├── peeweemodel │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic.py │ │ │ ├── pymongo │ │ │ │ ├── __init__.py │ │ │ │ └── test_basic.py │ │ │ ├── sqla │ │ │ │ ├── __init__.py │ │ │ │ ├── templates │ │ │ │ │ ├── another_macro.html │ │ │ │ │ └── macro.html │ │ │ │ ├── test_basic.py │ │ │ │ ├── test_form_rules.py │ │ │ │ ├── test_inlineform.py │ │ │ │ ├── test_multi_pk.py │ │ │ │ ├── test_postgres.py │ │ │ │ └── test_translation.py │ │ │ ├── templates │ │ │ │ ├── method.html │ │ │ │ └── mock.html │ │ │ ├── test_base.py │ │ │ ├── test_form_upload.py │ │ │ ├── test_helpers.py │ │ │ ├── test_model.py │ │ │ └── test_tools.py │ │ ├── tools.py │ │ └── translations │ │ │ ├── README.md │ │ │ ├── __init__.py │ │ │ ├── af │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ar │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── be │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ca_ES │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── cs │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── da │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── de │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── el │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── en │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── es │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── et │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── fa │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── fi │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── fr │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── he │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── hu │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── it │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ja │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ko │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── nl │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── no │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── pa │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── pl │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── pt │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── pt_BR │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ro │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── ru │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── sk │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── sr │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── sv │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── tr │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── uk │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── vi │ │ │ └── LC_MESSAGES │ │ │ │ └── admin.po │ │ │ ├── zh_Hans_CN │ │ │ └── LC_MESSAGES │ │ │ │ ├── adding_a_new_model_backend.po │ │ │ │ ├── admin.po │ │ │ │ ├── advanced.po │ │ │ │ ├── api.po │ │ │ │ ├── changelog.po │ │ │ │ ├── index.po │ │ │ │ └── introduction.po │ │ │ └── zh_Hant_TW │ │ │ └── LC_MESSAGES │ │ │ └── admin.po │ ├── flask_ckeditor │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── static │ │ │ ├── basic │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── 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-mx.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 │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── codesnippet │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── codesnippet.js │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.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 │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ └── codesnippet.html │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── filebrowser │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── filetools │ │ │ │ │ │ ├── dev │ │ │ │ │ │ │ └── uploaddebugger.js │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── codemirror.min.css │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── markdown.png │ │ │ │ │ │ │ └── markdown.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── codemirror-gfm-min.js │ │ │ │ │ │ │ ├── marked.js │ │ │ │ │ │ │ └── to-markdown.js │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ │ ├── cobalt.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-eighties.css │ │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ │ └── xq-light.css │ │ │ │ │ ├── popup │ │ │ │ │ │ └── plugin.js │ │ │ │ │ └── widget │ │ │ │ │ │ ├── dev │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── contents.css │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ └── simplebox │ │ │ │ │ │ │ │ ├── contents.css │ │ │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ │ └── simplebox.js │ │ │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ │ └── simplebox.png │ │ │ │ │ │ │ │ └── plugin.js │ │ │ │ │ │ ├── console.js │ │ │ │ │ │ ├── nestedwidgets.html │ │ │ │ │ │ └── widgetstyles.html │ │ │ │ │ │ ├── images │ │ │ │ │ │ └── handle.png │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── plugin.js │ │ │ │ ├── samples │ │ │ │ │ ├── css │ │ │ │ │ │ └── samples.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ ├── header-separator.png │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ └── 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 │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── inlineall.html │ │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ │ ├── jquery.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 │ │ │ │ ├── skins │ │ │ │ │ └── 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 │ │ │ │ └── styles.js │ │ │ ├── full │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ │ ├── 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-mx.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-au.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ ├── about │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ ├── clipboard │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── paste.js │ │ │ │ │ ├── codesnippet │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── codesnippet.js │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.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 │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── samples │ │ │ │ │ │ │ └── codesnippet.html │ │ │ │ │ ├── colordialog │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ ├── colordialog.css │ │ │ │ │ │ │ └── colordialog.js │ │ │ │ │ ├── copyformatting │ │ │ │ │ │ ├── cursors │ │ │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ │ │ └── cursor.svg │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── copyformatting.css │ │ │ │ │ ├── dialog │ │ │ │ │ │ └── dialogDefinition.js │ │ │ │ │ ├── div │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── div.js │ │ │ │ │ ├── filebrowser │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── filetools │ │ │ │ │ │ ├── dev │ │ │ │ │ │ │ └── uploaddebugger.js │ │ │ │ │ │ ├── lang │ │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ │ └── zh.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 │ │ │ │ │ ├── image │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ └── image.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── noimage.png │ │ │ │ │ ├── link │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ │ └── link.js │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── anchor.png │ │ │ │ │ ├── liststyle │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── liststyle.js │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ │ └── icon.png │ │ │ │ │ ├── markdown │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── codemirror.min.css │ │ │ │ │ │ ├── icons │ │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ │ └── markdown.png │ │ │ │ │ │ │ └── markdown.png │ │ │ │ │ │ ├── js │ │ │ │ │ │ │ ├── codemirror-gfm-min.js │ │ │ │ │ │ │ ├── marked.js │ │ │ │ │ │ │ └── to-markdown.js │ │ │ │ │ │ ├── plugin.js │ │ │ │ │ │ └── theme │ │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ │ ├── cobalt.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-eighties.css │ │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ │ └── xq-light.css │ │ │ │ │ ├── pagebreak │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ │ ├── pastefromword │ │ │ │ │ │ └── filter │ │ │ │ │ │ │ └── default.js │ │ │ │ │ ├── popup │ │ │ │ │ │ └── plugin.js │ │ │ │ │ ├── preview │ │ │ │ │ │ └── preview.html │ │ │ │ │ ├── scayt │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ │ └── wink_smile.png │ │ │ │ │ ├── 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-au.js │ │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ │ │ ├── ro.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 │ │ │ │ │ ├── table │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── table.js │ │ │ │ │ ├── tableselection │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ └── tableselection.css │ │ │ │ │ ├── tabletools │ │ │ │ │ │ └── dialogs │ │ │ │ │ │ │ └── tableCell.js │ │ │ │ │ ├── templates │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ │ └── templates.js │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ │ └── template3.gif │ │ │ │ │ ├── widget │ │ │ │ │ │ └── images │ │ │ │ │ │ │ └── handle.png │ │ │ │ │ └── wsc │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── wsc.css │ │ │ │ ├── samples │ │ │ │ │ ├── css │ │ │ │ │ │ └── samples.css │ │ │ │ │ ├── img │ │ │ │ │ │ ├── github-top.png │ │ │ │ │ │ ├── header-bg.png │ │ │ │ │ │ ├── header-separator.png │ │ │ │ │ │ ├── logo.png │ │ │ │ │ │ ├── logo.svg │ │ │ │ │ │ └── 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 │ │ │ │ ├── skins │ │ │ │ │ └── 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 │ │ │ │ └── styles.js │ │ │ └── standard │ │ │ │ ├── CHANGES.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ │ ├── build-config.js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── config.js │ │ │ │ ├── contents.css │ │ │ │ ├── lang │ │ │ │ ├── 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-mx.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-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── codesnippet │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── codesnippet.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.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 │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── samples │ │ │ │ │ │ └── codesnippet.html │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── filebrowser │ │ │ │ │ └── plugin.js │ │ │ │ ├── filetools │ │ │ │ │ ├── dev │ │ │ │ │ │ └── uploaddebugger.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── markdown │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── css │ │ │ │ │ │ └── codemirror.min.css │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── markdown.png │ │ │ │ │ │ └── markdown.png │ │ │ │ │ ├── js │ │ │ │ │ │ ├── codemirror-gfm-min.js │ │ │ │ │ │ ├── marked.js │ │ │ │ │ │ └── to-markdown.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── theme │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── cobalt.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-eighties.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ └── xq-light.css │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── popup │ │ │ │ │ └── plugin.js │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── 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-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.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 │ │ │ │ │ │ ├── ro.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 │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── 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 │ │ │ │ ├── skins │ │ │ │ └── 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 │ │ │ │ └── styles.js │ │ └── utils.py │ ├── flask_lambda.py │ ├── index.py │ ├── requirements.txt │ └── templates │ │ ├── edit.html │ │ ├── login.html │ │ └── welcome.html ├── getArticleContent │ └── index.py ├── getArticleList │ └── index.py ├── getCategoryList │ └── index.py ├── getComments │ └── index.py ├── getHotArticleList │ └── index.py ├── getSentence │ ├── index.py │ └── sentence.txt ├── getTagsList │ └── index.py ├── updateArticle │ ├── index.py │ └── requirements.txt ├── updateArticleWatched │ └── index.py └── uploadPicture │ ├── index.py │ └── requirements.txt ├── common ├── mysqlCommon.py ├── returnCommon.py └── testCommon.py ├── init.py ├── picture ├── admin_add_article.png ├── admin_category.png ├── admin_index.png ├── blog_content.png ├── blog_index.png └── login.png ├── readme.md ├── serverless.yaml └── website ├── content.html ├── list.html └── static ├── css ├── font-awesome.min.css ├── ie8.css ├── ie9.css ├── jsdaima.com.css ├── main.css ├── reset.min.css ├── style.css └── zzsc-demo.css ├── fonts ├── FontAwesome.otf ├── fontawesome-webfont.eot ├── fontawesome-webfont.svg ├── fontawesome-webfont.ttf ├── fontawesome-webfont.woff ├── fontawesome-webfont.woff2 ├── icomoon.eot ├── icomoon.svg ├── icomoon.ttf └── icomoon.woff ├── js ├── ie │ ├── html5shiv.js │ └── respond.min.js ├── jquery-2.1.1.min.js ├── jquery.min.js ├── jquery.svg3dtagcloud.min.js ├── main.js ├── skel.min.js ├── tagcloud.js └── util.js ├── sass ├── base │ ├── _page.scss │ └── _typography.scss ├── components │ ├── _box.scss │ ├── _button.scss │ ├── _features.scss │ ├── _form.scss │ ├── _icon.scss │ ├── _image.scss │ ├── _list.scss │ ├── _mini-posts.scss │ ├── _posts.scss │ ├── _section.scss │ └── _table.scss ├── ie8.scss ├── ie9.scss ├── layout │ ├── _banner.scss │ ├── _footer.scss │ ├── _header.scss │ ├── _main.scss │ ├── _menu.scss │ ├── _sidebar.scss │ └── _wrapper.scss ├── libs │ ├── _functions.scss │ ├── _mixins.scss │ ├── _skel.scss │ └── _vars.scss └── main.scss └── ueditor ├── .editorconfig ├── .gitignore ├── Gruntfile.js ├── LICENSE ├── README.md ├── _parse ├── background.js ├── charts.js ├── insertcode.js ├── list.js ├── parse.js ├── table.js └── video.js ├── _src ├── adapter │ ├── autosave.js │ ├── editor.js │ ├── editorui.js │ └── message.js ├── api.js ├── core │ ├── Editor.defaultoptions.js │ ├── Editor.js │ ├── EventBase.js │ ├── Range.js │ ├── Selection.js │ ├── ajax.js │ ├── browser.js │ ├── domUtils.js │ ├── dtd.js │ ├── filternode.js │ ├── filterword.js │ ├── htmlparser.js │ ├── keymap.js │ ├── loadconfig.js │ ├── localstorage.js │ ├── node.js │ ├── plugin.js │ └── utils.js ├── editor.js ├── plugins │ ├── anchor.js │ ├── autofloat.js │ ├── autoheight.js │ ├── autolink.js │ ├── autosave.js │ ├── autosubmit.js │ ├── autotypeset.js │ ├── autoupload.js │ ├── background.js │ ├── basestyle.js │ ├── blockquote.js │ ├── catchremoteimage.js │ ├── charts.js │ ├── cleardoc.js │ ├── contextmenu.js │ ├── convertcase.js │ ├── copy.js │ ├── customstyle.js │ ├── defaultfilter.js │ ├── directionality.js │ ├── dragdrop.js │ ├── elementpath.js │ ├── enterkey.js │ ├── fiximgclick.js │ ├── font.js │ ├── formatmatch.js │ ├── horizontal.js │ ├── iframe.js │ ├── image.js │ ├── indent.js │ ├── insertcode.js │ ├── insertfile.js │ ├── inserthtml.js │ ├── insertparagraph.js │ ├── justify.js │ ├── keystrokes.js │ ├── lineheight.js │ ├── link.js │ ├── list.js │ ├── music.js │ ├── pagebreak.js │ ├── paragraph.js │ ├── paste.js │ ├── preview.js │ ├── print.js │ ├── puretxtpaste.js │ ├── removeformat.js │ ├── rowspacing.js │ ├── scrawl.js │ ├── searchreplace.js │ ├── section.js │ ├── selectall.js │ ├── serverparam.js │ ├── shortcutmenu.js │ ├── simpleupload.js │ ├── snapscreen.js │ ├── source.js │ ├── table.action.js │ ├── table.cmds.js │ ├── table.core.js │ ├── table.sort.js │ ├── template.js │ ├── time.js │ ├── undo.js │ ├── video.js │ ├── webapp.js │ ├── wordcount.js │ ├── wordimage.js │ └── xssFilter.js └── ui │ ├── autotypesetbutton.js │ ├── autotypesetpicker.js │ ├── breakline.js │ ├── button.js │ ├── cellalignpicker.js │ ├── colorbutton.js │ ├── colorpicker.js │ ├── combox.js │ ├── dialog.js │ ├── mask.js │ ├── menu.js │ ├── menubutton.js │ ├── message.js │ ├── multiMenu.js │ ├── pastepicker.js │ ├── popup.js │ ├── separator.js │ ├── shortcutmenu.js │ ├── splitbutton.js │ ├── stateful.js │ ├── tablebutton.js │ ├── tablepicker.js │ ├── toolbar.js │ ├── ui.js │ ├── uibase.js │ └── uiutils.js ├── _test ├── core │ ├── Editor.js │ ├── EventBase.js │ ├── Range.js │ ├── Selection.js │ ├── ajax.js │ ├── ajax.php │ ├── browser.js │ ├── domUtils.js │ ├── filternode.js │ ├── filterword.js │ ├── htmlparser.js │ ├── localstorage.js │ ├── node.js │ ├── plugin.js │ ├── tools.js │ └── utils.js ├── coverage │ ├── api.js │ ├── commands.js │ ├── core │ │ ├── Editor.js │ │ ├── EventBase.js │ │ ├── Range.js │ │ ├── Selection.js │ │ ├── ajax.js │ │ ├── browser.js │ │ ├── domUtils.js │ │ ├── dtd.js │ │ ├── filternode.js │ │ ├── filterword.js │ │ ├── htmlparser.js │ │ ├── node.js │ │ └── utils.js │ ├── customEvent.js │ ├── editor.js │ ├── jscoverage-highlight.css │ ├── jscoverage-ie.css │ ├── jscoverage-throbber.gif │ ├── jscoverage.css │ ├── jscoverage.html │ ├── jscoverage.js │ ├── plugins │ │ ├── anchor.js │ │ ├── autofloat.js │ │ ├── autoheight.js │ │ ├── autolink.js │ │ ├── autosubmit.js │ │ ├── autotypeset.js │ │ ├── background.js │ │ ├── basestyle.js │ │ ├── blockquote.js │ │ ├── catchremoteimage.js │ │ ├── cleardoc.js │ │ ├── contextmenu.js │ │ ├── convertcase.js │ │ ├── customstyle.js │ │ ├── defaultfilter.js │ │ ├── directionality.js │ │ ├── dragdrop.js │ │ ├── elementpath.js │ │ ├── enterkey.js │ │ ├── fiximgclick.js │ │ ├── font.js │ │ ├── formatmatch.js │ │ ├── horizontal.js │ │ ├── iframe.js │ │ ├── image.js │ │ ├── indent.js │ │ ├── insertcode.js │ │ ├── inserthtml.js │ │ ├── insertparagraph.js │ │ ├── justify.js │ │ ├── keystrokes.js │ │ ├── lineheight.js │ │ ├── link.js │ │ ├── list.js │ │ ├── music.js │ │ ├── pagebreak.js │ │ ├── paragraph.js │ │ ├── paste.js │ │ ├── preview.js │ │ ├── print.js │ │ ├── puretxtpaste.js │ │ ├── removeformat.js │ │ ├── rowspacing.js │ │ ├── scrawl.js │ │ ├── searchreplace.js │ │ ├── selectall.js │ │ ├── shortcutmenu.js │ │ ├── snapscreen.js │ │ ├── source.js │ │ ├── table.action.js │ │ ├── table.cmds.js │ │ ├── table.core.js │ │ ├── template.js │ │ ├── time.js │ │ ├── undo.js │ │ ├── video.js │ │ ├── webapp.js │ │ ├── wordcount.js │ │ └── wordimage.js │ └── ui │ │ ├── autotypesetbutton.js │ │ ├── autotypesetpicker.js │ │ ├── breakline.js │ │ ├── button.js │ │ ├── cellalignpicker.js │ │ ├── colorbutton.js │ │ ├── colorpicker.js │ │ ├── combox.js │ │ ├── dialog.js │ │ ├── editor.js │ │ ├── editorui.js │ │ ├── mask.js │ │ ├── menu.js │ │ ├── menubutton.js │ │ ├── multiMenu.js │ │ ├── pastepicker.js │ │ ├── popup.js │ │ ├── separator.js │ │ ├── shortcutmenu.js │ │ ├── splitbutton.js │ │ ├── stateful.js │ │ ├── tablebutton.js │ │ ├── tablepicker.js │ │ ├── toolbar.js │ │ ├── ui.js │ │ ├── uibase.js │ │ └── uiutils.js ├── editor_config.js ├── editor_config_src.js ├── import.js ├── index.php ├── plugins │ ├── anchor.js │ ├── auto.js │ ├── autofloat.js │ ├── autoheight.js │ ├── autolink.js │ ├── autosave.js │ ├── autotypeset.js │ ├── autoupload.js │ ├── background.js │ ├── basestyle.js │ ├── blockquote.js │ ├── catchremoteimage.js │ ├── charts.js │ ├── cleardoc.js │ ├── contextmenu.js │ ├── convertcase.js │ ├── copy.js │ ├── customstyle.js │ ├── defaultfilter.js │ ├── directionality.js │ ├── dragdrop.js │ ├── elementpath.js │ ├── enterkey.js │ ├── fiximgclick.js │ ├── font.js │ ├── formatmatch.js │ ├── horizontal.js │ ├── iframe.js │ ├── image.js │ ├── indent.js │ ├── insertcode.js │ ├── inserthtml.js │ ├── insertparagraph.js │ ├── justify.js │ ├── keystrokes.js │ ├── lineheight.js │ ├── link.js │ ├── list.js │ ├── music.js │ ├── pagebreak.js │ ├── paragraph.js │ ├── paste.js │ ├── preview.js │ ├── print.js │ ├── removeformat.js │ ├── rowspacing.js │ ├── scrawl.js │ ├── searchreplace.js │ ├── section.js │ ├── selectall.js │ ├── serverparam.js │ ├── shortcutkeys.js │ ├── shortcutmenu.js │ ├── snapscreen.js │ ├── source.js │ ├── table.action.js │ ├── table.cmds.js │ ├── table.core.js │ ├── table.sort.js │ ├── template.js │ ├── time.js │ ├── tools.js │ ├── ueditor.config.js │ ├── undo.js │ ├── video.js │ ├── webapp.js │ ├── wordcount.js │ └── wordimage.js ├── qunit │ ├── jquery-1.5.1.js │ ├── qunit.css │ ├── qunit.js │ └── tools.js ├── testDesign │ ├── 8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg │ ├── Manual regression cases.xmind │ ├── VersionUpdate │ │ ├── readme.txt │ │ ├── test list for 1.3.0.xmind │ │ ├── test list for 1.3.6.xmind │ │ ├── test list for 1.4.0.xmind │ │ └── test list for 1.4.3.xmind │ ├── demo_1.3.0 │ │ ├── IEAutolinkFalse_demo.html │ │ └── uparse.html │ ├── demo_1.3.6 │ │ ├── Demo_3831.html │ │ └── Demo_contentchange.html │ ├── demo_1.4.0 │ │ └── uparsedemo.html │ └── offical site.xmind ├── tools │ ├── br │ │ ├── analysis.php │ │ ├── batchrun.sh │ │ ├── case.class.php │ │ ├── config.php │ │ ├── coverage │ │ │ ├── jscov.php │ │ │ ├── jscoverage-highlight.css │ │ │ ├── jscoverage-ie.css │ │ │ ├── jscoverage-throbber.gif │ │ │ ├── jscoverage.css │ │ │ ├── jscoverage.html │ │ │ ├── jscoverage.js │ │ │ └── readCoverage.js │ │ ├── css │ │ │ ├── bg_button_a.gif │ │ │ ├── bg_button_span.gif │ │ │ ├── qunit.css │ │ │ ├── tangramtest.css │ │ │ └── testsuite.css │ │ ├── filehelper.php │ │ ├── geneHTML.php │ │ ├── geneHistory.php │ │ ├── geneXML.php │ │ ├── import.php │ │ ├── js │ │ │ ├── UserAction manual.rar │ │ │ ├── UserAction.js │ │ │ ├── ext_qunit.js │ │ │ ├── jquery-1.5.1.js │ │ │ ├── run.js │ │ │ ├── tangram.js │ │ │ ├── testrunner.js │ │ │ └── tools.js │ │ ├── list.php │ │ ├── log.php │ │ ├── mail.php │ │ ├── read.php │ │ ├── record.php │ │ ├── report.php │ │ ├── run.php │ │ ├── runC.php │ │ ├── runall.php │ │ └── txt │ │ │ ├── test1_1.txt │ │ │ ├── test1_2.txt │ │ │ ├── test1_3.txt │ │ │ ├── test2_1.txt │ │ │ ├── test2_2.txt │ │ │ ├── test2_3.txt │ │ │ └── test3_1.txt │ ├── coverage │ │ ├── cov.bat │ │ └── jscoverage.exe │ └── data │ │ ├── frame.html │ │ ├── frame.php │ │ ├── test.JPG │ │ ├── test.html │ │ └── testReady.html ├── ui │ ├── autotypesetbutton.js │ ├── button.js │ ├── colorbutton.js │ ├── combox.js │ ├── css │ │ └── DEFAULT.css │ ├── editor.js │ ├── editorui.js │ ├── mask.js │ ├── menu.js │ ├── menubutton.js │ ├── popup.js │ ├── separator.js │ ├── splitbutton.js │ ├── stateful.js │ ├── tablebutton.js │ ├── toolbar.js │ ├── tools.js │ ├── uibase.js │ └── uiutils.js └── 关键字.txt ├── asp ├── ASPJson.class.asp ├── MultiformProcessor.class.asp ├── PathFormatter.class.asp ├── README.md ├── Uploader.Class.asp ├── action_config.asp ├── action_crawler.asp ├── action_list.asp ├── action_upload.asp ├── config.json ├── config_loader.asp └── controller.asp ├── changelog.md ├── dialogs ├── anchor │ └── anchor.html ├── attachment │ ├── attachment.css │ ├── attachment.html │ ├── attachment.js │ ├── fileTypeImages │ │ ├── icon_chm.gif │ │ ├── icon_default.png │ │ ├── icon_doc.gif │ │ ├── icon_exe.gif │ │ ├── icon_jpg.gif │ │ ├── icon_mp3.gif │ │ ├── icon_mv.gif │ │ ├── icon_pdf.gif │ │ ├── icon_ppt.gif │ │ ├── icon_psd.gif │ │ ├── icon_rar.gif │ │ ├── icon_txt.gif │ │ └── icon_xls.gif │ └── images │ │ ├── alignicon.gif │ │ ├── alignicon.png │ │ ├── bg.png │ │ ├── file-icons.gif │ │ ├── file-icons.png │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── image.png │ │ ├── progress.png │ │ ├── success.gif │ │ └── success.png ├── background │ ├── background.css │ ├── background.html │ ├── background.js │ └── images │ │ ├── bg.png │ │ └── success.png ├── charts │ ├── chart.config.js │ ├── charts.css │ ├── charts.html │ ├── charts.js │ └── images │ │ ├── charts0.png │ │ ├── charts1.png │ │ ├── charts2.png │ │ ├── charts3.png │ │ ├── charts4.png │ │ └── charts5.png ├── emotion │ ├── emotion.css │ ├── emotion.html │ ├── emotion.js │ └── images │ │ ├── 0.gif │ │ ├── bface.gif │ │ ├── cface.gif │ │ ├── fface.gif │ │ ├── jxface2.gif │ │ ├── neweditor-tab-bg.png │ │ ├── tface.gif │ │ ├── wface.gif │ │ └── yface.gif ├── gmap │ └── gmap.html ├── help │ ├── help.css │ ├── help.html │ └── help.js ├── image │ ├── image.css │ ├── image.html │ ├── image.js │ └── images │ │ ├── alignicon.jpg │ │ ├── bg.png │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── image.png │ │ ├── progress.png │ │ ├── success.gif │ │ └── success.png ├── insertframe │ └── insertframe.html ├── internal.js ├── link │ └── link.html ├── map │ ├── map.html │ └── show.html ├── music │ ├── music.css │ ├── music.html │ └── music.js ├── preview │ └── preview.html ├── scrawl │ ├── images │ │ ├── addimg.png │ │ ├── brush.png │ │ ├── delimg.png │ │ ├── delimgH.png │ │ ├── empty.png │ │ ├── emptyH.png │ │ ├── eraser.png │ │ ├── redo.png │ │ ├── redoH.png │ │ ├── scale.png │ │ ├── scaleH.png │ │ ├── size.png │ │ ├── undo.png │ │ └── undoH.png │ ├── scrawl.css │ ├── scrawl.html │ └── scrawl.js ├── searchreplace │ ├── searchreplace.html │ └── searchreplace.js ├── snapscreen │ └── snapscreen.html ├── spechars │ ├── spechars.html │ └── spechars.js ├── table │ ├── dragicon.png │ ├── edittable.css │ ├── edittable.html │ ├── edittable.js │ ├── edittd.html │ └── edittip.html ├── template │ ├── config.js │ ├── images │ │ ├── bg.gif │ │ ├── pre0.png │ │ ├── pre1.png │ │ ├── pre2.png │ │ ├── pre3.png │ │ └── pre4.png │ ├── template.css │ ├── template.html │ └── template.js ├── video │ ├── images │ │ ├── bg.png │ │ ├── center_focus.jpg │ │ ├── file-icons.gif │ │ ├── file-icons.png │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── image.png │ │ ├── left_focus.jpg │ │ ├── none_focus.jpg │ │ ├── progress.png │ │ ├── right_focus.jpg │ │ ├── success.gif │ │ └── success.png │ ├── video.css │ ├── video.html │ └── video.js ├── webapp │ └── webapp.html └── wordimage │ ├── fClipboard_ueditor.swf │ ├── imageUploader.swf │ ├── tangram.js │ ├── wordimage.html │ └── wordimage.js ├── jsp ├── config.json ├── controller.jsp └── src │ └── com │ └── baidu │ └── ueditor │ ├── ActionEnter.java │ ├── ConfigManager.java │ ├── Encoder.java │ ├── PathFormat.java │ ├── define │ ├── ActionMap.java │ ├── ActionState.java │ ├── AppInfo.java │ ├── BaseState.java │ ├── FileType.java │ ├── MIMEType.java │ ├── MultiState.java │ └── State.java │ ├── hunter │ ├── FileManager.java │ └── ImageHunter.java │ └── upload │ ├── Base64Uploader.java │ ├── BinaryUploader.java │ ├── StorageManager.java │ └── Uploader.java ├── lang ├── en │ ├── en.js │ └── images │ │ ├── addimage.png │ │ ├── alldeletebtnhoverskin.png │ │ ├── alldeletebtnupskin.png │ │ ├── background.png │ │ ├── button.png │ │ ├── copy.png │ │ ├── deletedisable.png │ │ ├── deleteenable.png │ │ ├── listbackground.png │ │ ├── localimage.png │ │ ├── music.png │ │ ├── rotateleftdisable.png │ │ ├── rotateleftenable.png │ │ ├── rotaterightdisable.png │ │ ├── rotaterightenable.png │ │ └── upload.png └── zh-cn │ ├── images │ ├── copy.png │ ├── localimage.png │ ├── music.png │ └── upload.png │ └── zh-cn.js ├── net ├── App_Code │ ├── Config.cs │ ├── ConfigHandler.cs │ ├── CrawlerHandler.cs │ ├── Handler.cs │ ├── ListFileHandler.cs │ ├── NotSupportedHandler.cs │ ├── PathFormater.cs │ └── UploadHandler.cs ├── README.md ├── Web.config ├── config.json ├── controller.ashx └── net.sln ├── package.json ├── php ├── Uploader.class.php ├── action_crawler.php ├── action_list.php ├── action_upload.php ├── config.json └── controller.php ├── themes ├── default │ ├── _css │ │ ├── autotypesetpicker.css │ │ ├── button.css │ │ ├── buttonicon.css │ │ ├── cellalignpicker.css │ │ ├── colorbutton.css │ │ ├── colorpicker.css │ │ ├── combox.css │ │ ├── contextmenu.css │ │ ├── dialog.css │ │ ├── editor.css │ │ ├── menu.css │ │ ├── menubutton.css │ │ ├── message.css │ │ ├── multiMenu.css │ │ ├── paragraphpicker.css │ │ ├── pastepicker.css │ │ ├── popup.css │ │ ├── separtor.css │ │ ├── shortcutmenu.css │ │ ├── splitbutton.css │ │ ├── tablepicker.css │ │ ├── toolbar.css │ │ ├── ueditor.css │ │ └── uibase.css │ ├── dialogbase.css │ └── images │ │ ├── anchor.gif │ │ ├── arrow.png │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── button-bg.gif │ │ ├── cancelbutton.gif │ │ ├── charts.png │ │ ├── cursor_h.gif │ │ ├── cursor_h.png │ │ ├── cursor_v.gif │ │ ├── cursor_v.png │ │ ├── dialog-title-bg.png │ │ ├── filescan.png │ │ ├── highlighted.gif │ │ ├── icons-all.gif │ │ ├── icons.gif │ │ ├── icons.png │ │ ├── loaderror.png │ │ ├── loading.gif │ │ ├── lock.gif │ │ ├── neweditor-tab-bg.png │ │ ├── pagebreak.gif │ │ ├── scale.png │ │ ├── sortable.png │ │ ├── spacer.gif │ │ ├── sparator_v.png │ │ ├── table-cell-align.png │ │ ├── tangram-colorpicker.png │ │ ├── toolbar_bg.png │ │ ├── unhighlighted.gif │ │ ├── upload.png │ │ ├── videologo.gif │ │ ├── word.gif │ │ └── wordpaste.png └── iframe.css ├── third-party ├── SyntaxHighlighter │ ├── shCore.js │ └── shCoreDefault.css ├── codemirror │ ├── codemirror.css │ └── codemirror.js ├── highcharts │ ├── adapters │ │ ├── mootools-adapter.js │ │ ├── mootools-adapter.src.js │ │ ├── prototype-adapter.js │ │ ├── prototype-adapter.src.js │ │ ├── standalone-framework.js │ │ └── standalone-framework.src.js │ ├── highcharts-more.js │ ├── highcharts-more.src.js │ ├── highcharts.js │ ├── highcharts.src.js │ ├── modules │ │ ├── annotations.js │ │ ├── annotations.src.js │ │ ├── canvas-tools.js │ │ ├── canvas-tools.src.js │ │ ├── data.js │ │ ├── data.src.js │ │ ├── drilldown.js │ │ ├── drilldown.src.js │ │ ├── exporting.js │ │ ├── exporting.src.js │ │ ├── funnel.js │ │ ├── funnel.src.js │ │ ├── heatmap.js │ │ ├── heatmap.src.js │ │ ├── map.js │ │ ├── map.src.js │ │ ├── no-data-to-display.js │ │ └── no-data-to-display.src.js │ └── themes │ │ ├── dark-blue.js │ │ ├── dark-green.js │ │ ├── gray.js │ │ ├── grid.js │ │ └── skies.js ├── jquery-1.10.2.js ├── jquery-1.10.2.min.js ├── jquery-1.10.2.min.map ├── snapscreen │ └── UEditorSnapscreen.exe ├── video-js │ ├── font │ │ ├── vjs.eot │ │ ├── vjs.svg │ │ ├── vjs.ttf │ │ └── vjs.woff │ ├── video-js.css │ ├── video-js.min.css │ ├── video-js.swf │ ├── video.dev.js │ └── video.js ├── webuploader │ ├── Uploader.swf │ ├── webuploader.css │ ├── webuploader.custom.js │ ├── webuploader.custom.min.js │ ├── webuploader.flashonly.js │ ├── webuploader.flashonly.min.js │ ├── webuploader.html5only.js │ ├── webuploader.html5only.min.js │ ├── webuploader.js │ ├── webuploader.min.js │ ├── webuploader.withoutimage.js │ └── webuploader.withoutimage.min.js ├── xss.min.js └── zeroclipboard │ ├── ZeroClipboard.js │ ├── ZeroClipboard.min.js │ └── ZeroClipboard.swf ├── ueditor.config.js └── ueditor.parse.js /cloudFunctions/admin/Flask_CKEditor-0.4.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/Flask_CKEditor-0.4.3.dist-info/WHEEL: -------------------------------------------------------------------------------- 1 | Wheel-Version: 1.0 2 | Generator: bdist_wheel (0.31.1) 3 | Root-Is-Purelib: true 4 | Tag: py2-none-any 5 | Tag: py3-none-any 6 | 7 | -------------------------------------------------------------------------------- /cloudFunctions/admin/Flask_CKEditor-0.4.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_ckeditor 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.5.5' 2 | __author__ = 'Flask-Admin team' 3 | __email__ = 'serge.koval+github@gmail.com' 4 | 5 | from .base import expose, expose_plugview, Admin, BaseView, AdminIndexView # noqa: F401 6 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/consts.py: -------------------------------------------------------------------------------- 1 | # bootstrap glyph icon 2 | ICON_TYPE_GLYPH = 'glyph' 3 | # font awesome glyph icon 4 | ICON_TYPE_FONT_AWESOME = 'fa' 5 | # image relative to Flask static folder 6 | ICON_TYPE_IMAGE = 'image' 7 | # external image 8 | ICON_TYPE_IMAGE_URL = 'image-url' 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | __import__('pkg_resources').declare_namespace(__name__) 3 | except ImportError: 4 | pass 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/appengine/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | try: 3 | import wtforms_appengine 4 | except ImportError: 5 | raise Exception('Please install wtforms_appengine in order to use appengine backend') 6 | 7 | from .view import ModelView 8 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/appengine/form.py: -------------------------------------------------------------------------------- 1 | from wtforms_appengine.ndb import ModelConverter 2 | from .fields import GeoPtPropertyField 3 | from flask_admin.model.form import converts 4 | 5 | 6 | class AdminModelConverter(ModelConverter): 7 | @converts('GeoPt') 8 | def convert_GeoPtProperty(self, model, prop, kwargs): 9 | """Returns a form field for a ``ndb.GeoPtProperty``.""" 10 | return GeoPtPropertyField(**kwargs) 11 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/geoa/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | try: 3 | import geoalchemy2 4 | import shapely 5 | except ImportError: 6 | raise Exception('Please install geoalchemy2 and shapely in order to use geoalchemy integration') 7 | 8 | from .view import ModelView 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/geoa/view.py: -------------------------------------------------------------------------------- 1 | from flask_admin.contrib.sqla import ModelView as SQLAModelView 2 | from flask_admin.contrib.geoa import form, typefmt 3 | 4 | 5 | class ModelView(SQLAModelView): 6 | model_form_converter = form.AdminModelConverter 7 | column_type_formatters = typefmt.DEFAULT_FORMATTERS 8 | tile_layer_url = None 9 | tile_layer_attribution = None 10 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/mongoengine/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | try: 3 | import flask_mongoengine 4 | except ImportError: 5 | raise Exception('Please install flask-mongoengine in order to use mongoengine backend') 6 | 7 | from .view import ModelView 8 | from .form import EmbeddedForm 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/peewee/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | try: 3 | import peewee 4 | import wtfpeewee 5 | except ImportError: 6 | raise Exception('Please install peewee and wtf-peewee packages in order to use peewee integration') 7 | 8 | from .view import ModelView 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/peeweemodel/__init__.py: -------------------------------------------------------------------------------- 1 | def setup(): 2 | import warnings 3 | warnings.warn('Flask-Admin peewee integration module was renamed as ' 4 | 'flask_admin.contrib.peewee, please use it instead.') 5 | 6 | from flask_admin._backwards import import_redirect 7 | import_redirect(__name__, 'flask_admin.contrib.peewee') 8 | 9 | 10 | setup() 11 | del setup 12 | 13 | from ..peewee.view import ModelView # noqa: F401 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/pymongo/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | try: 3 | import pymongo 4 | except ImportError: 5 | raise Exception('Please install pymongo in order to use pymongo integration') 6 | 7 | from .view import ModelView 8 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/pymongo/tools.py: -------------------------------------------------------------------------------- 1 | import re 2 | 3 | 4 | def parse_like_term(term): 5 | """ 6 | Parse search term into (operation, term) tuple 7 | 8 | :param term: 9 | Search term 10 | """ 11 | if term.startswith('^'): 12 | return '^{}'.format(re.escape(term[1:])) 13 | elif term.startswith('='): 14 | return '^{}$'.format(re.escape(term[1:])) 15 | 16 | return re.escape(term) 17 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/pymongo/typefmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/contrib/pymongo/typefmt.py -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/sqla/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from .view import ModelView 3 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/sqlamodel/__init__.py: -------------------------------------------------------------------------------- 1 | def setup(): 2 | import warnings 3 | warnings.warn('Flask-Admin sqlalchemy integration module was renamed as ' 4 | 'flask_admin.contrib.sqla, please use it instead.') 5 | 6 | from flask_admin._backwards import import_redirect 7 | import_redirect(__name__, 'flask_admin.contrib.sqla') 8 | 9 | 10 | setup() 11 | del setup 12 | 13 | from ..sqla.view import ModelView # noqa: F401 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/model/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from .base import BaseModelView 3 | from .form import InlineFormAdmin 4 | from flask_admin.actions import action 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/file/form.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | {% import 'admin/lib.html' as lib with context %} 3 | 4 | {% block body %} 5 | {% block header %}

{{ header_text }}

{% endblock %} 6 | {% block fa_form %} 7 | {{ lib.render_form(form, dir_url) }} 8 | {% endblock %} 9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | 3 | {% block body %} 4 | {% endblock %} 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/master.html: -------------------------------------------------------------------------------- 1 | {% extends admin_base_template %} 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/model/inline_form.html: -------------------------------------------------------------------------------- 1 | {% import 'admin/lib.html' as lib with context %} 2 |
3 | {{ lib.render_form_fields(field.form, form_opts=form_opts) }} 4 |
5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/static.html: -------------------------------------------------------------------------------- 1 | {% macro url() -%} 2 | {{ get_url('admin.static', *varargs, **kwargs) }} 3 | {%- endmacro %} 4 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/file/form.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | {% import 'admin/lib.html' as lib with context %} 3 | 4 | {% block body %} 5 | {% block header %}

{{ header_text }}

{% endblock %} 6 | {% block fa_form %} 7 | {{ lib.render_form(form, dir_url) }} 8 | {% endblock %} 9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | 3 | {% block body %} 4 | {% endblock %} 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/master.html: -------------------------------------------------------------------------------- 1 | {% extends admin_base_template %} 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/model/inline_form.html: -------------------------------------------------------------------------------- 1 | {% import 'admin/lib.html' as lib with context %} 2 |
3 | {{ lib.render_form_fields(field.form, form_opts=form_opts) }} 4 |
5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/static.html: -------------------------------------------------------------------------------- 1 | {% macro url() -%} 2 | {{ get_url('admin.static', *varargs, **kwargs) }} 3 | {%- endmacro %} 4 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/__init__.py -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/data/copyleft.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/data/copyleft.jpeg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/data/copyleft.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/data/copyleft.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/data/copyleft.tiff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/fileadmin/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | from flask_admin import Admin 3 | 4 | 5 | def setup(): 6 | app = Flask(__name__) 7 | app.config['SECRET_KEY'] = '1' 8 | app.config['CSRF_ENABLED'] = False 9 | 10 | admin = Admin(app) 11 | return app, admin 12 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/fileadmin/files/dummy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/fileadmin/files/dummy.txt -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/tests/mock.py -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/peeweemodel/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Flask 2 | from flask_admin import Admin 3 | import peewee 4 | 5 | 6 | def setup(): 7 | app = Flask(__name__) 8 | app.config['SECRET_KEY'] = '1' 9 | app.config['CSRF_ENABLED'] = False 10 | app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///' 11 | 12 | db = peewee.SqliteDatabase(':memory:') 13 | admin = Admin(app) 14 | 15 | return app, db, admin 16 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/pymongo/__init__.py: -------------------------------------------------------------------------------- 1 | import pymongo 2 | 3 | from flask import Flask 4 | from flask_admin import Admin 5 | 6 | 7 | def setup(): 8 | app = Flask(__name__) 9 | app.config['SECRET_KEY'] = '1' 10 | app.config['CSRF_ENABLED'] = False 11 | 12 | conn = pymongo.Connection() 13 | db = conn.tests 14 | 15 | admin = Admin(app) 16 | 17 | return app, db, admin 18 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/sqla/templates/another_macro.html: -------------------------------------------------------------------------------- 1 | {% macro another_test() %} 2 | Hello another_test 3 | {% endmacro %} 4 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/sqla/templates/macro.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/model/create.html' %} 2 | {% import 'another_macro.html' as test_lib %} 3 | 4 | {% macro test(arg) %} 5 | Value = {{ arg }} 6 | {% endmacro %} 7 | 8 | {% macro wrap() %} 9 | 10 | {{ caller() }} 11 | 12 | {% endmacro %} 13 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/templates/method.html: -------------------------------------------------------------------------------- 1 | {{ request.method }} - {{ name }} -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/templates/mock.html: -------------------------------------------------------------------------------- 1 | {% if admin_view %}Success!{% else %}Failure{% endif %} -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/translations/README.md: -------------------------------------------------------------------------------- 1 | Translations are ONLY handled through Crowdin! 2 | https://crowdin.com/project/flask-admin 3 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/translations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_admin/translations/__init__.py -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'eo', { 7 | button: 'Enmeti kodaĵeron', 8 | codeContents: 'Kodenhavo', 9 | emptySnippetError: 'Kodaĵero ne povas esti malplena.', 10 | language: 'Lingvo', 11 | title: 'Kodaĵero', 12 | pathName: 'kodaĵero' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'fa', { 7 | button: 'قرار دادن کد قطعه', 8 | codeContents: 'محتوای کد', 9 | emptySnippetError: 'کد نمی تواند خالی باشد.', 10 | language: 'زبان', 11 | title: 'کد قطعه', 12 | pathName: 'کد قطعه' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'he', { 7 | button: 'הכנס קטע קוד', 8 | codeContents: 'תוכן קוד', 9 | emptySnippetError: 'קטע קוד לא יכול להיות ריק.', 10 | language: 'שפה', 11 | title: 'קטע קוד', 12 | pathName: 'code snippet' // MISSING 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ja', { 7 | button: 'コードスニペットを挿入', 8 | codeContents: 'コード内容', 9 | emptySnippetError: 'コードスニペットを入力してください。', 10 | language: '言語', 11 | title: 'コードスニペット', 12 | pathName: 'コードスニペット' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ko', { 7 | button: '코드 스니펫 삽입', 8 | codeContents: '코드 본문', 9 | emptySnippetError: '코드 스니펫은 빈칸일 수 없습니다.', 10 | language: '언어', 11 | title: '코드 스니펫', 12 | pathName: '코드 스니펫' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ku', { 7 | button: 'تێخستنی تیتکی کۆد', 8 | codeContents: 'ناوەڕۆکی کۆد', 9 | emptySnippetError: 'تیتکی کۆد نابێت بەتاڵ بێت.', 10 | language: 'زمان', 11 | title: 'تیتکی کۆد', 12 | pathName: 'تیتکی کۆد' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'nl', { 7 | button: 'Stuk code invoegen', 8 | codeContents: 'Code', 9 | emptySnippetError: 'Een stuk code kan niet leeg zijn.', 10 | language: 'Taal', 11 | title: 'Stuk code', 12 | pathName: 'stuk code' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ru', { 7 | button: 'Вставить сниппет', 8 | codeContents: 'Содержимое кода', 9 | emptySnippetError: 'Сниппет не может быть пустым', 10 | language: 'Язык', 11 | title: 'Сниппет', 12 | pathName: 'сниппет' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'sv', { 7 | button: 'Infoga kodsnutt', 8 | codeContents: 'Kodinnehålll', 9 | emptySnippetError: 'Innehåll krävs för kodsnutt', 10 | language: 'Språk', 11 | title: 'Kodsnutt', 12 | pathName: 'kodsnutt' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'tr', { 7 | button: 'Kod parçacığı ekle', 8 | codeContents: 'Kod', 9 | emptySnippetError: 'Kod parçacığı boş bırakılamaz', 10 | language: 'Dil', 11 | title: 'Kod parçacığı', 12 | pathName: 'kod parçacığı' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'tt', { 7 | button: 'Код өзеген өстәү', 8 | codeContents: 'Код эчтәлеге', 9 | emptySnippetError: 'Код өзеге буш булмаска тиеш.', 10 | language: 'Тел', 11 | title: 'Код өзеге', 12 | pathName: 'код өзеге' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ug', { 7 | button: 'كود پارچىسى قىستۇرۇش', 8 | codeContents: 'كود مەزمۇنى', 9 | emptySnippetError: 'كود پارچىسى بوش قالمايدۇ', 10 | language: 'تىل', 11 | title: 'كود پارچىسى', 12 | pathName: 'كود پارچىسى' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'vi', { 7 | button: 'Chèn đoạn mã', 8 | codeContents: 'Nội dung mã', 9 | emptySnippetError: 'Một đoạn mã không thể để trống.', 10 | language: 'Ngôn ngữ', 11 | title: 'Đoạn mã', 12 | pathName: 'mã dính' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh-cn', { 7 | button: '插入代码段', 8 | codeContents: '代码内容', 9 | emptySnippetError: '插入的代码不能为空。', 10 | language: '代码语言', 11 | title: '代码段', 12 | pathName: '代码段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh', { 7 | button: '插入程式碼片段', 8 | codeContents: '程式碼內容', 9 | emptySnippetError: '程式碼片段不可為空白。', 10 | language: '語言', 11 | title: '程式碼片段', 12 | pathName: '程式碼片段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/contents.css: -------------------------------------------------------------------------------- 1 | .mediumBorder { 2 | border-width: 2px; 3 | } 4 | .thickBorder { 5 | border-width: 5px; 6 | } 7 | img.thickBorder, img.mediumBorder { 8 | border-style: solid; 9 | border-color: #CCC; 10 | } 11 | .important.soMuch { 12 | margin: 25px; 13 | padding: 25px; 14 | background: red; 15 | border: none; 16 | } 17 | 18 | span.redMarker { 19 | background-color: red; 20 | } 21 | .invisible { 22 | opacity: 0.1; 23 | } -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/simplebox/icons/simplebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/simplebox/icons/simplebox.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'af', { 6 | 'move': 'Klik en trek on te beweeg', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ar', { 6 | 'move': 'إضغط و إسحب للتحريك', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/az.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'az', { 6 | 'move': 'Tıklayın və aparın', 7 | 'label': '%1 vidjet' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'bg', { 6 | 'move': 'Кликни и влачи, за да преместиш', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ca', { 6 | 'move': 'Clicar i arrossegar per moure', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cs', { 6 | 'move': 'Klepněte a táhněte pro přesunutí', 7 | 'label': 'Ovládací prvek %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'cy', { 6 | 'move': 'Clcio a llusgo i symud', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'da', { 6 | 'move': 'Klik og træk for at flytte', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'de-ch', { 6 | 'move': 'Zum Verschieben anwählen und ziehen', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'de', { 6 | 'move': 'Zum Verschieben anwählen und ziehen', 7 | 'label': '%1 Steuerelement' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'el', { 6 | 'move': 'Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en-au', { 6 | 'move': 'Click and drag to move', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en-gb', { 6 | 'move': 'Click and drag to move', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'en', { 6 | 'move': 'Click and drag to move', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'eo', { 6 | 'move': 'klaki kaj treni por movi', 7 | 'label': '%1 fenestraĵo' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/es-mx.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'es-mx', { 6 | 'move': 'Presiona y arrastra para mover', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'es', { 6 | 'move': 'Dar clic y arrastrar para mover', 7 | 'label': 'reproductor %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/eu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'eu', { 6 | 'move': 'Klikatu eta arrastatu lekuz aldatzeko', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fa', { 6 | 'move': 'کلیک و کشیدن برای جابجایی', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fi', { 6 | 'move': 'Siirrä klikkaamalla ja raahaamalla', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'fr', { 6 | 'move': 'Cliquer et glisser pour déplacer', 7 | 'label': 'Élément %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'gl', { 6 | 'move': 'Prema e arrastre para mover', 7 | 'label': 'Trebello %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'he', { 6 | 'move': 'לחץ וגרור להזזה', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hr', { 6 | 'move': 'Klikni i povuci za pomicanje', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'hu', { 6 | 'move': 'Kattints és húzd a mozgatáshoz', 7 | 'label': '%1 modul' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/id.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'id', { 6 | 'move': 'Tekan dan geser untuk memindahkan', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'it', { 6 | 'move': 'Fare clic e trascinare per spostare', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ja', { 6 | 'move': 'ドラッグして移動', 7 | 'label': '%1 ウィジェット' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'km', { 6 | 'move': 'ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ko', { 6 | 'move': '움직이려면 클릭 후 드래그 하세요', 7 | 'label': '%1 위젯' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ku', { 6 | 'move': 'کرتەبکە و ڕایبکێشە بۆ جوڵاندن', 7 | 'label': '%1 ویجێت' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'lv', { 6 | 'move': 'Klikšķina un velc, lai pārvietotu', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nb', { 6 | 'move': 'Klikk og dra for å flytte', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'nl', { 6 | 'move': 'Klik en sleep om te verplaatsen', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'no', { 6 | 'move': 'Klikk og dra for å flytte', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/oc.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'oc', { 6 | 'move': 'Clicar e lisar per desplaçar', 7 | 'label': 'Element %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pl', { 6 | 'move': 'Kliknij i przeciągnij, by przenieść.', 7 | 'label': 'Widget %1' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt-br', { 6 | 'move': 'Click e arraste para mover', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'pt', { 6 | 'move': 'Clique e arraste para mover', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ro.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ro', { 6 | 'move': 'Apasă și trage pentru a muta', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ru', { 6 | 'move': 'Нажмите и перетащите, чтобы переместить', 7 | 'label': '%1 виджет' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sk', { 6 | 'move': 'Kliknite a potiahnite pre presunutie', 7 | 'label': '%1 widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sl', { 6 | 'move': 'Kliknite in povlecite, da premaknete', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sq', { 6 | 'move': 'Kliko dhe tërhiqe për ta lëvizur', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'sv', { 6 | 'move': 'Klicka och drag för att flytta', 7 | 'label': '%1-widget' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tr', { 6 | 'move': 'Taşımak için, tıklayın ve sürükleyin', 7 | 'label': '%1 Grafik Beleşeni' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'tt', { 6 | 'move': 'Күчереп куер өчен басып шудырыгыз', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'ug', { 6 | 'move': 'يۆتكەشتە چېكىپ سۆرەڭ', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'uk', { 6 | 'move': 'Клікніть і потягніть для переміщення', 7 | 'label': '%1 віджет' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'vi', { 6 | 'move': 'Nhấp chuột và kéo để di chuyển', 7 | 'label': '%1 widget' // MISSING 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh-cn', { 6 | 'move': '点击并拖拽以移动', 7 | 'label': '%1 小部件' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | CKEDITOR.plugins.setLang( 'widget', 'zh', { 6 | 'move': '拖曳以移動', 7 | 'label': '%1 小工具' 8 | } ); 9 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/github-top.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/config.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.editorConfig = function( config ) { 7 | // Define changes to default configuration here. For example: 8 | // config.language = 'fr'; 9 | // config.uiColor = '#AADC6E'; 10 | }; 11 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/eo.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'eo', { 7 | button: 'Enmeti kodaĵeron', 8 | codeContents: 'Kodenhavo', 9 | emptySnippetError: 'Kodaĵero ne povas esti malplena.', 10 | language: 'Lingvo', 11 | title: 'Kodaĵero', 12 | pathName: 'kodaĵero' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'fa', { 7 | button: 'قرار دادن کد قطعه', 8 | codeContents: 'محتوای کد', 9 | emptySnippetError: 'کد نمی تواند خالی باشد.', 10 | language: 'زبان', 11 | title: 'کد قطعه', 12 | pathName: 'کد قطعه' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/fi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'fi', { 7 | button: 'Lisää koodileike', 8 | codeContents: 'Koodisisältö', 9 | emptySnippetError: 'Koodileike ei voi olla tyhjä.', 10 | language: 'Kieli', 11 | title: 'Koodileike', 12 | pathName: 'koodileike' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/he.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'he', { 7 | button: 'הכנס קטע קוד', 8 | codeContents: 'תוכן קוד', 9 | emptySnippetError: 'קטע קוד לא יכול להיות ריק.', 10 | language: 'שפה', 11 | title: 'קטע קוד', 12 | pathName: 'code snippet' // MISSING 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ja', { 7 | button: 'コードスニペットを挿入', 8 | codeContents: 'コード内容', 9 | emptySnippetError: 'コードスニペットを入力してください。', 10 | language: '言語', 11 | title: 'コードスニペット', 12 | pathName: 'コードスニペット' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ko', { 7 | button: '코드 스니펫 삽입', 8 | codeContents: '코드 본문', 9 | emptySnippetError: '코드 스니펫은 빈칸일 수 없습니다.', 10 | language: '언어', 11 | title: '코드 스니펫', 12 | pathName: '코드 스니펫' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ku', { 7 | button: 'تێخستنی تیتکی کۆد', 8 | codeContents: 'ناوەڕۆکی کۆد', 9 | emptySnippetError: 'تیتکی کۆد نابێت بەتاڵ بێت.', 10 | language: 'زمان', 11 | title: 'تیتکی کۆد', 12 | pathName: 'تیتکی کۆد' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/nl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'nl', { 7 | button: 'Stuk code invoegen', 8 | codeContents: 'Code', 9 | emptySnippetError: 'Een stuk code kan niet leeg zijn.', 10 | language: 'Taal', 11 | title: 'Stuk code', 12 | pathName: 'stuk code' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/ru.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ru', { 7 | button: 'Вставить сниппет', 8 | codeContents: 'Содержимое кода', 9 | emptySnippetError: 'Сниппет не может быть пустым', 10 | language: 'Язык', 11 | title: 'Сниппет', 12 | pathName: 'сниппет' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/sv.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'sv', { 7 | button: 'Infoga kodsnutt', 8 | codeContents: 'Kodinnehålll', 9 | emptySnippetError: 'Innehåll krävs för kodsnutt', 10 | language: 'Språk', 11 | title: 'Kodsnutt', 12 | pathName: 'kodsnutt' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/tr.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'tr', { 7 | button: 'Kod parçacığı ekle', 8 | codeContents: 'Kod', 9 | emptySnippetError: 'Kod parçacığı boş bırakılamaz', 10 | language: 'Dil', 11 | title: 'Kod parçacığı', 12 | pathName: 'kod parçacığı' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/tt.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'tt', { 7 | button: 'Код өзеген өстәү', 8 | codeContents: 'Код эчтәлеге', 9 | emptySnippetError: 'Код өзеге буш булмаска тиеш.', 10 | language: 'Тел', 11 | title: 'Код өзеге', 12 | pathName: 'код өзеге' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/ug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ug', { 7 | button: 'كود پارچىسى قىستۇرۇش', 8 | codeContents: 'كود مەزمۇنى', 9 | emptySnippetError: 'كود پارچىسى بوش قالمايدۇ', 10 | language: 'تىل', 11 | title: 'كود پارچىسى', 12 | pathName: 'كود پارچىسى' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/vi.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'vi', { 7 | button: 'Chèn đoạn mã', 8 | codeContents: 'Nội dung mã', 9 | emptySnippetError: 'Một đoạn mã không thể để trống.', 10 | language: 'Ngôn ngữ', 11 | title: 'Đoạn mã', 12 | pathName: 'mã dính' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh-cn', { 7 | button: '插入代码段', 8 | codeContents: '代码内容', 9 | emptySnippetError: '插入的代码不能为空。', 10 | language: '代码语言', 11 | title: '代码段', 12 | pathName: '代码段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh', { 7 | button: '插入程式碼片段', 8 | codeContents: '程式碼內容', 9 | emptySnippetError: '程式碼片段不可為空白。', 10 | language: '語言', 11 | title: '程式碼片段', 12 | pathName: '程式碼片段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/github-top.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/fa.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'fa', { 7 | button: 'قرار دادن کد قطعه', 8 | codeContents: 'محتوای کد', 9 | emptySnippetError: 'کد نمی تواند خالی باشد.', 10 | language: 'زبان', 11 | title: 'کد قطعه', 12 | pathName: 'کد قطعه' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/ja.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ja', { 7 | button: 'コードスニペットを挿入', 8 | codeContents: 'コード内容', 9 | emptySnippetError: 'コードスニペットを入力してください。', 10 | language: '言語', 11 | title: 'コードスニペット', 12 | pathName: 'コードスニペット' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/ko.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ko', { 7 | button: '코드 스니펫 삽입', 8 | codeContents: '코드 본문', 9 | emptySnippetError: '코드 스니펫은 빈칸일 수 없습니다.', 10 | language: '언어', 11 | title: '코드 스니펫', 12 | pathName: '코드 스니펫' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/ku.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'ku', { 7 | button: 'تێخستنی تیتکی کۆد', 8 | codeContents: 'ناوەڕۆکی کۆد', 9 | emptySnippetError: 'تیتکی کۆد نابێت بەتاڵ بێت.', 10 | language: 'زمان', 11 | title: 'تیتکی کۆد', 12 | pathName: 'تیتکی کۆد' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh-cn', { 7 | button: '插入代码段', 8 | codeContents: '代码内容', 9 | emptySnippetError: '插入的代码不能为空。', 10 | language: '代码语言', 11 | title: '代码段', 12 | pathName: '代码段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/lang/zh.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'zh', { 7 | button: '插入程式碼片段', 8 | codeContents: '程式碼內容', 9 | emptySnippetError: '程式碼片段不可為空白。', 10 | language: '語言', 11 | title: '程式碼片段', 12 | pathName: '程式碼片段' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/github-top.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.1.1 2 | flask_sqlalchemy==2.4.1 3 | html2text==2020.1.16 4 | snownlp==0.12.3 5 | SQLAlchemy==1.3.13 6 | werkzeug==0.16.0 7 | Flask-WTF==0.14.3 8 | WTForms==2.2.1 9 | wtf==0.1 10 | cos-python-sdk-v5==1.7.7 -------------------------------------------------------------------------------- /cloudFunctions/admin/templates/edit.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/model/edit.html' %} 2 | 3 | {% block tail %} 4 | {{ super() }} 5 | {{ ckeditor.load() }} 6 | {% endblock %} -------------------------------------------------------------------------------- /cloudFunctions/admin/templates/welcome.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | {% block body %} 3 |
4 |

欢迎使用Serverless Blog System.

5 |
6 | 7 | {% endblock %} -------------------------------------------------------------------------------- /cloudFunctions/updateArticle/requirements.txt: -------------------------------------------------------------------------------- 1 | html2text==2020.1.16 2 | jieba==0.42.1 3 | -------------------------------------------------------------------------------- /cloudFunctions/uploadPicture/requirements.txt: -------------------------------------------------------------------------------- 1 | cos-python-sdk-v5==1.7.7 -------------------------------------------------------------------------------- /common/returnCommon.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf8 -*- 2 | 3 | import uuid 4 | 5 | 6 | def return_msg(error, msg): 7 | return_data = { 8 | "uuid": str(uuid.uuid1()), 9 | "error": error, 10 | "message": msg 11 | } 12 | return return_data 13 | -------------------------------------------------------------------------------- /common/testCommon.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf8 -*- 2 | 3 | import yaml 4 | import os 5 | 6 | 7 | def setEnv(): 8 | file = open("/Users/dfounderliu/Documents/code/ServerlessBlog/serverless.yaml", 'r', encoding="utf-8") 9 | file_data = file.read() 10 | file.close() 11 | 12 | data = yaml.load(file_data, Loader=yaml.FullLoader) 13 | for eveKey, eveValue in data['Conf']['inputs'].items(): 14 | os.environ[eveKey] = str(eveValue) 15 | -------------------------------------------------------------------------------- /picture/admin_add_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/admin_add_article.png -------------------------------------------------------------------------------- /picture/admin_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/admin_category.png -------------------------------------------------------------------------------- /picture/admin_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/admin_index.png -------------------------------------------------------------------------------- /picture/blog_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/blog_content.png -------------------------------------------------------------------------------- /picture/blog_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/blog_index.png -------------------------------------------------------------------------------- /picture/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/picture/login.png -------------------------------------------------------------------------------- /website/static/css/ie8.css: -------------------------------------------------------------------------------- 1 | /* 2 | Editorial by HTML5 UP 3 | html5up.net | @ajlkn 4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | */ 6 | 7 | /* Button */ 8 | 9 | input[type="submit"], 10 | input[type="reset"], 11 | input[type="button"], 12 | button, 13 | .button { 14 | border: solid 2px #f56a6a; 15 | } 16 | 17 | /* Posts */ 18 | 19 | .posts article { 20 | width: 40%; 21 | } -------------------------------------------------------------------------------- /website/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /website/static/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/icomoon.eot -------------------------------------------------------------------------------- /website/static/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/icomoon.ttf -------------------------------------------------------------------------------- /website/static/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/fonts/icomoon.woff -------------------------------------------------------------------------------- /website/static/sass/components/_icon.scss: -------------------------------------------------------------------------------- 1 | /// 2 | /// Editorial by HTML5 UP 3 | /// html5up.net | @ajlkn 4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | /// 6 | 7 | /* Icon */ 8 | 9 | .icon { 10 | @include icon; 11 | border-bottom: none; 12 | position: relative; 13 | 14 | > .label { 15 | display: none; 16 | } 17 | } -------------------------------------------------------------------------------- /website/static/sass/layout/_footer.scss: -------------------------------------------------------------------------------- 1 | /// 2 | /// Editorial by HTML5 UP 3 | /// html5up.net | @ajlkn 4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | /// 6 | 7 | /* Footer */ 8 | 9 | #footer { 10 | .copyright { 11 | color: _palette(fg-light); 12 | font-size: 0.9em; 13 | 14 | a { 15 | color: inherit; 16 | } 17 | } 18 | } -------------------------------------------------------------------------------- /website/static/sass/layout/_wrapper.scss: -------------------------------------------------------------------------------- 1 | /// 2 | /// Editorial by HTML5 UP 3 | /// html5up.net | @ajlkn 4 | /// Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) 5 | /// 6 | 7 | /* Wrapper */ 8 | 9 | #wrapper { 10 | @include vendor('display', 'flex'); 11 | @include vendor('flex-direction', 'row-reverse'); 12 | min-height: 100vh; 13 | } -------------------------------------------------------------------------------- /website/static/ueditor/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | # Unix-style newlines with a newline ending every file 4 | [*] 5 | end_of_line = lf 6 | insert_final_newline = true 7 | charset = utf-8 8 | 9 | [*.{html,js,css,scss,xml}] 10 | indent_style = space 11 | indent_size = 4 12 | trim_trailing_whitespace = true 13 | 14 | [*.yml] 15 | indent_style = space 16 | indent_size = 2 -------------------------------------------------------------------------------- /website/static/ueditor/_src/editor.js: -------------------------------------------------------------------------------- 1 | UEDITOR_CONFIG = window.UEDITOR_CONFIG || {}; 2 | 3 | var baidu = window.baidu || {}; 4 | 5 | window.baidu = baidu; 6 | 7 | window.UE = baidu.editor = window.UE || {}; 8 | 9 | UE.plugins = {}; 10 | 11 | UE.commands = {}; 12 | 13 | UE.instants = {}; 14 | 15 | UE.I18N = {}; 16 | 17 | UE._customizeUI = {}; 18 | 19 | UE.version = "1.4.3"; 20 | 21 | var dom = UE.dom = {}; -------------------------------------------------------------------------------- /website/static/ueditor/_src/plugins/iframe.js: -------------------------------------------------------------------------------- 1 | ///import core 2 | ///import plugins\inserthtml.js 3 | ///commands 插入框架 4 | ///commandsName InsertFrame 5 | ///commandsTitle 插入Iframe 6 | ///commandsDialog dialogs\insertframe 7 | 8 | UE.plugins['insertframe'] = function() { 9 | var me =this; 10 | function deleteIframe(){ 11 | me._iframe && delete me._iframe; 12 | } 13 | 14 | me.addListener("selectionchange",function(){ 15 | deleteIframe(); 16 | }); 17 | 18 | }; 19 | 20 | -------------------------------------------------------------------------------- /website/static/ueditor/_src/plugins/print.js: -------------------------------------------------------------------------------- 1 | /** 2 | * 打印 3 | * @file 4 | * @since 1.2.6.1 5 | */ 6 | 7 | /** 8 | * 打印 9 | * @command print 10 | * @method execCommand 11 | * @param { String } cmd 命令字符串 12 | * @example 13 | * ```javascript 14 | * editor.execCommand( 'print' ); 15 | * ``` 16 | */ 17 | UE.commands['print'] = { 18 | execCommand : function(){ 19 | this.window.print(); 20 | }, 21 | notNeedUndo : 1 22 | }; 23 | 24 | -------------------------------------------------------------------------------- /website/static/ueditor/_src/plugins/scrawl.js: -------------------------------------------------------------------------------- 1 | ///import core 2 | ///commands 涂鸦 3 | ///commandsName Scrawl 4 | ///commandsTitle 涂鸦 5 | ///commandsDialog dialogs\scrawl 6 | UE.commands['scrawl'] = { 7 | queryCommandState : function(){ 8 | return ( browser.ie && browser.version <= 8 ) ? -1 :0; 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /website/static/ueditor/_src/ui/ui.js: -------------------------------------------------------------------------------- 1 | var baidu = baidu || {}; 2 | baidu.editor = baidu.editor || {}; 3 | UE.ui = baidu.editor.ui = {}; -------------------------------------------------------------------------------- /website/static/ueditor/_test/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /website/static/ueditor/_test/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/plugins/autoupload.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: Jinqn 4 | * Date: 13-10-29 5 | * Time: 下午5:14 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module('plugins.autoupload'); 9 | 10 | test('拖放图片上传',function(){ 11 | equal('',''); 12 | }); 13 | 14 | test('粘贴QQ截图',function(){ 15 | equal('',''); 16 | }); 17 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/plugins/scrawl.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created with JetBrains PhpStorm. 3 | * User: luqiong 4 | * Date: 12-11-13 5 | * Time: 下午2:13 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | 9 | module( 'plugins.scrawl' ); 10 | test( '检查高亮', function() { 11 | var editor = te.obj[0]; 12 | editor.focus(); 13 | equal( editor.queryCommandState( 'scrawl' ), ( browser.ie && browser.version <= 8 ) ? -1:0, 'check scrawl state' ); 14 | } ); 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/Manual regression cases.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/Manual regression cases.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/VersionUpdate/readme.txt -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.0.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.0.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.6.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.6.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.0.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.0.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.3.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.3.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/offical site.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/testDesign/offical site.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/batchrun.sh: -------------------------------------------------------------------------------- 1 | /home/work/.bash_profile 2 | cd /home/work/repos/Tangram-base 3 | /home/work/soft/git-1.7.3.5/bin-wrappers/git pull 4 | sh release/output.sh 5 | rm -rf test/tools/br/report 6 | wget -q -O /tmp/tmp.php http://10.32.34.115:8000/Tangram-base/test/tools/br/runall.php?clearreport=true&cov=true 7 | sleep 3m 8 | rm -rf test/tools/br/report 9 | wget -q -O /tmp/tmp.php http://10.32.34.115:8000/Tangram-base/test/tools/br/runall.php?release=true&clearreport=true 10 | cd - -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/css/bg_button_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/br/css/bg_button_a.gif -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/css/bg_button_span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/br/css/bg_button_span.gif -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/js/UserAction manual.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/br/js/UserAction manual.rar -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/read.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/runC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/br/runC.php -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/coverage/cov.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | jscoverage.exe --encoding=UTF-8 ../../../_src ../../coverage -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/coverage/jscoverage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/coverage/jscoverage.exe -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 10 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/tools/data/test.JPG -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/testReady.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/css/DEFAULT.css: -------------------------------------------------------------------------------- 1 | /* common layer */ 2 | .cssloaded { 3 | width: 20px; 4 | } 5 | /* for IE6 fixed */ 6 | body { 7 | background: url('about:blank') fixed; 8 | } 9 | 10 | .edui-editor { 11 | width: 843px; 12 | } 13 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/editorui.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:45 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.editorui' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/mask.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:45 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.mask' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/separator.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.separator' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/stateful.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.stateful' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/uibase.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.uibase' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/ui/uiutils.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-4-12 5 | * Time: 下午4:46 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module( 'ui.uiutils' ); 9 | test( '', function() { 10 | equal('','',''); 11 | } ); -------------------------------------------------------------------------------- /website/static/ueditor/_test/关键字.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/_test/关键字.txt -------------------------------------------------------------------------------- /website/static/ueditor/asp/action_config.asp: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | <% 5 | Set json = new ASPJson 6 | Set json.data = config 7 | 8 | json.PrintJson() 9 | %> -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /website/static/ueditor/jsp/controller.jsp: -------------------------------------------------------------------------------- 1 | <%@ page language="java" contentType="text/html; charset=UTF-8" 2 | import="com.baidu.ueditor.ActionEnter" 3 | pageEncoding="UTF-8"%> 4 | <%@ page trimDirectiveWhitespaces="true" %> 5 | <% 6 | 7 | request.setCharacterEncoding( "utf-8" ); 8 | response.setHeader("Content-Type" , "text/html"); 9 | 10 | String rootPath = application.getRealPath( "/" ); 11 | 12 | out.write( new ActionEnter( request, rootPath ).exec() ); 13 | 14 | %> -------------------------------------------------------------------------------- /website/static/ueditor/jsp/src/com/baidu/ueditor/define/ActionState.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | public enum ActionState { 4 | UNKNOW_ERROR 5 | } 6 | -------------------------------------------------------------------------------- /website/static/ueditor/jsp/src/com/baidu/ueditor/define/State.java: -------------------------------------------------------------------------------- 1 | package com.baidu.ueditor.define; 2 | 3 | /** 4 | * 处理状态接口 5 | * @author hancong03@baidu.com 6 | * 7 | */ 8 | public interface State { 9 | 10 | public boolean isSuccess (); 11 | 12 | public void putInfo( String name, String val ); 13 | 14 | public void putInfo ( String name, long val ); 15 | 16 | public String toJSONString (); 17 | 18 | } 19 | -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/net/App_Code/ConfigHandler.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Web; 5 | 6 | /// 7 | /// Config 的摘要说明 8 | /// 9 | public class ConfigHandler : Handler 10 | { 11 | public ConfigHandler(HttpContext context) : base(context) { } 12 | 13 | public override void Process() 14 | { 15 | WriteJson(Config.Items); 16 | } 17 | } -------------------------------------------------------------------------------- /website/static/ueditor/net/Web.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/_css/colorbutton.css: -------------------------------------------------------------------------------- 1 | /*颜色按钮 */ 2 | .edui-default .edui-toolbar .edui-colorbutton .edui-colorlump { 3 | position: absolute; 4 | overflow: hidden; 5 | bottom: 1px; 6 | left: 1px; 7 | width: 18px; 8 | height: 4px; 9 | } -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/_css/separtor.css: -------------------------------------------------------------------------------- 1 | /*分隔线*/ 2 | .edui-default .edui-toolbar .edui-separator { 3 | width: 2px; 4 | height: 20px; 5 | margin: 2px 4px 2px 3px; 6 | background: url(../images/icons.png) -181px 0; 7 | background: url(../images/icons.gif) -181px 0 \9; 8 | } 9 | -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/_css/shortcutmenu.css: -------------------------------------------------------------------------------- 1 | /*弹出菜单*/ 2 | .edui-default .edui-shortcutmenu { 3 | padding: 2px; 4 | width: 190px; 5 | height: 50px; 6 | background-color: #fff; 7 | border: 1px solid #ccc; 8 | border-radius: 5px; 9 | } 10 | -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | img { 3 | max-width: 100%; /*图片自适应宽度*/ 4 | } 5 | 6 | body { 7 | overflow-y: scroll !important; 8 | } 9 | 10 | .view { 11 | word-break: break-all; 12 | } 13 | 14 | .vote_area { 15 | display: block; 16 | } 17 | 18 | .vote_iframe { 19 | background-color: transparent; 20 | border: 0 none; 21 | height: 100%; 22 | } 23 | 24 | #edui1_imagescale { 25 | display: none !important; 26 | } 27 | 28 | /*去除点击图片后出现的拉伸边框*/ 29 | -------------------------------------------------------------------------------- /website/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /website/static/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /website/static/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /website/static/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /website/static/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /website/static/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /website/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/3b84a2a55943f54c0ec0be5bd913c0e2c6aa6d36/website/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf --------------------------------------------------------------------------------