├── README.txt ├── mysite ├── .idea │ ├── dataSources.local.xml │ ├── dataSources.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── mysite.iml │ └── workspace.xml ├── __pycache__ │ └── manage.cpython-37.pyc ├── apps │ ├── __init__.py │ ├── comment │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-35.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── handlers.cpython-35.pyc │ │ │ ├── handlers.cpython-37.pyc │ │ │ ├── models.cpython-35.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-35.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-35.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── handlers.py │ │ ├── models.py │ │ ├── static │ │ │ └── comment │ │ │ │ ├── css │ │ │ │ └── comment.css │ │ │ │ └── js │ │ │ │ ├── ckeditor.js │ │ │ │ ├── comment.js │ │ │ │ └── noti.js │ │ ├── templates │ │ │ └── comment │ │ │ │ ├── comment_form.html │ │ │ │ ├── comment_list.html │ │ │ │ ├── notis.html │ │ │ │ └── parts │ │ │ │ └── noti_list.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ ├── mainapp │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-35.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── feeds.cpython-35.pyc │ │ │ ├── feeds.cpython-37.pyc │ │ │ ├── models.cpython-35.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── search_indexes.cpython-35.pyc │ │ │ ├── search_indexes.cpython-37.pyc │ │ │ ├── sitemaps.cpython-35.pyc │ │ │ ├── sitemaps.cpython-37.pyc │ │ │ ├── urls.cpython-35.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-35.pyc │ │ │ ├── views.cpython-37.pyc │ │ │ ├── whoosh_cn_backend.cpython-35.pyc │ │ │ └── whoosh_cn_backend.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── feeds.py │ │ ├── models.py │ │ ├── search_indexes.py │ │ ├── sitemaps.py │ │ ├── static │ │ │ └── mainapp │ │ │ │ ├── css │ │ │ │ └── mainapp.css │ │ │ │ └── js │ │ │ │ ├── clockjs │ │ │ │ └── zzsz.js │ │ │ │ └── mainapp.js │ │ ├── templates │ │ │ └── mainapp │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── about.html │ │ │ │ ├── archives.html │ │ │ │ ├── article_detail.html │ │ │ │ ├── base.html │ │ │ │ ├── base_left.html │ │ │ │ ├── base_right.html │ │ │ │ ├── catalogue_detail.html │ │ │ │ ├── index.html │ │ │ │ ├── parts │ │ │ │ ├── article_list.html │ │ │ │ ├── award.html │ │ │ │ ├── carousel.html │ │ │ │ ├── footer.html │ │ │ │ └── navbar.html │ │ │ │ ├── tag_detail.html │ │ │ │ └── timeline.html │ │ ├── tests.py │ │ ├── urls.py │ │ ├── views.py │ │ └── whoosh_cn_backend.py │ ├── oauth │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-35.pyc │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── admin.cpython-35.pyc │ │ │ ├── admin.cpython-37.pyc │ │ │ ├── forms.cpython-35.pyc │ │ │ ├── forms.cpython-37.pyc │ │ │ ├── models.cpython-35.pyc │ │ │ ├── models.cpython-37.pyc │ │ │ ├── urls.cpython-35.pyc │ │ │ ├── urls.cpython-37.pyc │ │ │ ├── views.cpython-35.pyc │ │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── forms.py │ │ ├── models.py │ │ ├── templates │ │ │ └── oauth │ │ │ │ ├── profile.html │ │ │ │ └── update_profile.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── tools │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── admin.cpython-35.pyc │ │ ├── admin.cpython-37.pyc │ │ ├── models.cpython-35.pyc │ │ ├── models.cpython-37.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── views.cpython-35.pyc │ │ └── views.cpython-37.pyc │ │ ├── admin.py │ │ ├── apps.py │ │ ├── models.py │ │ ├── static │ │ └── tools │ │ │ └── js │ │ │ └── tools.js │ │ ├── templates │ │ └── tools │ │ │ ├── ssr_tool.html │ │ │ ├── tool_detail.html │ │ │ └── tool_list.html │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py ├── db.sqlite3 ├── manage.py ├── media │ ├── article │ │ └── 1.jpg │ ├── avatar │ │ └── default.jpg │ ├── award │ │ ├── default.png │ │ └── default_2P7I4px.png │ ├── brand │ │ └── logo.png │ ├── carousel │ │ └── default.jpg │ ├── ckeditor_upload │ │ └── 2019 │ │ │ └── 09 │ │ │ └── 15 │ │ │ └── 75s58pickag_1024.jpg │ ├── contact │ │ ├── default.png │ │ └── wx.jpg │ ├── favicon │ │ └── favicon.ico │ ├── tools │ │ └── 05x58PICFnC_1024.jpg │ └── top │ │ └── top.png ├── mysite │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-37.pyc │ │ ├── settings.cpython-35.pyc │ │ ├── settings.cpython-37.pyc │ │ ├── urls.cpython-35.pyc │ │ ├── urls.cpython-37.pyc │ │ ├── wsgi.cpython-35.pyc │ │ └── wsgi.cpython-37.pyc │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── scripts │ └── ssrcode.py ├── static │ ├── admin │ │ ├── css │ │ │ ├── autocomplete.css │ │ │ ├── base.css │ │ │ ├── changelists.css │ │ │ ├── dashboard.css │ │ │ ├── fonts.css │ │ │ ├── forms.css │ │ │ ├── login.css │ │ │ ├── responsive.css │ │ │ ├── responsive_rtl.css │ │ │ ├── rtl.css │ │ │ ├── vendor │ │ │ │ └── select2 │ │ │ │ │ ├── LICENSE-SELECT2.md │ │ │ │ │ ├── select2.css │ │ │ │ │ └── select2.min.css │ │ │ └── widgets.css │ │ ├── fonts │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── Roboto-Bold-webfont.woff │ │ │ ├── Roboto-Light-webfont.woff │ │ │ └── Roboto-Regular-webfont.woff │ │ ├── img │ │ │ ├── LICENSE │ │ │ ├── README.txt │ │ │ ├── calendar-icons.svg │ │ │ ├── gis │ │ │ │ ├── move_vertex_off.svg │ │ │ │ └── move_vertex_on.svg │ │ │ ├── icon-addlink.svg │ │ │ ├── icon-alert.svg │ │ │ ├── icon-calendar.svg │ │ │ ├── icon-changelink.svg │ │ │ ├── icon-clock.svg │ │ │ ├── icon-deletelink.svg │ │ │ ├── icon-no.svg │ │ │ ├── icon-unknown-alt.svg │ │ │ ├── icon-unknown.svg │ │ │ ├── icon-viewlink.svg │ │ │ ├── icon-yes.svg │ │ │ ├── inline-delete.svg │ │ │ ├── search.svg │ │ │ ├── selector-icons.svg │ │ │ ├── sorting-icons.svg │ │ │ ├── tooltag-add.svg │ │ │ └── tooltag-arrowright.svg │ │ └── js │ │ │ ├── SelectBox.js │ │ │ ├── SelectFilter2.js │ │ │ ├── actions.js │ │ │ ├── actions.min.js │ │ │ ├── admin │ │ │ ├── DateTimeShortcuts.js │ │ │ └── RelatedObjectLookups.js │ │ │ ├── autocomplete.js │ │ │ ├── calendar.js │ │ │ ├── cancel.js │ │ │ ├── change_form.js │ │ │ ├── collapse.js │ │ │ ├── collapse.min.js │ │ │ ├── core.js │ │ │ ├── inlines.js │ │ │ ├── inlines.min.js │ │ │ ├── jquery.init.js │ │ │ ├── popup_response.js │ │ │ ├── prepopulate.js │ │ │ ├── prepopulate.min.js │ │ │ ├── prepopulate_init.js │ │ │ ├── timeparse.js │ │ │ ├── urlify.js │ │ │ └── vendor │ │ │ ├── jquery │ │ │ ├── LICENSE.txt │ │ │ ├── jquery.js │ │ │ └── jquery.min.js │ │ │ ├── select2 │ │ │ ├── LICENSE.md │ │ │ ├── i18n │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-BR.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sr-Cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-CN.js │ │ │ │ └── zh-TW.js │ │ │ ├── select2.full.js │ │ │ └── select2.full.min.js │ │ │ └── xregexp │ │ │ ├── LICENSE.txt │ │ │ ├── xregexp.js │ │ │ └── xregexp.min.js │ ├── ckeditor │ │ ├── ckeditor-init.js │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── adobeair │ │ │ │ │ └── plugin.js │ │ │ │ ├── ajax │ │ │ │ │ └── plugin.js │ │ │ │ ├── autoembed │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── autogrow │ │ │ │ │ └── plugin.js │ │ │ │ ├── autolink │ │ │ │ │ └── plugin.js │ │ │ │ ├── bbcode │ │ │ │ │ └── plugin.js │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── codesnippet │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── codesnippet.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── codesnippet.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── codesnippet.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── highlight │ │ │ │ │ │ │ ├── CHANGES.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.ru.md │ │ │ │ │ │ │ ├── highlight.pack.js │ │ │ │ │ │ │ └── styles │ │ │ │ │ │ │ ├── arta.css │ │ │ │ │ │ │ ├── ascetic.css │ │ │ │ │ │ │ ├── atelier-dune.dark.css │ │ │ │ │ │ │ ├── atelier-dune.light.css │ │ │ │ │ │ │ ├── atelier-forest.dark.css │ │ │ │ │ │ │ ├── atelier-forest.light.css │ │ │ │ │ │ │ ├── atelier-heath.dark.css │ │ │ │ │ │ │ ├── atelier-heath.light.css │ │ │ │ │ │ │ ├── atelier-lakeside.dark.css │ │ │ │ │ │ │ ├── atelier-lakeside.light.css │ │ │ │ │ │ │ ├── atelier-seaside.dark.css │ │ │ │ │ │ │ ├── atelier-seaside.light.css │ │ │ │ │ │ │ ├── brown_paper.css │ │ │ │ │ │ │ ├── brown_papersq.png │ │ │ │ │ │ │ ├── dark.css │ │ │ │ │ │ │ ├── default.css │ │ │ │ │ │ │ ├── docco.css │ │ │ │ │ │ │ ├── far.css │ │ │ │ │ │ │ ├── foundation.css │ │ │ │ │ │ │ ├── github.css │ │ │ │ │ │ │ ├── googlecode.css │ │ │ │ │ │ │ ├── idea.css │ │ │ │ │ │ │ ├── ir_black.css │ │ │ │ │ │ │ ├── magula.css │ │ │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ │ ├── monokai_sublime.css │ │ │ │ │ │ │ ├── obsidian.css │ │ │ │ │ │ │ ├── paraiso.dark.css │ │ │ │ │ │ │ ├── paraiso.light.css │ │ │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ │ │ ├── railscasts.css │ │ │ │ │ │ │ ├── rainbow.css │ │ │ │ │ │ │ ├── school_book.css │ │ │ │ │ │ │ ├── school_book.png │ │ │ │ │ │ │ ├── solarized_dark.css │ │ │ │ │ │ │ ├── solarized_light.css │ │ │ │ │ │ │ ├── sunburst.css │ │ │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ │ │ ├── vs.css │ │ │ │ │ │ │ ├── xcode.css │ │ │ │ │ │ │ └── zenburn.css │ │ │ │ │ └── plugin.js │ │ │ │ ├── codesnippetgeshi │ │ │ │ │ └── plugin.js │ │ │ │ ├── colordialog │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── colordialog.css │ │ │ │ │ │ └── colordialog.js │ │ │ │ ├── copyformatting │ │ │ │ │ ├── cursors │ │ │ │ │ │ ├── cursor-disabled.svg │ │ │ │ │ │ └── cursor.svg │ │ │ │ │ └── styles │ │ │ │ │ │ └── copyformatting.css │ │ │ │ ├── devtools │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── div │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── div.js │ │ │ │ ├── divarea │ │ │ │ │ └── plugin.js │ │ │ │ ├── docprops │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── docprops.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ ├── docprops.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ ├── docprops-rtl.png │ │ │ │ │ │ │ └── docprops.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── embed │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── embed.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── embed.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── embedbase │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── embedbase.js │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── embedsemantic │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── embedsemantic.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── embedsemantic.png │ │ │ │ │ └── plugin.js │ │ │ │ ├── filetools │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── find │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── find.js │ │ │ │ ├── flash │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── flash.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── forms │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── button.js │ │ │ │ │ │ ├── checkbox.js │ │ │ │ │ │ ├── form.js │ │ │ │ │ │ ├── hiddenfield.js │ │ │ │ │ │ ├── radio.js │ │ │ │ │ │ ├── select.js │ │ │ │ │ │ ├── textarea.js │ │ │ │ │ │ └── textfield.js │ │ │ │ │ └── images │ │ │ │ │ │ └── hiddenfield.gif │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── iframe │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── iframe.js │ │ │ │ │ └── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ ├── iframedialog │ │ │ │ │ └── plugin.js │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── image2 │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image2.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── image.png │ │ │ │ │ │ └── image.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── language │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── language.png │ │ │ │ │ │ └── language.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── lineutils │ │ │ │ │ └── plugin.js │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── liststyle │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── liststyle.js │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── mathjax │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── mathjax.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ │ └── mathjax.png │ │ │ │ │ ├── images │ │ │ │ │ │ └── loader.gif │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── menubutton │ │ │ │ │ └── plugin.js │ │ │ │ ├── notification │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── notificationaggregator │ │ │ │ │ └── plugin.js │ │ │ │ ├── pagebreak │ │ │ │ │ └── images │ │ │ │ │ │ └── pagebreak.gif │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── placeholder │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── placeholder.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── preview │ │ │ │ │ └── preview.html │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── sharedspace │ │ │ │ │ └── plugin.js │ │ │ │ ├── showblocks │ │ │ │ │ └── images │ │ │ │ │ │ ├── block_address.png │ │ │ │ │ │ ├── block_blockquote.png │ │ │ │ │ │ ├── block_div.png │ │ │ │ │ │ ├── block_h1.png │ │ │ │ │ │ ├── block_h2.png │ │ │ │ │ │ ├── block_h3.png │ │ │ │ │ │ ├── block_h4.png │ │ │ │ │ │ ├── block_h5.png │ │ │ │ │ │ ├── block_h6.png │ │ │ │ │ │ ├── block_p.png │ │ │ │ │ │ └── block_pre.png │ │ │ │ ├── smiley │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── smiley.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── angel_smile.gif │ │ │ │ │ │ ├── angel_smile.png │ │ │ │ │ │ ├── angry_smile.gif │ │ │ │ │ │ ├── angry_smile.png │ │ │ │ │ │ ├── broken_heart.gif │ │ │ │ │ │ ├── broken_heart.png │ │ │ │ │ │ ├── confused_smile.gif │ │ │ │ │ │ ├── confused_smile.png │ │ │ │ │ │ ├── cry_smile.gif │ │ │ │ │ │ ├── cry_smile.png │ │ │ │ │ │ ├── devil_smile.gif │ │ │ │ │ │ ├── devil_smile.png │ │ │ │ │ │ ├── embaressed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.gif │ │ │ │ │ │ ├── embarrassed_smile.png │ │ │ │ │ │ ├── envelope.gif │ │ │ │ │ │ ├── envelope.png │ │ │ │ │ │ ├── heart.gif │ │ │ │ │ │ ├── heart.png │ │ │ │ │ │ ├── kiss.gif │ │ │ │ │ │ ├── kiss.png │ │ │ │ │ │ ├── lightbulb.gif │ │ │ │ │ │ ├── lightbulb.png │ │ │ │ │ │ ├── omg_smile.gif │ │ │ │ │ │ ├── omg_smile.png │ │ │ │ │ │ ├── regular_smile.gif │ │ │ │ │ │ ├── regular_smile.png │ │ │ │ │ │ ├── sad_smile.gif │ │ │ │ │ │ ├── sad_smile.png │ │ │ │ │ │ ├── shades_smile.gif │ │ │ │ │ │ ├── shades_smile.png │ │ │ │ │ │ ├── teeth_smile.gif │ │ │ │ │ │ ├── teeth_smile.png │ │ │ │ │ │ ├── thumbs_down.gif │ │ │ │ │ │ ├── thumbs_down.png │ │ │ │ │ │ ├── thumbs_up.gif │ │ │ │ │ │ ├── thumbs_up.png │ │ │ │ │ │ ├── tongue_smile.gif │ │ │ │ │ │ ├── tongue_smile.png │ │ │ │ │ │ ├── tounge_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.gif │ │ │ │ │ │ ├── whatchutalkingabout_smile.png │ │ │ │ │ │ ├── wink_smile.gif │ │ │ │ │ │ └── wink_smile.png │ │ │ │ ├── sourcedialog │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── sourcedialog.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ │ ├── sourcedialog-rtl.png │ │ │ │ │ │ └── sourcedialog.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── stylesheetparser │ │ │ │ │ └── plugin.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableresize │ │ │ │ │ └── plugin.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ └── templates.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── uicolor │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── uicolor.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ │ └── uicolor.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── yui │ │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── hue_bg.png │ │ │ │ │ │ ├── hue_thumb.png │ │ │ │ │ │ ├── picker_mask.png │ │ │ │ │ │ ├── picker_thumb.png │ │ │ │ │ │ └── yui.css │ │ │ │ │ │ └── yui.js │ │ │ │ ├── uploadimage │ │ │ │ │ └── plugin.js │ │ │ │ ├── uploadwidget │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── widget │ │ │ │ │ ├── images │ │ │ │ │ │ └── handle.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── ciframe.html │ │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ │ ├── wsc.css │ │ │ │ │ │ ├── wsc.js │ │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── wsc.css │ │ │ │ └── xml │ │ │ │ │ └── plugin.js │ │ │ ├── skins │ │ │ │ ├── moono-lisa │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ │ ├── arrow.png │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ │ └── refresh.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ ├── refresh.png │ │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ │ └── moono │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ ├── ckeditor_uploader │ │ │ └── admin_base.css │ │ ├── file-icons │ │ │ ├── doc.png │ │ │ ├── file.png │ │ │ ├── pdf.png │ │ │ ├── ppt.png │ │ │ ├── swf.png │ │ │ ├── txt.png │ │ │ └── xls.png │ │ └── galleriffic │ │ │ ├── css │ │ │ ├── basic.css │ │ │ ├── black.css │ │ │ ├── caption.png │ │ │ ├── galleriffic-1.css │ │ │ ├── galleriffic-2.css │ │ │ ├── galleriffic-3.css │ │ │ ├── galleriffic-4.css │ │ │ ├── galleriffic-5.css │ │ │ ├── jush.css │ │ │ ├── loader.gif │ │ │ ├── loaderWhite.gif │ │ │ ├── nextPageArrow.gif │ │ │ ├── nextPageArrowWhite.gif │ │ │ ├── prevPageArrow.gif │ │ │ ├── prevPageArrowWhite.gif │ │ │ └── white.css │ │ │ └── js │ │ │ ├── jquery-1.3.2.js │ │ │ ├── jquery.galleriffic.js │ │ │ ├── jquery.history.js │ │ │ ├── jquery.opacityrollover.js │ │ │ └── jush.js │ ├── comment │ │ ├── css │ │ │ └── comment.css │ │ └── js │ │ │ ├── ckeditor.js │ │ │ ├── comment.js │ │ │ └── noti.js │ ├── js │ │ └── tools.js │ ├── mainapp │ │ ├── css │ │ │ └── mainapp.css │ │ ├── img │ │ │ └── BA1.png │ │ └── js │ │ │ ├── clockjs │ │ │ └── zzsz.js │ │ │ └── mainapp.js │ ├── rest_framework │ │ ├── css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-tweaks.css │ │ │ ├── bootstrap.min.css │ │ │ ├── default.css │ │ │ ├── font-awesome-4.0.3.css │ │ │ └── prettify.css │ │ ├── docs │ │ │ ├── css │ │ │ │ ├── base.css │ │ │ │ ├── highlight.css │ │ │ │ └── jquery.json-view.min.css │ │ │ ├── img │ │ │ │ ├── favicon.ico │ │ │ │ └── grid.png │ │ │ └── js │ │ │ │ ├── api.js │ │ │ │ ├── highlight.pack.js │ │ │ │ └── jquery.json-view.min.js │ │ ├── fonts │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ ├── glyphicons-halflings.png │ │ │ └── grid.png │ │ └── js │ │ │ ├── ajax-form.js │ │ │ ├── bootstrap.min.js │ │ │ ├── coreapi-0.1.1.js │ │ │ ├── csrf.js │ │ │ ├── default.js │ │ │ ├── jquery-3.3.1.min.js │ │ │ └── prettify-min.js │ ├── tools │ │ └── js │ │ │ └── tools.js │ └── xadmin │ │ ├── css │ │ ├── themes │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ └── bootstrap-xadmin.css │ │ ├── xadmin.form.css │ │ ├── xadmin.main.css │ │ ├── xadmin.mobile.css │ │ ├── xadmin.page.dashboard.css │ │ ├── xadmin.plugin.aggregation.css │ │ ├── xadmin.plugin.formset.css │ │ ├── xadmin.plugin.importexport.css │ │ ├── xadmin.plugin.quickfilter.css │ │ ├── xadmin.plugins.css │ │ ├── xadmin.responsive.css │ │ ├── xadmin.widget.editable.css │ │ └── xadmin.widget.select-transfer.css │ │ ├── js │ │ ├── xadmin.main.js │ │ ├── xadmin.page.dashboard.js │ │ ├── xadmin.page.form.js │ │ ├── xadmin.page.list.js │ │ ├── xadmin.plugin.actions.js │ │ ├── xadmin.plugin.batch.js │ │ ├── xadmin.plugin.bookmark.js │ │ ├── xadmin.plugin.charts.js │ │ ├── xadmin.plugin.details.js │ │ ├── xadmin.plugin.editable.js │ │ ├── xadmin.plugin.filters.js │ │ ├── xadmin.plugin.formset.js │ │ ├── xadmin.plugin.importexport.js │ │ ├── xadmin.plugin.portal.js │ │ ├── xadmin.plugin.quick-form.js │ │ ├── xadmin.plugin.quickfilter.js │ │ ├── xadmin.plugin.refresh.js │ │ ├── xadmin.plugin.revision.js │ │ ├── xadmin.plugin.sortablelist.js │ │ ├── xadmin.plugin.themes.js │ │ ├── xadmin.responsive.js │ │ ├── xadmin.widget.datetime.js │ │ ├── xadmin.widget.multiselect.js │ │ ├── xadmin.widget.select-transfer.js │ │ └── xadmin.widget.select.js │ │ └── vendor │ │ ├── autotype │ │ └── index.js │ │ ├── bootstrap-clockpicker │ │ ├── bootstrap-clockpicker.css │ │ ├── bootstrap-clockpicker.js │ │ ├── bootstrap-clockpicker.min.css │ │ └── bootstrap-clockpicker.min.js │ │ ├── bootstrap-datepicker │ │ ├── css │ │ │ └── datepicker.css │ │ └── js │ │ │ ├── bootstrap-datepicker.js │ │ │ └── locales │ │ │ ├── bootstrap-datepicker.bg.js │ │ │ ├── bootstrap-datepicker.ca.js │ │ │ ├── bootstrap-datepicker.cs.js │ │ │ ├── bootstrap-datepicker.da.js │ │ │ ├── bootstrap-datepicker.de.js │ │ │ ├── bootstrap-datepicker.el.js │ │ │ ├── bootstrap-datepicker.es.js │ │ │ ├── bootstrap-datepicker.fi.js │ │ │ ├── bootstrap-datepicker.fr.js │ │ │ ├── bootstrap-datepicker.he.js │ │ │ ├── bootstrap-datepicker.hr.js │ │ │ ├── bootstrap-datepicker.hu.js │ │ │ ├── bootstrap-datepicker.id.js │ │ │ ├── bootstrap-datepicker.is.js │ │ │ ├── bootstrap-datepicker.it.js │ │ │ ├── bootstrap-datepicker.ja.js │ │ │ ├── bootstrap-datepicker.kr.js │ │ │ ├── bootstrap-datepicker.lt.js │ │ │ ├── bootstrap-datepicker.lv.js │ │ │ ├── bootstrap-datepicker.ms.js │ │ │ ├── bootstrap-datepicker.nb.js │ │ │ ├── bootstrap-datepicker.nl.js │ │ │ ├── bootstrap-datepicker.pl.js │ │ │ ├── bootstrap-datepicker.pt-BR.js │ │ │ ├── bootstrap-datepicker.pt.js │ │ │ ├── bootstrap-datepicker.ro.js │ │ │ ├── bootstrap-datepicker.rs-latin.js │ │ │ ├── bootstrap-datepicker.rs.js │ │ │ ├── bootstrap-datepicker.ru.js │ │ │ ├── bootstrap-datepicker.sk.js │ │ │ ├── bootstrap-datepicker.sl.js │ │ │ ├── bootstrap-datepicker.sv.js │ │ │ ├── bootstrap-datepicker.sw.js │ │ │ ├── bootstrap-datepicker.th.js │ │ │ ├── bootstrap-datepicker.tr.js │ │ │ ├── bootstrap-datepicker.uk.js │ │ │ ├── bootstrap-datepicker.zh-CN.js │ │ │ └── bootstrap-datepicker.zh-TW.js │ │ ├── bootstrap-image-gallery │ │ ├── css │ │ │ ├── bootstrap-image-gallery.css │ │ │ └── bootstrap-image-gallery.min.css │ │ ├── img │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-image-gallery.js │ │ │ └── bootstrap-image-gallery.min.js │ │ ├── bootstrap-modal │ │ ├── css │ │ │ └── bootstrap-modal.css │ │ ├── img │ │ │ └── ajax-loader.gif │ │ └── js │ │ │ ├── bootstrap-modal.js │ │ │ └── bootstrap-modalmanager.js │ │ ├── bootstrap-multiselect │ │ ├── css │ │ │ └── bootstrap-multiselect.css │ │ └── js │ │ │ └── bootstrap-multiselect.js │ │ ├── bootstrap-timepicker │ │ ├── css │ │ │ ├── bootstrap-timepicker.css │ │ │ └── bootstrap-timepicker.min.css │ │ └── js │ │ │ ├── bootstrap-timepicker.js │ │ │ └── bootstrap-timepicker.min.js │ │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ │ ├── flot │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.aggregate.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ └── jquery.flot.time.js │ │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── jquery-ui │ │ ├── jquery.ui.core.js │ │ ├── jquery.ui.core.min.js │ │ ├── jquery.ui.effect.js │ │ ├── jquery.ui.effect.min.js │ │ ├── jquery.ui.mouse.js │ │ ├── jquery.ui.mouse.min.js │ │ ├── jquery.ui.sortable.js │ │ ├── jquery.ui.sortable.min.js │ │ ├── jquery.ui.widget.js │ │ └── jquery.ui.widget.min.js │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquery.min.js │ │ ├── load-image │ │ ├── load-image.js │ │ └── load-image.min.js │ │ ├── select2 │ │ ├── select2-spinner.gif │ │ ├── select2.css │ │ ├── select2.js │ │ ├── select2.min.js │ │ ├── select2.png │ │ ├── select2_locale_de.js │ │ ├── select2_locale_en.js │ │ ├── select2_locale_es.js │ │ ├── select2_locale_eu.js │ │ ├── select2_locale_fr.js │ │ ├── select2_locale_hr.js │ │ ├── select2_locale_hu.js │ │ ├── select2_locale_it.js │ │ ├── select2_locale_nl.js │ │ ├── select2_locale_pt-BR.js │ │ ├── select2_locale_pt-PT.js │ │ ├── select2_locale_ro.js │ │ ├── select2_locale_ru.js │ │ ├── select2_locale_sk.js │ │ ├── select2_locale_sv.js │ │ ├── select2_locale_tr.js │ │ ├── select2_locale_ua.js │ │ ├── select2_locale_zh-CN.js │ │ ├── select2_locale_zh-hans.js │ │ └── select2x2.png │ │ ├── selectize │ │ ├── selectize.bootstrap2.css │ │ ├── selectize.bootstrap3.css │ │ ├── selectize.css │ │ ├── selectize.default.css │ │ ├── selectize.js │ │ ├── selectize.legacy.css │ │ └── selectize.min.js │ │ └── snapjs │ │ ├── snap.css │ │ ├── snap.js │ │ └── snap.min.js ├── templates │ ├── account │ │ ├── account_inactive.html │ │ ├── base.html │ │ ├── email.html │ │ ├── email │ │ │ ├── email_confirmation_message.txt │ │ │ ├── email_confirmation_signup_message.txt │ │ │ ├── email_confirmation_signup_subject.txt │ │ │ ├── email_confirmation_subject.txt │ │ │ ├── password_reset_key_message.txt │ │ │ └── password_reset_key_subject.txt │ │ ├── email_confirm.html │ │ ├── login.html │ │ ├── logout.html │ │ ├── messages │ │ │ ├── cannot_delete_primary_email.txt │ │ │ ├── email_confirmation_sent.txt │ │ │ ├── email_confirmed.txt │ │ │ ├── email_deleted.txt │ │ │ ├── logged_in.txt │ │ │ ├── logged_out.txt │ │ │ ├── password_changed.txt │ │ │ ├── password_set.txt │ │ │ ├── primary_email_set.txt │ │ │ └── unverified_primary_email.txt │ │ ├── password_change.html │ │ ├── password_reset.html │ │ ├── password_reset_done.html │ │ ├── password_reset_from_key.html │ │ ├── password_reset_from_key_done.html │ │ ├── password_set.html │ │ ├── signup.html │ │ ├── signup_closed.html │ │ ├── snippets │ │ │ └── already_logged_in.html │ │ ├── verification_sent.html │ │ └── verified_email_required.html │ ├── robots.txt │ └── search │ │ ├── indexes │ │ └── mainapp │ │ │ └── article_text.txt │ │ └── search.html └── whoosh_index │ ├── MAIN_4ejmh8y7iosdkz79.seg │ ├── MAIN_WRITELOCK │ ├── MAIN_i6t888j3l6jkvdty.seg │ ├── MAIN_x1u0itdmpt31rj00.seg │ └── _MAIN_16712.toc └── requirements.txt /README.txt: -------------------------------------------------------------------------------- 1 | 管理员账号密码: 2 | adminblog/blog1234 3 | -------------------------------------------------------------------------------- /mysite/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mysite/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /mysite/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /mysite/__pycache__/manage.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/__pycache__/manage.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/__init__.py -------------------------------------------------------------------------------- /mysite/apps/comment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__init__.py -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/handlers.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/handlers.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/handlers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/handlers.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/comment/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class CommentConfig(AppConfig): 5 | name = 'comment' 6 | -------------------------------------------------------------------------------- /mysite/apps/comment/static/comment/css/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/comment/static/comment/css/comment.css -------------------------------------------------------------------------------- /mysite/apps/comment/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/apps/mainapp/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__init__.py -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/feeds.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/feeds.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/feeds.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/feeds.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/search_indexes.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/search_indexes.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/search_indexes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/search_indexes.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/sitemaps.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/sitemaps.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/sitemaps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/sitemaps.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/whoosh_cn_backend.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/whoosh_cn_backend.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/__pycache__/whoosh_cn_backend.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/mainapp/__pycache__/whoosh_cn_backend.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/mainapp/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class MainappConfig(AppConfig): 5 | name = 'apps.mainapp' 6 | -------------------------------------------------------------------------------- /mysite/apps/mainapp/templates/mainapp/404.html: -------------------------------------------------------------------------------- 1 | {% extends "mainapp/base.html" %} 2 | {% load static %} 3 | 4 | {% block base_middle_block %} 5 |
6 |
7 |
8 | {% endblock%} 9 | -------------------------------------------------------------------------------- /mysite/apps/mainapp/templates/mainapp/500.html: -------------------------------------------------------------------------------- 1 | {% extends "mainapp/base.html" %} 2 | {% load static %} 3 | 4 | {% block base_middle_block %} 5 |
6 |
7 |
8 | {% endblock%} 9 | -------------------------------------------------------------------------------- /mysite/apps/mainapp/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/apps/oauth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__init__.py -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/forms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/forms.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/oauth/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/oauth/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Ouser 3 | 4 | 5 | @admin.register(Ouser) 6 | class OauthAdmin(admin.ModelAdmin): 7 | list_display = ['username', 'email'] 8 | 9 | 10 | -------------------------------------------------------------------------------- /mysite/apps/oauth/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OauthConfig(AppConfig): 5 | name = 'apps.oauth' 6 | -------------------------------------------------------------------------------- /mysite/apps/oauth/forms.py: -------------------------------------------------------------------------------- 1 | from django import forms 2 | from .models import Ouser 3 | 4 | 5 | class ProfileForm(forms.ModelForm): 6 | class Meta: 7 | model = Ouser 8 | fields = ['avatar','signature'] 9 | 10 | -------------------------------------------------------------------------------- /mysite/apps/oauth/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/apps/oauth/urls.py: -------------------------------------------------------------------------------- 1 | from django.urls import path 2 | from .views import profile_view, update_profile_view 3 | 4 | app_name = '[mainapp]' 5 | 6 | urlpatterns = [ 7 | path('profile/', profile_view, name='account_profile'), 8 | path('profile/update/', update_profile_view, name='update_profile'), 9 | ] 10 | -------------------------------------------------------------------------------- /mysite/apps/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__init__.py -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/admin.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/admin.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/models.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/models.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/apps/tools/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/apps/tools/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import Tool 3 | import xadmin 4 | from xadmin import views 5 | # Register your models here. 6 | 7 | 8 | class ToolAdmin(object): 9 | model_icon = 'fa fa-gavel' 10 | 11 | 12 | xadmin.site.register(Tool, ToolAdmin) 13 | 14 | -------------------------------------------------------------------------------- /mysite/apps/tools/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class ToolsConfig(AppConfig): 5 | name = 'tools' 6 | -------------------------------------------------------------------------------- /mysite/apps/tools/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /mysite/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/db.sqlite3 -------------------------------------------------------------------------------- /mysite/media/article/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/article/1.jpg -------------------------------------------------------------------------------- /mysite/media/avatar/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/avatar/default.jpg -------------------------------------------------------------------------------- /mysite/media/award/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/award/default.png -------------------------------------------------------------------------------- /mysite/media/award/default_2P7I4px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/award/default_2P7I4px.png -------------------------------------------------------------------------------- /mysite/media/brand/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/brand/logo.png -------------------------------------------------------------------------------- /mysite/media/carousel/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/carousel/default.jpg -------------------------------------------------------------------------------- /mysite/media/ckeditor_upload/2019/09/15/75s58pickag_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/ckeditor_upload/2019/09/15/75s58pickag_1024.jpg -------------------------------------------------------------------------------- /mysite/media/contact/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/contact/default.png -------------------------------------------------------------------------------- /mysite/media/contact/wx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/contact/wx.jpg -------------------------------------------------------------------------------- /mysite/media/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/favicon/favicon.ico -------------------------------------------------------------------------------- /mysite/media/tools/05x58PICFnC_1024.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/tools/05x58PICFnC_1024.jpg -------------------------------------------------------------------------------- /mysite/media/top/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/media/top/top.png -------------------------------------------------------------------------------- /mysite/mysite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__init__.py -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /mysite/mysite/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/mysite/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /mysite/static/admin/fonts/README.txt: -------------------------------------------------------------------------------- 1 | Roboto webfont source: https://www.google.com/fonts/specimen/Roboto 2 | WOFF files extracted using https://github.com/majodev/google-webfonts-helper 3 | Weights used in this project: Light (300), Regular (400), Bold (700) 4 | -------------------------------------------------------------------------------- /mysite/static/admin/fonts/Roboto-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/admin/fonts/Roboto-Bold-webfont.woff -------------------------------------------------------------------------------- /mysite/static/admin/fonts/Roboto-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/admin/fonts/Roboto-Light-webfont.woff -------------------------------------------------------------------------------- /mysite/static/admin/fonts/Roboto-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/admin/fonts/Roboto-Regular-webfont.woff -------------------------------------------------------------------------------- /mysite/static/admin/img/README.txt: -------------------------------------------------------------------------------- 1 | All icons are taken from Font Awesome (http://fontawesome.io/) project. 2 | The Font Awesome font is licensed under the SIL OFL 1.1: 3 | - https://scripts.sil.org/OFL 4 | 5 | SVG icons source: https://github.com/encharm/Font-Awesome-SVG-PNG 6 | Font-Awesome-SVG-PNG is licensed under the MIT license (see file license 7 | in current folder). 8 | -------------------------------------------------------------------------------- /mysite/static/admin/img/icon-addlink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-add.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mysite/static/admin/img/tooltag-arrowright.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","cs",{embeddingInProgress:"Pokus o vnoření vložené URL",embeddingFailed:"Tato URL nemůže být automaticky vnořena."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","de",{embeddingInProgress:"Einbetten der eingefügten URL wird versucht...",embeddingFailed:"Diese URL konnte nicht automatisch eingebettet werden."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","en",{embeddingInProgress:"Trying to embed pasted URL...",embeddingFailed:"This URL could not be automatically embedded."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","it",{embeddingInProgress:"Prova a incorporare l'URL incollato...",embeddingFailed:"Non è stato possibile incorporare automaticamente questo URL."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","ku",{embeddingInProgress:"لەهەوڵی لکاندنی بەستەری ناونیشانە...",embeddingFailed:"ئەم بەستەرە خۆکارانە ناتواندرێت بخرێتە ناوێ."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","nb",{embeddingInProgress:"Prøver å bygge inn innlimt URL...",embeddingFailed:"URL-en kunne ikke bli automatisk bygget inn."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pl",{embeddingInProgress:"Osadzanie wklejonego adresu URL...",embeddingFailed:"Ten adres URL multimediów nie może być automatycznie osadzony."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","pt-br",{embeddingInProgress:"Tentando embutir a URL colada...",embeddingFailed:"Esta URL não pode ser embutida automaticamente."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","tr",{embeddingInProgress:"Yapıştırdığınız URL gömülmeye çalışılıyor...",embeddingFailed:"Bu URL otomatik olarak gömülemedi."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/autoembed/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","zh",{embeddingInProgress:"正在嘗試嵌入已貼上的 URL...",embeddingFailed:"這個 URL 無法被自動嵌入。"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","ja",{button:"コードスニペットを挿入",codeContents:"コード内容",emptySnippetError:"コードスニペットを入力してください。",language:"言語",title:"コードスニペット",pathName:"コードスニペット"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","ko",{button:"코드 스니펫 삽입",codeContents:"코드 본문",emptySnippetError:"코드 스니펫은 빈칸일 수 없습니다.",language:"언어",title:"코드 스니펫",pathName:"코드 스니펫"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","zh-cn",{button:"插入代码段",codeContents:"代码内容",emptySnippetError:"插入的代码不能为空。",language:"代码语言",title:"代码段",pathName:"代码段"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("codesnippet","zh",{button:"插入程式碼片段",codeContents:"程式碼內容",emptySnippetError:"程式碼片段不可為空白。",language:"語言",title:"程式碼片段",pathName:"程式碼片段"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ar",{title:"معلومات العنصر",dialogName:"إسم نافذة الحوار",tabName:"إسم التبويب",elementId:"إسم العنصر",elementType:"نوع العنصر"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","cs",{title:"Informace o prvku",dialogName:"Název dialogového okna",tabName:"Název karty",elementId:"ID prvku",elementType:"Typ prvku"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","cy",{title:"Gwybodaeth am yr Elfen",dialogName:"Enw ffenestr y deialog",tabName:"Enw'r tab",elementId:"ID yr Elfen",elementType:"Math yr elfen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","da",{title:"Information på elementet",dialogName:"Dialogboks",tabName:"Tab beskrivelse",elementId:"ID på element",elementType:"Type af element"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","de",{title:"Elementinformation",dialogName:"Dialogfenstername",tabName:"Reitername",elementId:"Elementkennung",elementType:"Elementtyp"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","en-gb",{title:"Element Information",dialogName:"Dialogue window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","en",{title:"Element Information",dialogName:"Dialog window name",tabName:"Tab name",elementId:"Element ID",elementType:"Element type"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","et",{title:"Elemendi andmed",dialogName:"Dialoogiakna nimi",tabName:"Saki nimi",elementId:"Elemendi ID",elementType:"Elemendi liik"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","fa",{title:"اطلاعات عنصر",dialogName:"نام پنجره محاوره‌ای",tabName:"نام برگه",elementId:"ID عنصر",elementType:"نوع عنصر"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","fi",{title:"Elementin tiedot",dialogName:"Dialogi-ikkunan nimi",tabName:"Välilehden nimi",elementId:"Elementin ID",elementType:"Elementin tyyppi"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","gu",{title:"પ્રાથમિક માહિતી",dialogName:"વિન્ડોનું નામ",tabName:"ટેબનું નામ",elementId:"પ્રાથમિક આઈડી",elementType:"પ્રાથમિક પ્રકાર"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","he",{title:"מידע על האלמנט",dialogName:"שם הדיאלוג",tabName:"שם הטאב",elementId:"ID של האלמנט",elementType:"סוג האלמנט"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","hu",{title:"Elem információ",dialogName:"Párbeszédablak neve",tabName:"Fül neve",elementId:"Elem ID",elementType:"Elem típusa"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","id",{title:"Informasi Elemen",dialogName:"Nama jendela dialog",tabName:"Nama tab",elementId:"ID Elemen",elementType:"Tipe elemen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","it",{title:"Informazioni elemento",dialogName:"Nome finestra di dialogo",tabName:"Nome Tab",elementId:"ID Elemento",elementType:"Tipo elemento"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ja",{title:"エレメント情報",dialogName:"ダイアログウィンドウ名",tabName:"タブ名",elementId:"エレメントID",elementType:"要素タイプ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","km",{title:"ព័ត៌មាន​នៃ​ធាតុ",dialogName:"ឈ្មោះ​ប្រអប់​វីនដូ",tabName:"ឈ្មោះ​ផ្ទាំង",elementId:"អត្តលេខ​ធាតុ",elementType:"ប្រភេទ​ធាតុ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ko",{title:"구성 요소 정보",dialogName:"다이얼로그 윈도우 이름",tabName:"탭 이름",elementId:"요소 ID",elementType:"요소 형식"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ku",{title:"زانیاری توخم",dialogName:"ناوی پەنجەرەی دیالۆگ",tabName:"ناوی بازدەر تاب",elementId:"ناسنامەی توخم",elementType:"جۆری توخم"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","nb",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","nl",{title:"Elementinformatie",dialogName:"Naam dialoogvenster",tabName:"Tabnaam",elementId:"Element ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","no",{title:"Elementinformasjon",dialogName:"Navn på dialogvindu",tabName:"Navn på fane",elementId:"Element-ID",elementType:"Elementtype"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","pl",{title:"Informacja o elemencie",dialogName:"Nazwa okna dialogowego",tabName:"Nazwa zakładki",elementId:"ID elementu",elementType:"Typ elementu"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ru",{title:"Информация об элементе",dialogName:"Имя окна диалога",tabName:"Имя вкладки",elementId:"ID элемента",elementType:"Тип элемента"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","si",{title:"මුලද්‍රව්‍ය ",dialogName:"දෙබස් කවුළුවේ නම",tabName:"තීරුවේ නම",elementId:"මුලද්‍රව්‍ය කේතය",elementType:"මුලද්‍රව්‍ය වර්ගය"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sk",{title:"Informácie o prvku",dialogName:"Názov okna dialógu",tabName:"Názov záložky",elementId:"ID prvku",elementType:"Typ prvku"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sl",{title:"Podatki elementa",dialogName:"Ime pogovornega okna",tabName:"Ime zavihka",elementId:"ID elementa",elementType:"Tip elementa"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","sv",{title:"Elementinformation",dialogName:"Dialogrutans namn",tabName:"Fliknamn",elementId:"Element-ID",elementType:"Element-typ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","tr",{title:"Eleman Bilgisi",dialogName:"İletişim pencere ismi",tabName:"Sekme adı",elementId:"Eleman ID",elementType:"Eleman türü"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","ug",{title:"ئېلېمېنت ئۇچۇرى",dialogName:"سۆزلەشكۈ كۆزنەك ئاتى",tabName:"Tab ئاتى",elementId:"ئېلېمېنت كىملىكى",elementType:"ئېلېمېنت تىپى"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","vi",{title:"Thông tin thành ph",dialogName:"Tên hộp tho",tabName:"Tên th",elementId:"Mã thành ph",elementType:"Loại thành ph"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh-cn",{title:"元素信息",dialogName:"对话框窗口名称",tabName:"选项卡名称",elementId:"元素 ID",elementType:"元素类型"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/devtools/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("devtools","zh",{title:"元件資訊",dialogName:"對話視窗名稱",tabName:"標籤名稱",elementId:"元件 ID",elementType:"元件類型"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license 4 | */ 5 | -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embed/icons/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/embed/icons/embed.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embedbase/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("embedbase","zh-cn",{pathName:"媒体对象",title:"嵌入媒体",button:"插入媒体",unsupportedUrlGiven:"不支持指定的 URL。",unsupportedUrl:"嵌入媒体不支持此 URL {url}。",fetchingFailedGiven:"无法抓取此 URL 的内容。",fetchingFailed:"无法抓取 {url} 的内容。",fetchingOne:"正在抓取……",fetchingMany:"正在抓取,{max} 中的 {current} ……"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embedbase/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("embedbase","zh",{pathName:"媒體元件",title:"內嵌媒體",button:"插入內嵌媒體",unsupportedUrlGiven:"不支援指定的 URL。",unsupportedUrl:"內嵌媒體不支援 URL {url} 。",fetchingFailedGiven:"抓取指定 URL 的內容失敗。",fetchingFailed:"抓取 {url} 的內容失敗。",fetchingOne:"正在抓取 oEmbed 回應...",fetchingMany:"正在抓取 oEmbed 回應,{max} 中的 {current} 已完成..."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/image2/icons/image.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","ja",{alt:"代替テキスト",btnUpload:"サーバーに送信",captioned:"キャプションを付ける",captionPlaceholder:"キャプション",infoTab:"画像情報",lockRatio:"比率を固定",menu:"画像のプロパティ",pathName:"image",pathNameCaption:"caption",resetSize:"サイズをリセット",resizer:"ドラッグしてリサイズ",title:"画像のプロパティ",uploadTab:"アップロード",urlMissing:"画像のURLを入力してください。"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","ko",{alt:"대체 문자열",btnUpload:"서버로 전송",captioned:"이미지 설명 넣기",captionPlaceholder:"설명",infoTab:"이미지 정보",lockRatio:"비율 유지",menu:"이미지 속성",pathName:"이미지",pathNameCaption:"설명",resetSize:"원래 크기로",resizer:"크기를 조절하려면 클릭 후 드래그 하세요",title:"이미지 속성",uploadTab:"업로드",urlMissing:"이미지 원본 주소(URL)가 없습니다."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh-cn",{alt:"替换文本",btnUpload:"上传到服务器",captioned:"带标题图像",captionPlaceholder:"标题",infoTab:"图像信息",lockRatio:"锁定比例",menu:"图像属性",pathName:"图像",pathNameCaption:"标题",resetSize:"原始尺寸",resizer:"点击并拖拽以改变尺寸",title:"图像属性",uploadTab:"上传",urlMissing:"缺少图像源文件地址"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/image2/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("image2","zh",{alt:"替代文字",btnUpload:"傳送至伺服器",captioned:"已加標題之圖片",captionPlaceholder:"標題",infoTab:"影像資訊",lockRatio:"固定比例",menu:"影像屬性",pathName:"圖片",pathNameCaption:"標題",resetSize:"重設大小",resizer:"拖曳以改變大小",title:"影像屬性",uploadTab:"上傳",urlMissing:"遺失圖片來源之 URL "}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/language/icons/language.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ar",{button:"حدد اللغة",remove:"حذف اللغة"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","bg",{button:"Задай език",remove:"Премахни език"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ca",{button:"Definir l'idioma",remove:"Eliminar idioma"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cs",{button:"Nastavit jazyk",remove:"Odstranit jazyk"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","cy",{button:"Gosod iaith",remove:"Tynnu iaith"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","da",{button:"Vælg sprog",remove:"Fjern sprog"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","de",{button:"Sprache festlegen",remove:"Sprache entfernen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","el",{button:"Θέση γλώσσας",remove:"Αφαίρεση γλώσσας"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en-gb",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","en",{button:"Set language",remove:"Remove language"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","eo",{button:"Instali lingvon",remove:"Forigi lingvon"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","es",{button:"Fijar lenguaje",remove:"Quitar lenguaje"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fa",{button:"تعیین زبان",remove:"حذف زبان"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fi",{button:"Aseta kieli",remove:"Poista kieli"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fo",{button:"Velja tungumál",remove:"Remove language"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","fr",{button:"Définir la langue",remove:"Supprimer la langue"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","gl",{button:"Estabelezer o idioma",remove:"Retirar o idioma"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","he",{button:"צור שפה",remove:"הסר שפה"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hr",{button:"Namjesti jezik",remove:"Makni jezik"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","hu",{button:"Nyelv beállítása",remove:"Nyelv eltávolítása"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","it",{button:"Imposta lingua",remove:"Rimuovi lingua"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ja",{button:"言語を設定",remove:"言語を削除"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","km",{button:"កំណត់​ភាសា",remove:"លុប​ភាសា"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ko",{button:"언어 설정",remove:"언어 설정 지우기"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ku",{button:"جێگیرکردنی زمان",remove:"لابردنی زمان"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nb",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","nl",{button:"Taal instellen",remove:"Taal verwijderen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","no",{button:"Sett språk",remove:"Fjern språk"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pl",{button:"Ustaw język",remove:"Usuń język"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt-br",{button:"Configure o Idioma",remove:"Remover Idioma"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","pt",{button:"Definir Idioma",remove:"Remover idioma"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","ru",{button:"Установка языка",remove:"Удалить язык"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sk",{button:"Nastaviť jazyk",remove:"Odstrániť jazyk"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sl",{button:"Nastavi jezik",remove:"Odstrani jezik"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sq",{button:"Përzgjidhni gjuhën",remove:"Largoni gjuhën"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","sv",{button:"Sätt språk",remove:"Ta bort språk"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tr",{button:"Dili seç",remove:"Dili kaldır"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","tt",{button:"Тел сайлау",remove:"Телне бетерү"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","uk",{button:"Установити мову",remove:"Вилучити мову"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","vi",{button:"Thiết lập ngôn ngữ",remove:"Loại bỏ ngôn ngữ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh-cn",{button:"设置语言",remove:"移除语言"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/language/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("language","zh",{button:"設定語言",remove:"移除語言"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","af",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Skryf you Tex hier",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokument",loading:"laai...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ar",{title:"الرياصيات في Tex",button:"رياضيات",dialogInput:"أكتب Tex خاصتك هنا",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"وثائق Tex",loading:"جاري التحميل...",pathName:"رياضيات"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","bg",{title:"Формули в TeX формат",button:"Формули",dialogInput:"Въведете вашите данни с TeX форматиране тук",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"зареждане...",pathName:"формули"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ca",{title:"Matemàtiques a TeX",button:"Matemàtiques",dialogInput:"Escriu el TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentació TeX",loading:"carregant...",pathName:"matemàtiques"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cs",{title:"Matematika v TeXu",button:"Matematika",dialogInput:"Zde napište TeXový kód",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentace k TeXu",loading:"Nahrává se...",pathName:"Matematika"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","cy",{title:"Mathemateg mewn TeX",button:"Math",dialogInput:"Ysgrifennwch eich TeX yma",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dogfennaeth TeX",loading:"llwytho...",pathName:"math"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","da",{title:"Matematik i TeX",button:"Matematik",dialogInput:"Skriv din TeX her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"henter...",pathName:"matematik"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","de",{title:"Mathematik in Tex",button:"Rechnung",dialogInput:"Schreiben Sie hier in Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-Dokumentation",loading:"Ladevorgang...",pathName:"rechnen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","el",{title:"Μαθηματικά με τη γλώσσα TeX",button:"Μαθηματικά",dialogInput:"Γράψτε κώδικα TeX εδώ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Τεκμηρίωση TeX",loading:"γίνεται φόρτωση...",pathName:"μαθηματικά"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en-gb",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write you TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","en",{title:"Mathematics in TeX",button:"Math",dialogInput:"Write your TeX here",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentation",loading:"loading...",pathName:"math"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","eo",{title:"Matematiko en TeX",button:"Matematiko",dialogInput:"Skribu vian TeX tien",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentado",loading:"estas ŝarganta",pathName:"matematiko"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","es",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escribe tu TeX aquí",docUrl:"http://es.wikipedia.org/wiki/TeX",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fa",{title:"ریاضیات در تک",button:"ریاضی",dialogInput:"فرمول خود را اینجا بنویسید",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"مستندسازی فرمول نویسی",loading:"بارگیری",pathName:"ریاضی"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fi",{title:"Matematiikkaa TeX:llä",button:"Matematiikka",dialogInput:"Kirjoita TeX:iä tähän",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentaatio",loading:"lataa...",pathName:"matematiikka"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","fr",{title:"Mathématiques au format TeX",button:"Math",dialogInput:"Saisir la formule TeX ici",docUrl:"http://fr.wikibooks.org/wiki/LaTeX/Math%C3%A9matiques",docLabel:"Documentation du format TeX",loading:"chargement...",pathName:"math"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","gl",{title:"Matemáticas en TeX",button:"Matemáticas",dialogInput:"Escriba o seu TeX aquí",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentación de TeX",loading:"cargando...",pathName:"matemáticas"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","he",{title:"מתמטיקה בTeX",button:"מתמטיקה",dialogInput:"כתוב את הTeX שלך כאן",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"תיעוד TeX",loading:"טוען...",pathName:"מתמטיקה"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hr",{title:"Matematika u TeXu",button:"Matematika",dialogInput:"Napiši svoj TeX ovdje",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"učitavanje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","hu",{title:"Matematika a TeX-ben",button:"Matek",dialogInput:"Írd a TeX-ed ide",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentáció",loading:"töltés...",pathName:"matek"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","it",{title:"Formule in TeX",button:"Formule",dialogInput:"Scrivere qui il proprio TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentazione TeX",loading:"caricamento…",pathName:"formula"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ja",{title:"TeX形式の数式",button:"数式",dialogInput:"TeX形式の数式を入力してください",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeXの解説",loading:"読み込み中…",pathName:"math"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","km",{title:"គណិត​វិទ្យា​ក្នុង TeX",button:"គណិត",dialogInput:"សរសេរ TeX របស់​អ្នក​នៅ​ទីនេះ",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"ឯកសារ​អត្ថបទ​ពី ​TeX",loading:"កំពុង​ផ្ទុក..",pathName:"គណិត"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ko",{title:"TeX 문법 수식",button:"수식",dialogInput:"여기 TeX 를 입력하세요",docUrl:"http://ko.wikipedia.org/wiki/%EC%9C%84%ED%82%A4%EB%B0%B1%EA%B3%BC:TeX_%EB%AC%B8%EB%B2%95",docLabel:"TeX 문서",loading:"불러오는 중...",pathName:"수식"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ku",{title:"بیرکاری لە TeX",button:"بیرکاری",dialogInput:"TeXەکەت لێرە بنووسە",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"بەڵگەنامەکردنی TeX",loading:"بارکردن...",pathName:"بیرکاری"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","lt",{title:"Matematika per TeX",button:"Matematika",dialogInput:"Parašyk savo TeX čia",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX žinynas",loading:"kraunasi...",pathName:"matematika"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nb",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","nl",{title:"Wiskunde in TeX",button:"Wiskunde",dialogInput:"Typ hier uw TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX documentatie",loading:"laden...",pathName:"wiskunde"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","no",{title:"Matematikk i TeX",button:"Matte",dialogInput:"Skriv TeX-koden her",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX-dokumentasjon",loading:"laster...",pathName:"matte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pl",{title:"Wzory matematyczne w TeX",button:"Wzory matematyczne",dialogInput:"Wpisz wyrażenie w TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentacja TeX",loading:"ładowanie...",pathName:"matematyka"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt-br",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva seu TeX aqui",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"carregando...",pathName:"Matemática"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","pt",{title:"Matemática em TeX",button:"Matemática",dialogInput:"Escreva aqui o seu Tex",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentação TeX",loading:"a carregar ...",pathName:"matemática"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ro",{title:"Matematici in TeX",button:"Matematici",dialogInput:"Scrie TeX-ul aici",docUrl:"http://ro.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Documentatie TeX",loading:"încarcă...",pathName:"matematici"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","ru",{title:"Математика в TeX-системе",button:"Математика",dialogInput:"Введите здесь TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX документация",loading:"загрузка...",pathName:"мат."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sk",{title:"Matematika v TeX",button:"Matika",dialogInput:"Napíšte svoj TeX sem",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Dokumentácia TeX",loading:"načítavanie...",pathName:"matika"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sl",{title:"Matematika v TeX",button:"Matematika",dialogInput:"Napišite svoj TeX tukaj",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentacija",loading:"nalaganje...",pathName:"matematika"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sq",{title:"Matematikë në TeX",button:"Matematikë",dialogInput:"Shkruani TeX-in tuaj këtu",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tex dokumentimi",loading:"duke u hapur...",pathName:"matematikë"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","sv",{title:"Mattematik i TeX",button:"Matte",dialogInput:"Skriv din TeX här",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX dokumentation",loading:"laddar...",pathName:"matte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tr",{title:"TeX ile Matematik",button:"Matematik",dialogInput:"TeX kodunuzu buraya yazın",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX yardım dökümanı",loading:"yükleniyor...",pathName:"matematik"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","tt",{title:"TeX'та математика",button:"Математика",dialogInput:"Биредә TeX форматында аңлатмагызны языгыз",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX турыдна документлар",loading:"йөкләнә...",pathName:"математика"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","uk",{title:"Математика у TeX",button:"Математика",dialogInput:"Наберіть тут на TeX'у",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Документація про TeX",loading:"завантажується…",pathName:"математика"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","vi",{title:"Toán học bằng TeX",button:"Toán",dialogInput:"Nhập mã TeX ở đây",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"Tài liệu TeX",loading:"đang nạp...",pathName:"toán"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh-cn",{title:"TeX 语法的数学公式编辑器",button:"数学公式",dialogInput:"在此编写您的 TeX 指令",docUrl:"http://zh.wikipedia.org/wiki/TeX",docLabel:"TeX 语法(可以参考维基百科自身关于数学公式显示方式的帮助)",loading:"正在加载...",pathName:"数字公式"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/mathjax/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("mathjax","zh",{title:"以 TeX 表示數學",button:"數學",dialogInput:"請輸入 TeX",docUrl:"http://en.wikibooks.org/wiki/LaTeX/Mathematics",docLabel:"TeX 說明文件",loading:"載入中…",pathName:"數學"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/placeholder/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","ko",{title:"플레이스홀더 속성",toolbar:"플레이스홀더",name:"플레이스홀더 이름",invalidName:"플레이스홀더는 빈칸이거나 다음 문자열을 포함할 수 없습니다: [, ], <, >",pathName:"플레이스홀더"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/placeholder/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","zh-cn",{title:"占位符属性",toolbar:"占位符",name:"占位符名称",invalidName:"占位符名称不能为空,并且不能包含以下字符:[、]、<、>",pathName:"占位符"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/placeholder/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("placeholder","zh",{title:"預留位置屬性",toolbar:"建立預留位置",name:"Placeholder 名稱",invalidName:"「預留位置」不可為空白且不可包含以下字元:[, ], <, >",pathName:"預留位置"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរ​កូដ",title:"អក្សរ​កូដ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්‍රය",title:"මුලාශ්‍රය"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","af",{title:"UI kleur keuse",preview:"Voorskou",config:"Voeg hierdie in jou config.js lêr in",predefined:"Voordefinieerte kleur keuses"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ar",{title:"منتقي الألوان",preview:"معاينة مباشرة",config:"قص السطر إلى الملف config.js",predefined:"مجموعات ألوان معرفة مسبقا"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","bg",{title:"ПИ избор на цвят",preview:"Преглед",config:"Вмъкнете този низ във Вашия config.js fajl",predefined:"Предефинирани цветови палитри"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ca",{title:"UI Color Picker",preview:"Vista prèvia",config:"Enganxa aquest text dins el fitxer config.js",predefined:"Conjunts de colors predefinits"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","en-gb",{title:"UI Colour Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined colour sets"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","en",{title:"UI Color Picker",preview:"Live preview",config:"Paste this string into your config.js file",predefined:"Predefined color sets"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","he",{title:"בחירת צבע ממשק משתמש",preview:"תצוגה מקדימה",config:"הדבק את הטקסט הבא לתוך הקובץ config.js",predefined:"קבוצות צבעים מוגדרות מראש"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","id",{title:"Pengambil Warna UI",preview:"Pratinjau",config:"Tempel string ini ke arsip config.js anda.",predefined:"Set warna belum terdefinisi."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ja",{title:"UIカラーピッカー",preview:"ライブプレビュー",config:"この文字列を config.js ファイルへ貼り付け",predefined:"既定カラーセット"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","ko",{title:"UI 색상 선택기",preview:"미리보기",config:"이 문자열을 config.js 에 붙여넣으세요",predefined:"미리 정의된 색상"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","lv",{title:"UI krāsas izvēle",preview:"Priekšskatījums",config:"Ielīmējiet šo rindu jūsu config.js failā",predefined:"Predefinēti krāsu komplekti"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","mk",{title:"Палета со бои",preview:"Преглед",config:"Залепи го овој текст во config.js датотеката",predefined:"Предефинирани множества на бои"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","nl",{title:"UI Kleurenkiezer",preview:"Live voorbeeld",config:"Plak deze tekst in jouw config.js bestand",predefined:"Voorgedefinieerde kleurensets"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","si",{title:"වර්ණ ",preview:"සජීව නැවත නරභීම",config:"මෙම අක්ෂර පේලිය ගෙන config.js ලිපිගොනුව මතින් තබන්න",predefined:"කලින් වෙන්කරගත් පරිදි ඇති වර්ණ"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","sk",{title:"UI výber farby",preview:"Živý náhľad",config:"Vložte tento reťazec do vášho config.js súboru",predefined:"Preddefinované sady farieb"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","tr",{title:"UI Renk Seçici",preview:"Canlı ön izleme",config:"Bu yazıyı config.js dosyasının içine yapıştırın",predefined:"Önceden tanımlı renk seti"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh-cn",{title:"用户界面颜色选择器",preview:"即时预览",config:"粘贴此字符串到您的 config.js 文件",predefined:"预定义颜色集"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("uicolor","zh",{title:"UI 色彩選擇器",preview:"即時預覽",config:"請將此段字串複製到您的 config.js 檔案中。",predefined:"設定預先定義的色彩"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","af",{move:"Klik en trek on te beweeg"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ar",{move:"إضغط و إسحب للتحريك"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","bg",{move:"Кликни и влачи, за да преместиш"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ca",{move:"Clicar i arrossegar per moure"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cs",{move:"Klepněte a táhněte pro přesunutí"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","cy",{move:"Clcio a llusgo i symud"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","da",{move:"Klik og træk for at flytte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","de",{move:"Zum Verschieben anwählen und ziehen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","el",{move:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en-gb",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","en",{move:"Click and drag to move"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","eo",{move:"klaki kaj treni por movi"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","es",{move:"Dar clic y arrastrar para mover"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fa",{move:"کلیک و کشیدن برای جابجایی"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fi",{move:"Siirrä klikkaamalla ja raahaamalla"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","fr",{move:"Cliquer et glisser pour déplacer"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","gl",{move:"Prema e arrastre para mover"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","he",{move:"לחץ וגרור להזזה"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hr",{move:"Klikni i povuci da pomakneš"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","hu",{move:"Kattints és húzd a mozgatáshoz"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","it",{move:"Fare clic e trascinare per spostare"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ja",{move:"ドラッグして移動"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","km",{move:"ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ko",{move:"움직이려면 클릭 후 드래그 하세요"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ku",{move:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","lv",{move:"Klikšķina un velc, lai pārvietotu"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nb",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","nl",{move:"Klik en sleep om te verplaatsen"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","no",{move:"Klikk og dra for å flytte"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pl",{move:"Kliknij i przeciągnij, by przenieść."}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt-br",{move:"Click e arraste para mover"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","pt",{move:"Clique e arraste para mover"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","ru",{move:"Нажмите и перетащите"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sk",{move:"Kliknite a potiahnite pre presunutie"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sl",{move:"Kliknite in povlecite, da premaknete"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sq",{move:"Kliko dhe tërhiqe për ta lëvizur"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","sv",{move:"Klicka och drag för att flytta"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tr",{move:"Taşımak için, tıklayın ve sürükleyin"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","tt",{move:"Күчереп куер өчен басып шудырыгыз"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","uk",{move:"Клікніть і потягніть для переміщення"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","vi",{move:"Nhấp chuột và kéo để di chuyển"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh-cn",{move:"点击并拖拽以移动"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/plugins/widget/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang("widget","zh",{move:"拖曳以移動"}); -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/doc.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/file.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/pdf.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/ppt.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/swf.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/txt.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/file-icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/file-icons/xls.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/caption.png -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/loader.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/loaderWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/loaderWhite.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/nextPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/nextPageArrow.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/nextPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/nextPageArrowWhite.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/prevPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/prevPageArrow.gif -------------------------------------------------------------------------------- /mysite/static/ckeditor/galleriffic/css/prevPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/ckeditor/galleriffic/css/prevPageArrowWhite.gif -------------------------------------------------------------------------------- /mysite/static/comment/css/comment.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/comment/css/comment.css -------------------------------------------------------------------------------- /mysite/static/mainapp/img/BA1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/mainapp/img/BA1.png -------------------------------------------------------------------------------- /mysite/static/rest_framework/docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/docs/img/favicon.ico -------------------------------------------------------------------------------- /mysite/static/rest_framework/docs/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/docs/img/grid.png -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite/static/rest_framework/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /mysite/static/rest_framework/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /mysite/static/rest_framework/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /mysite/static/rest_framework/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/rest_framework/img/grid.png -------------------------------------------------------------------------------- /mysite/static/xadmin/css/xadmin.plugin.aggregation.css: -------------------------------------------------------------------------------- 1 | td.aggregate { 2 | font-weight: bold; 3 | } 4 | td.aggregate span.aggregate_title { 5 | float: right; 6 | } -------------------------------------------------------------------------------- /mysite/static/xadmin/css/xadmin.plugin.quickfilter.css: -------------------------------------------------------------------------------- 1 | .nav-quickfilter .filter-item { 2 | white-space: nowrap; 3 | overflow: hidden; 4 | padding: 5px; 5 | } 6 | 7 | .nav-quickfilter .filter-col-1 { 8 | margin: 3px 2px 0 -2px; 9 | float: left; 10 | } 11 | 12 | .nav-quickfilter .filter-col-2 { 13 | } 14 | 15 | .nav-quickfilter .nav-expand { 16 | z-index:100; 17 | } -------------------------------------------------------------------------------- /mysite/static/xadmin/css/xadmin.plugins.css: -------------------------------------------------------------------------------- 1 | /** Action **/ 2 | .action-checkbox-column { 3 | width: 14px; 4 | } 5 | 6 | /** quick-form **/ 7 | .quick-form .modal-body { 8 | padding-bottom: 0px; 9 | } 10 | .quick-form .modal-footer { 11 | margin-top: 0px; 12 | } -------------------------------------------------------------------------------- /mysite/static/xadmin/js/xadmin.widget.multiselect.js: -------------------------------------------------------------------------------- 1 | 2 | ;(function($){ 3 | 4 | $.fn.exform.renders.push(function(f){ 5 | if($.fn.multiselect){ 6 | f.find('.selectmultiple.selectdropdown').multiselect({ 7 | 8 | }); 9 | } 10 | }); 11 | 12 | })(jQuery) -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap-image-gallery/img/loading.gif -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap-modal/img/ajax-loader.gif -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap-multiselect/css/bootstrap-multiselect.css -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/select2/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/select2/select2-spinner.gif -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/select2/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/select2/select2.png -------------------------------------------------------------------------------- /mysite/static/xadmin/vendor/select2/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/static/xadmin/vendor/select2/select2x2.png -------------------------------------------------------------------------------- /mysite/templates/account/email/email_confirmation_signup_message.txt: -------------------------------------------------------------------------------- 1 | {% include "account/email/email_confirmation_message.txt" %} 2 | -------------------------------------------------------------------------------- /mysite/templates/account/email/email_confirmation_signup_subject.txt: -------------------------------------------------------------------------------- 1 | {% include "account/email/email_confirmation_subject.txt" %} 2 | -------------------------------------------------------------------------------- /mysite/templates/account/email/email_confirmation_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% autoescape off %} 3 | 注册邮箱激活通知 4 | {% endautoescape %} 5 | -------------------------------------------------------------------------------- /mysite/templates/account/email/password_reset_key_subject.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% autoescape off %} 3 | {% blocktrans %}Password Reset E-mail{% endblocktrans %} 4 | {% endautoescape %} 5 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/cannot_delete_primary_email.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}You cannot remove your primary e-mail address ({{email}}).{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/email_confirmation_sent.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Confirmation e-mail sent to {{email}}.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/email_confirmed.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}You have confirmed {{email}}.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/email_deleted.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Removed e-mail address {{email}}.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/logged_in.txt: -------------------------------------------------------------------------------- 1 | {% load account %} 2 | {% load i18n %} 3 | {% user_display user as name %} 4 | {% blocktrans %}Successfully signed in as {{name}}.{% endblocktrans %} 5 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/logged_out.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}You have signed out.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/password_changed.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Password successfully changed.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/password_set.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Password successfully set.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/primary_email_set.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Primary e-mail address set.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/messages/unverified_primary_email.txt: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% blocktrans %}Your primary e-mail address must be verified.{% endblocktrans %} 3 | -------------------------------------------------------------------------------- /mysite/templates/account/password_reset_from_key_done.html: -------------------------------------------------------------------------------- 1 | {% extends "account/base.html" %} 2 | 3 | {% load i18n %} 4 | {% block head_title %}{% trans "Change Password" %}{% endblock %} 5 | {% block user_title %}{% trans "Change Password" %}{% endblock %} 6 | 7 | {% block content %} 8 |

{% trans 'Your password is now changed.' %}

9 | {% endblock %} 10 | -------------------------------------------------------------------------------- /mysite/templates/account/signup_closed.html: -------------------------------------------------------------------------------- 1 | {% extends "account/base.html" %} 2 | 3 | {% load i18n %} 4 | 5 | {% block head_title %}{% trans "Sign Up Closed" %}{% endblock %} 6 | {% block user_title %}{% trans "Sign Up Closed" %}{% endblock %} 7 | 8 | {% block content %} 9 | 10 |

{% trans "We are sorry, but the sign up is currently closed." %}

11 | {% endblock %} 12 | -------------------------------------------------------------------------------- /mysite/templates/account/snippets/already_logged_in.html: -------------------------------------------------------------------------------- 1 | {% load i18n %} 2 | {% load account %} 3 | 4 | {% user_display user as user_display %} 5 |

{% trans "Note" %}: {% blocktrans %}you are already logged in as {{ user_display }}.{% endblocktrans %}

6 | -------------------------------------------------------------------------------- /mysite/templates/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: /accounts/ 3 | Disallow: /admin/ 4 | Disallow: /xadmin/ 5 | Disallow: /search/ 6 | Disallow: /comment/ 7 | 8 | Sitemap: https://www.xxxxxxx.com/sitemap.xml 9 | -------------------------------------------------------------------------------- /mysite/templates/search/indexes/mainapp/article_text.txt: -------------------------------------------------------------------------------- 1 | {{ object.title }} 2 | {{ object.summary }} 3 | {{ object.body }} 4 | -------------------------------------------------------------------------------- /mysite/whoosh_index/MAIN_4ejmh8y7iosdkz79.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/whoosh_index/MAIN_4ejmh8y7iosdkz79.seg -------------------------------------------------------------------------------- /mysite/whoosh_index/MAIN_WRITELOCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/whoosh_index/MAIN_WRITELOCK -------------------------------------------------------------------------------- /mysite/whoosh_index/MAIN_i6t888j3l6jkvdty.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/whoosh_index/MAIN_i6t888j3l6jkvdty.seg -------------------------------------------------------------------------------- /mysite/whoosh_index/MAIN_x1u0itdmpt31rj00.seg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/whoosh_index/MAIN_x1u0itdmpt31rj00.seg -------------------------------------------------------------------------------- /mysite/whoosh_index/_MAIN_16712.toc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreamerLS1994/django-blog/82fd161eaf7ec1520fffe8513f25e130b90e6c26/mysite/whoosh_index/_MAIN_16712.toc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Django==2.2.5 2 | django-allauth==0.39.1 3 | django-ckeditor==5.7.1 4 | django-crispy-forms==1.7.2 5 | django-haystack==2.8.1 6 | django-imagekit==4.0.2 7 | jieba==0.39 8 | Pillow==6.1.0 9 | Whoosh==2.7.4 10 | xadmin2==2.0.1 --------------------------------------------------------------------------------