├── cloudFunctions ├── admin │ ├── flask_admin │ │ ├── tests │ │ │ ├── mock.py │ │ │ ├── __init__.py │ │ │ ├── fileadmin │ │ │ │ ├── files │ │ │ │ │ └── dummy.txt │ │ │ │ └── __init__.py │ │ │ ├── templates │ │ │ │ ├── method.html │ │ │ │ └── mock.html │ │ │ ├── sqla │ │ │ │ └── templates │ │ │ │ │ ├── another_macro.html │ │ │ │ │ └── macro.html │ │ │ ├── data │ │ │ │ ├── copyleft.gif │ │ │ │ ├── copyleft.jpeg │ │ │ │ ├── copyleft.jpg │ │ │ │ ├── copyleft.png │ │ │ │ └── copyleft.tiff │ │ │ ├── pymongo │ │ │ │ └── __init__.py │ │ │ └── peeweemodel │ │ │ │ └── __init__.py │ │ ├── translations │ │ │ ├── __init__.py │ │ │ └── README.md │ │ ├── contrib │ │ │ ├── pymongo │ │ │ │ ├── typefmt.py │ │ │ │ ├── __init__.py │ │ │ │ └── tools.py │ │ │ ├── sqla │ │ │ │ └── __init__.py │ │ │ ├── __init__.py │ │ │ ├── appengine │ │ │ │ ├── __init__.py │ │ │ │ └── form.py │ │ │ ├── geoa │ │ │ │ ├── __init__.py │ │ │ │ └── view.py │ │ │ ├── peewee │ │ │ │ └── __init__.py │ │ │ ├── mongoengine │ │ │ │ └── __init__.py │ │ │ ├── sqlamodel │ │ │ │ └── __init__.py │ │ │ └── peeweemodel │ │ │ │ └── __init__.py │ │ ├── templates │ │ │ ├── bootstrap2 │ │ │ │ └── admin │ │ │ │ │ ├── master.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── static.html │ │ │ │ │ ├── model │ │ │ │ │ ├── inline_form.html │ │ │ │ │ └── inline_field_list.html │ │ │ │ │ └── file │ │ │ │ │ └── form.html │ │ │ └── bootstrap3 │ │ │ │ └── admin │ │ │ │ ├── master.html │ │ │ │ ├── index.html │ │ │ │ ├── static.html │ │ │ │ ├── model │ │ │ │ └── inline_form.html │ │ │ │ └── file │ │ │ │ └── form.html │ │ ├── model │ │ │ └── __init__.py │ │ ├── __init__.py │ │ └── consts.py │ ├── Flask_CKEditor-0.4.3.dist-info │ │ ├── INSTALLER │ │ ├── top_level.txt │ │ └── WHEEL │ ├── flask_ckeditor │ │ └── static │ │ │ ├── basic │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── markdown │ │ │ │ │ ├── theme │ │ │ │ │ │ └── ambiance-mobile.css │ │ │ │ │ └── icons │ │ │ │ │ │ ├── markdown.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── markdown.png │ │ │ │ ├── widget │ │ │ │ │ ├── images │ │ │ │ │ │ └── handle.png │ │ │ │ │ ├── dev │ │ │ │ │ │ └── assets │ │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ │ ├── simplebox │ │ │ │ │ │ │ └── icons │ │ │ │ │ │ │ │ └── simplebox.png │ │ │ │ │ │ │ └── contents.css │ │ │ │ │ └── lang │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ └── el.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── codesnippet │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ └── lang │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ └── sl.js │ │ │ │ └── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ ├── samples │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── navigation-tip.png │ │ │ │ │ └── header-separator.png │ │ │ │ ├── old │ │ │ │ │ └── assets │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ └── toolbarconfigurator │ │ │ │ │ └── font │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ ├── fontello.woff │ │ │ │ │ └── LICENSE.txt │ │ │ └── skins │ │ │ │ └── moono-lisa │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ └── images │ │ │ │ ├── arrow.png │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ ├── spinner.gif │ │ │ │ ├── hidpi │ │ │ │ ├── lock.png │ │ │ │ ├── close.png │ │ │ │ ├── lock-open.png │ │ │ │ └── refresh.png │ │ │ │ └── lock-open.png │ │ │ ├── full │ │ │ ├── plugins │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── markdown │ │ │ │ │ ├── theme │ │ │ │ │ │ └── ambiance-mobile.css │ │ │ │ │ └── icons │ │ │ │ │ │ ├── markdown.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── markdown.png │ │ │ │ ├── link │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── smiley │ │ │ │ │ └── images │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ ├── wink_smile.png │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ └── whatchutalkingabout_smile.png │ │ │ │ ├── image │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ │ │ └── icon-rtl.png │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ ├── flash │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── iframe │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ └── block_blockquote.png │ │ │ │ ├── codesnippet │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ └── lang │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ ├── zh.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ └── sl.js │ │ │ │ ├── templates │ │ │ │ │ └── templates │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ └── preview │ │ │ │ │ └── preview.html │ │ │ ├── samples │ │ │ │ ├── img │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── navigation-tip.png │ │ │ │ │ └── header-separator.png │ │ │ │ ├── old │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── htmlwriter │ │ │ │ │ │ └── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ └── outputforflash.swf │ │ │ │ └── toolbarconfigurator │ │ │ │ │ └── font │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ ├── fontello.woff │ │ │ │ │ └── LICENSE.txt │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ └── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ ├── spinner.gif │ │ │ │ │ ├── hidpi │ │ │ │ │ ├── close.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── lock-open.png │ │ │ │ │ └── lock-open.png │ │ │ └── config.js │ │ │ └── standard │ │ │ ├── plugins │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── markdown │ │ │ │ ├── theme │ │ │ │ │ └── ambiance-mobile.css │ │ │ │ └── icons │ │ │ │ │ ├── markdown.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── markdown.png │ │ │ ├── link │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── image │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── widget │ │ │ │ └── images │ │ │ │ │ └── handle.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ └── hidpi │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon-rtl.png │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── logo_ckeditor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── codesnippet │ │ │ │ ├── icons │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── codesnippet.png │ │ │ │ └── lang │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ ├── zh.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── tt.js │ │ │ │ │ └── vi.js │ │ │ └── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── samples │ │ │ ├── img │ │ │ │ ├── logo.png │ │ │ │ ├── header-bg.png │ │ │ │ ├── github-top.png │ │ │ │ ├── navigation-tip.png │ │ │ │ └── header-separator.png │ │ │ ├── old │ │ │ │ ├── assets │ │ │ │ │ ├── sample.jpg │ │ │ │ │ └── inlineall │ │ │ │ │ │ └── logo.png │ │ │ │ └── htmlwriter │ │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ └── toolbarconfigurator │ │ │ │ └── font │ │ │ │ ├── fontello.eot │ │ │ │ ├── fontello.ttf │ │ │ │ ├── fontello.woff │ │ │ │ └── LICENSE.txt │ │ │ └── skins │ │ │ └── moono-lisa │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ └── images │ │ │ ├── lock.png │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── refresh.png │ │ │ ├── spinner.gif │ │ │ ├── lock-open.png │ │ │ └── hidpi │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ └── lock-open.png │ ├── templates │ │ ├── welcome.html │ │ └── edit.html │ └── requirements.txt ├── uploadPicture │ └── requirements.txt └── updateArticle │ └── requirements.txt ├── website └── static │ ├── ueditor │ ├── _test │ │ ├── tools │ │ │ ├── data │ │ │ │ ├── test.html │ │ │ │ ├── test.JPG │ │ │ │ ├── frame.html │ │ │ │ └── testReady.html │ │ │ ├── coverage │ │ │ │ ├── cov.bat │ │ │ │ └── jscoverage.exe │ │ │ └── br │ │ │ │ ├── runC.php │ │ │ │ ├── css │ │ │ │ ├── bg_button_a.gif │ │ │ │ └── bg_button_span.gif │ │ │ │ ├── js │ │ │ │ └── UserAction manual.rar │ │ │ │ ├── coverage │ │ │ │ └── jscoverage-throbber.gif │ │ │ │ ├── read.php │ │ │ │ └── batchrun.sh │ │ ├── index.php │ │ ├── 关键字.txt │ │ ├── testDesign │ │ │ ├── offical site.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 │ │ │ ├── Manual regression cases.xmind │ │ │ └── 8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg │ │ ├── coverage │ │ │ └── jscoverage-throbber.gif │ │ ├── ui │ │ │ ├── css │ │ │ │ └── DEFAULT.css │ │ │ ├── mask.js │ │ │ ├── uibase.js │ │ │ ├── editorui.js │ │ │ ├── stateful.js │ │ │ ├── uiutils.js │ │ │ └── separator.js │ │ └── plugins │ │ │ ├── autoupload.js │ │ │ ├── scrawl.js │ │ │ └── print.js │ ├── _src │ │ ├── ui │ │ │ └── ui.js │ │ ├── plugins │ │ │ ├── scrawl.js │ │ │ ├── print.js │ │ │ └── iframe.js │ │ └── editor.js │ ├── lang │ │ ├── en │ │ │ └── images │ │ │ │ ├── copy.png │ │ │ │ ├── music.png │ │ │ │ ├── button.png │ │ │ │ ├── upload.png │ │ │ │ ├── addimage.png │ │ │ │ ├── background.png │ │ │ │ ├── localimage.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ └── alldeletebtnhoverskin.png │ │ └── zh-cn │ │ │ └── images │ │ │ ├── copy.png │ │ │ ├── music.png │ │ │ ├── upload.png │ │ │ └── localimage.png │ ├── dialogs │ │ ├── table │ │ │ └── dragicon.png │ │ ├── emotion │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ ├── yface.gif │ │ │ │ └── neweditor-tab-bg.png │ │ ├── image │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── video │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ ├── success.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── right_focus.jpg │ │ │ │ └── center_focus.jpg │ │ ├── scrawl │ │ │ └── images │ │ │ │ ├── brush.png │ │ │ │ ├── empty.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ ├── undoH.png │ │ │ │ ├── addimg.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ └── scaleH.png │ │ ├── template │ │ │ └── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ ├── attachment │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ ├── success.png │ │ │ │ ├── file-icons.gif │ │ │ │ └── file-icons.png │ │ │ └── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── 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 │ │ │ │ └── icon_default.png │ │ ├── background │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── wordimage │ │ │ ├── imageUploader.swf │ │ │ └── fClipboard_ueditor.swf │ │ └── help │ │ │ └── help.css │ ├── themes │ │ ├── default │ │ │ ├── images │ │ │ │ ├── arrow.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── lock.gif │ │ │ │ ├── scale.png │ │ │ │ ├── word.gif │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow_up.png │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── filescan.png │ │ │ │ ├── loading.gif │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── upload.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── loaderror.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── wordpaste.png │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── highlighted.gif │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── table-cell-align.png │ │ │ │ └── tangram-colorpicker.png │ │ │ └── _css │ │ │ │ ├── colorbutton.css │ │ │ │ ├── shortcutmenu.css │ │ │ │ └── separtor.css │ │ └── iframe.css │ ├── jsp │ │ ├── src │ │ │ └── com │ │ │ │ └── baidu │ │ │ │ └── ueditor │ │ │ │ └── define │ │ │ │ ├── ActionState.java │ │ │ │ └── State.java │ │ └── controller.jsp │ ├── third-party │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ └── video-js.swf │ │ ├── webuploader │ │ │ └── Uploader.swf │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ └── zeroclipboard │ │ │ └── ZeroClipboard.swf │ ├── asp │ │ └── action_config.asp │ ├── .editorconfig │ └── net │ │ ├── App_Code │ │ └── ConfigHandler.cs │ │ └── Web.config │ ├── fonts │ ├── icomoon.eot │ ├── icomoon.ttf │ ├── icomoon.woff │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ └── fontawesome-webfont.woff2 │ ├── sass │ ├── components │ │ └── _icon.scss │ └── layout │ │ ├── _wrapper.scss │ │ └── _footer.scss │ └── css │ └── ie8.css ├── picture ├── login.png ├── blog_index.png ├── admin_index.png ├── blog_content.png ├── admin_category.png └── admin_add_article.png └── common ├── returnCommon.py └── testCommon.py /cloudFunctions/admin/flask_admin/tests/mock.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/translations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/pymongo/typefmt.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/fileadmin/files/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/Flask_CKEditor-0.4.3.dist-info/INSTALLER: -------------------------------------------------------------------------------- 1 | pip 2 | -------------------------------------------------------------------------------- /cloudFunctions/uploadPicture/requirements.txt: -------------------------------------------------------------------------------- 1 | cos-python-sdk-v5==1.7.7 -------------------------------------------------------------------------------- /cloudFunctions/admin/Flask_CKEditor-0.4.3.dist-info/top_level.txt: -------------------------------------------------------------------------------- 1 | flask_ckeditor 2 | -------------------------------------------------------------------------------- /cloudFunctions/updateArticle/requirements.txt: -------------------------------------------------------------------------------- 1 | html2text==2020.1.16 2 | jieba==0.42.1 3 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/templates/method.html: -------------------------------------------------------------------------------- 1 | {{ request.method }} - {{ name }} -------------------------------------------------------------------------------- /picture/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/login.png -------------------------------------------------------------------------------- /picture/blog_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/blog_index.png -------------------------------------------------------------------------------- /website/static/ueditor/_test/index.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/sqla/__init__.py: -------------------------------------------------------------------------------- 1 | # flake8: noqa 2 | from .view import ModelView 3 | -------------------------------------------------------------------------------- /picture/admin_index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/admin_index.png -------------------------------------------------------------------------------- /picture/blog_content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/blog_content.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/master.html: -------------------------------------------------------------------------------- 1 | {% extends admin_base_template %} 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap3/admin/master.html: -------------------------------------------------------------------------------- 1 | {% extends admin_base_template %} 2 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/templates/mock.html: -------------------------------------------------------------------------------- 1 | {% if admin_view %}Success!{% else %}Failure{% endif %} -------------------------------------------------------------------------------- /picture/admin_category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/admin_category.png -------------------------------------------------------------------------------- /picture/admin_add_article.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/picture/admin_add_article.png -------------------------------------------------------------------------------- /website/static/fonts/icomoon.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/icomoon.eot -------------------------------------------------------------------------------- /website/static/fonts/icomoon.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/icomoon.ttf -------------------------------------------------------------------------------- /website/static/fonts/icomoon.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/icomoon.woff -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/coverage/cov.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | jscoverage.exe --encoding=UTF-8 ../../../_src ../../coverage -------------------------------------------------------------------------------- /website/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /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/关键字.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/关键字.txt -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/sqla/templates/another_macro.html: -------------------------------------------------------------------------------- 1 | {% macro another_test() %} 2 | Hello another_test 3 | {% endmacro %} 4 | -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /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/bootstrap3/admin/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | 3 | {% block body %} 4 | {% endblock %} 5 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/translations/README.md: -------------------------------------------------------------------------------- 1 | Translations are ONLY handled through Crowdin! 2 | https://crowdin.com/project/flask-admin 3 | -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /website/static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/runC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/tools/br/runC.php -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/test.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/tools/data/test.JPG -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/contrib/__init__.py: -------------------------------------------------------------------------------- 1 | try: 2 | __import__('pkg_resources').declare_namespace(__name__) 3 | except ImportError: 4 | pass 5 | -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /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/static.html: -------------------------------------------------------------------------------- 1 | {% macro url() -%} 2 | {{ get_url('admin.static', *varargs, **kwargs) }} 3 | {%- endmacro %} 4 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_admin/tests/data/copyleft.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_admin/tests/data/copyleft.jpeg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_admin/tests/data/copyleft.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_admin/tests/data/copyleft.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/tests/data/copyleft.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_admin/tests/data/copyleft.tiff -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/css/bg_button_a.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/tools/br/css/bg_button_a.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /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/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /website/static/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/website/static/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/offical site.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/testDesign/offical site.xmind -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/coverage/jscoverage.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/tools/coverage/jscoverage.exe -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /website/static/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /website/static/ueditor/_test/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/css/bg_button_span.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/website/static/ueditor/_test/tools/br/js/UserAction manual.rar -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/testDesign/VersionUpdate/readme.txt -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /website/static/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /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/static/basic/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /website/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /website/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/Manual regression cases.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/testDesign/Manual regression cases.xmind -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /website/static/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/logo.png -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/tools/br/coverage/jscoverage-throbber.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /website/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/github-top.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons.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/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-bg.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/anchor.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/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/navigation-tip.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/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/github-top.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /cloudFunctions/admin/templates/welcome.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/master.html' %} 2 | {% block body %} 3 |
4 |

欢迎使用Serverless Blog System.

5 |
6 | 7 | {% endblock %} -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.3.0.xmind: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/website/static/ueditor/_test/testDesign/VersionUpdate/test list for 1.4.3.xmind -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/img/header-separator.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /website/static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/website/static/ueditor/_test/testDesign/8eaccbef76094b364e2cfddaa1cc7cd98d109d49.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/sample.jpg -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /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 | %> -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/hidpi/markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/markdown/icons/hidpi/markdown.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /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/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/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_ckeditor/static/basic/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /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_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /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/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 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/widget/dev/assets/simplebox/icons/simplebox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/cloudFunctions/admin/flask_ckeditor/static/basic/plugins/widget/dev/assets/simplebox/icons/simplebox.png -------------------------------------------------------------------------------- /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_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/templates/edit.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/model/edit.html' %} 2 | 3 | {% block tail %} 4 | {{ super() }} 5 | {{ ckeditor.load() }} 6 | {% endblock %} -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/frame.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 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 | } -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/full/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anycodes/ServerlessBlog/HEAD/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/HEAD/cloudFunctions/admin/flask_ckeditor/static/standard/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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_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/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 | -------------------------------------------------------------------------------- /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/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 | } ); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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 | } ); -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/_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 | -------------------------------------------------------------------------------- /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_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 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/br/read.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /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/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_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/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/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/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/full/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/_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 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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.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/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/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 | -------------------------------------------------------------------------------- /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 | } -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/tools/data/testReady.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /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_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/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/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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 = {}; -------------------------------------------------------------------------------- /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_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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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;} -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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/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/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 | -------------------------------------------------------------------------------- /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 | %> -------------------------------------------------------------------------------- /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/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/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/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/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 | -------------------------------------------------------------------------------- /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/_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 - -------------------------------------------------------------------------------- /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/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/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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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/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 | -------------------------------------------------------------------------------- /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/net/Web.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/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/standard/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/standard/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/standard/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/standard/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 | -------------------------------------------------------------------------------- /website/static/ueditor/_test/plugins/print.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by JetBrains PhpStorm. 3 | * User: dongyancen 4 | * Date: 12-9-28 5 | * Time: 下午1:34 6 | * To change this template use File | Settings | File Templates. 7 | */ 8 | module('plugins.print'); 9 | 10 | test('print',function(){ 11 | // var editor = te.obj[0]; 12 | // var html = '

for print

'; 13 | // editor.setContent(html); 14 | // editor.execCommand('print'); 15 | // equal(editor.body.innerHTML,html,'打印不会对页面代码产生影响'); 16 | equal('',''); 17 | }); 18 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_admin/templates/bootstrap2/admin/model/inline_field_list.html: -------------------------------------------------------------------------------- 1 | {% import 'admin/model/inline_list_base.html' as base with context %} 2 | 3 | {% macro render_field(field) %} 4 | {{ field }} 5 | 6 | {% if h.is_field_error(field.errors) %} 7 | 12 | {% endif %} 13 | {% endmacro %} 14 | 15 | {{ base.render_inline_fields(field, template, render_field, check) }} 16 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'cs', { 7 | button: 'Vložit úryvek kódu', 8 | codeContents: 'Obsah kódu', 9 | emptySnippetError: 'Úryvek kódu nemůže být prázdný.', 10 | language: 'Jazyk', 11 | title: 'Úryvek kódu', 12 | pathName: 'úryvek kódu' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'da', { 7 | button: 'Indsæt kodestykket her', 8 | codeContents: 'Koden', 9 | emptySnippetError: 'Kodestykket kan ikke være tomt.', 10 | language: 'Sprog', 11 | title: 'Kodestykke', 12 | pathName: 'kodestykke' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/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/basic/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'nb', { 7 | button: 'Sett inn kodesnutt', 8 | codeContents: 'Kodeinnhold', 9 | emptySnippetError: 'En kodesnutt kan ikke være tom.', 10 | language: 'Språk', 11 | title: 'Kodesnutt', 12 | pathName: 'kodesnutt' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'pl', { 7 | button: 'Wstaw fragment kodu', 8 | codeContents: 'Treść kodu', 9 | emptySnippetError: 'Kod nie może być pusty.', 10 | language: 'Język', 11 | title: 'Fragment kodu', 12 | pathName: 'fragment kodu' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/basic/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'sl', { 7 | button: 'Vstavi odsek kode', 8 | codeContents: 'Vsebina kode', 9 | emptySnippetError: 'Odsek kode ne more biti prazen.', 10 | language: 'Jezik', 11 | title: 'Odsek kode', 12 | pathName: 'odsek kode' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'cs', { 7 | button: 'Vložit úryvek kódu', 8 | codeContents: 'Obsah kódu', 9 | emptySnippetError: 'Úryvek kódu nemůže být prázdný.', 10 | language: 'Jazyk', 11 | title: 'Úryvek kódu', 12 | pathName: 'úryvek kódu' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'da', { 7 | button: 'Indsæt kodestykket her', 8 | codeContents: 'Koden', 9 | emptySnippetError: 'Kodestykket kan ikke være tomt.', 10 | language: 'Sprog', 11 | title: 'Kodestykke', 12 | pathName: 'kodestykke' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'nb', { 7 | button: 'Sett inn kodesnutt', 8 | codeContents: 'Kodeinnhold', 9 | emptySnippetError: 'En kodesnutt kan ikke være tom.', 10 | language: 'Språk', 11 | title: 'Kodesnutt', 12 | pathName: 'kodesnutt' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'pl', { 7 | button: 'Wstaw fragment kodu', 8 | codeContents: 'Treść kodu', 9 | emptySnippetError: 'Kod nie może być pusty.', 10 | language: 'Język', 11 | title: 'Fragment kodu', 12 | pathName: 'fragment kodu' 13 | } ); 14 | -------------------------------------------------------------------------------- /cloudFunctions/admin/flask_ckeditor/static/full/plugins/codesnippet/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 | 6 | CKEDITOR.plugins.setLang( 'codesnippet', 'sl', { 7 | button: 'Vstavi odsek kode', 8 | codeContents: 'Vsebina kode', 9 | emptySnippetError: 'Odsek kode ne more biti prazen.', 10 | language: 'Jezik', 11 | title: 'Odsek kode', 12 | pathName: 'odsek kode' 13 | } ); 14 | --------------------------------------------------------------------------------