├── .gitattributes ├── .gitignore ├── .idea ├── django_blog.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── LICENSE ├── README.md ├── api ├── __init__.py ├── permissions.py ├── serializers.py └── views.py ├── blog ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-34.pyc │ ├── admin.cpython-35.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-34.pyc │ ├── forms.cpython-35.pyc │ ├── forms.cpython-36.pyc │ ├── models.cpython-34.pyc │ ├── models.cpython-35.pyc │ ├── models.cpython-36.pyc │ ├── sitemaps.cpython-34.pyc │ ├── sitemaps.cpython-35.pyc │ ├── sitemaps.cpython-36.pyc │ ├── urls.cpython-34.pyc │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── views.cpython-34.pyc │ ├── views.cpython-35.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── catalog.py ├── feeds.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20170506_1253.py │ ├── 0003_auto_20170506_1342.py │ ├── 0004_auto_20170506_1356.py │ ├── 0005_auto_20170507_2026.py │ ├── 0006_auto_20170515_0003.py │ ├── 0007_auto_20170515_2106.py │ ├── 0008_auto_20170515_2128.py │ ├── 0009_auto_20170519_1624.py │ ├── 0010_auto_20170621_1218.py │ ├── 0011_auto_20170621_1224.py │ ├── 0012_auto_20170621_1250.py │ ├── 0013_user_nickname.py │ ├── 0014_remove_user_avatar.py │ ├── 0015_user_avatar.py │ ├── 0016_remove_user_avatar.py │ ├── 0017_avatar.py │ ├── 0018_auto_20170625_1616.py │ ├── 0019_user_avatar.py │ ├── 0020_auto_20170625_1815.py │ ├── 0021_auto_20170625_1839.py │ ├── 0022_auto_20170625_1928.py │ ├── 0023_auto_20170625_2127.py │ ├── 0024_auto_20170625_2247.py │ ├── 0025_auto_20170626_0008.py │ ├── 0026_auto_20170629_1342.py │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-34.pyc ├── models.py ├── sitemaps.py ├── static │ ├── blog │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── form.css │ │ │ ├── nav.css │ │ │ ├── owl.carousel.css │ │ │ ├── prism.css │ │ │ └── style.css │ │ ├── html5_blue │ │ │ ├── css │ │ │ │ ├── embed.default.css │ │ │ │ ├── font-awesome.min.css │ │ │ │ ├── shop.css │ │ │ │ └── style.css │ │ │ ├── fonts │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ └── fontawesome-webfont.ttf │ │ │ ├── images │ │ │ │ ├── 3cd871e89f2f6eb8a3a032653a4f8018.jpg │ │ │ │ ├── 916da2cd86c3e984da62c4e47993f604.jpg │ │ │ │ ├── ab93d4726fd97c7472919aa707607472.jpg │ │ │ │ ├── avatar.jpeg │ │ │ │ ├── bigpic01.jpg │ │ │ │ ├── bigpic02.jpg │ │ │ │ ├── bigpic03.jpg │ │ │ │ ├── bigpic04.jpg │ │ │ │ ├── ico_jian.gif │ │ │ │ ├── ico_song.gif │ │ │ │ ├── ico_zhe.gif │ │ │ │ ├── logo.png │ │ │ │ ├── sanjiao.jpg │ │ │ │ ├── shine_brands.png │ │ │ │ └── themes.gif │ │ │ └── js │ │ │ │ ├── embed.js │ │ │ │ ├── jquery.min.js │ │ │ │ ├── jquery.sticky.elements.js │ │ │ │ ├── responsiveslides.min.js │ │ │ │ ├── thea2.js │ │ │ │ ├── thea3.js │ │ │ │ ├── thea4.js │ │ │ │ └── yycm.js │ │ ├── images │ │ │ ├── Thumbs.db │ │ │ ├── ar.png │ │ │ ├── ar2.png │ │ │ ├── back.png │ │ │ ├── ci.jpg │ │ │ ├── ci1.jpg │ │ │ ├── ci2.jpg │ │ │ ├── ci3.jpg │ │ │ ├── ci4.jpg │ │ │ ├── ci5.jpg │ │ │ ├── ci6.jpg │ │ │ ├── ci7.jpg │ │ │ ├── close.png │ │ │ ├── co.png │ │ │ ├── dot.png │ │ │ ├── f1.jpg │ │ │ ├── f2.jpg │ │ │ ├── f3.jpg │ │ │ ├── f4.jpg │ │ │ ├── fa.jpg │ │ │ ├── fa1.jpg │ │ │ ├── fa2.jpg │ │ │ ├── fa3.jpg │ │ │ ├── favicon.ico │ │ │ ├── github.png │ │ │ ├── img-sprite.png │ │ │ ├── line.png │ │ │ ├── line1.png │ │ │ ├── logo.png │ │ │ ├── mi.jpg │ │ │ ├── mi1.jpg │ │ │ ├── mi2.jpg │ │ │ ├── mi3.jpg │ │ │ ├── pc.jpg │ │ │ ├── pc1.jpg │ │ │ ├── pc2.jpg │ │ │ ├── pc3.jpg │ │ │ ├── pi.jpg │ │ │ ├── pi1.jpg │ │ │ ├── pi2.jpg │ │ │ ├── pic.jpg │ │ │ ├── pic1.jpg │ │ │ ├── pic2.jpg │ │ │ ├── pic3.jpg │ │ │ ├── play3.png │ │ │ ├── pp.jpg │ │ │ ├── pp0.jpg │ │ │ ├── pp01.jpg │ │ │ ├── pp1.jpg │ │ │ ├── pp11.jpg │ │ │ ├── pp12.jpg │ │ │ ├── pp2.jpg │ │ │ ├── pp21.jpg │ │ │ ├── pp22.jpg │ │ │ ├── qu.png │ │ │ ├── se.png │ │ │ ├── sin.jpg │ │ │ ├── slider_1.png │ │ │ ├── slider_2.png │ │ │ ├── slider_3.png │ │ │ ├── slider_4.png │ │ │ ├── time.png │ │ │ ├── up.png │ │ │ ├── views.png │ │ │ └── weibo.png │ │ └── js │ │ │ ├── easing.js │ │ │ ├── easyResponsiveTabs.js │ │ │ ├── jquery.min.js │ │ │ ├── main.js │ │ │ ├── move-top.js │ │ │ └── owl.carousel.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 │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-ch.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── gu.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── ku.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── mn.js │ │ │ ├── ms.js │ │ │ ├── nb.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── oc.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── si.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-latn.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── th.js │ │ │ ├── tr.js │ │ │ ├── tt.js │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── mk.js │ │ │ │ │ ├── mn.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ro.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ ├── 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 │ │ │ ├── ckeditor-emojione-1.0.2 │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dialogs │ │ │ │ │ └── emojione.js │ │ │ │ ├── icons │ │ │ │ │ └── emojione.png │ │ │ │ ├── libs │ │ │ │ │ └── emojione │ │ │ │ │ │ └── emojione.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ ├── emojione-awesome.css │ │ │ │ │ └── emojione.css │ │ │ ├── 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.md │ │ │ │ │ │ ├── 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 │ │ │ ├── emojione │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dialogs │ │ │ │ │ └── emojione.js │ │ │ │ ├── icons │ │ │ │ │ └── emojione.png │ │ │ │ ├── libs │ │ │ │ │ └── emojione │ │ │ │ │ │ └── emojione.min.js │ │ │ │ ├── plugin.js │ │ │ │ └── styles │ │ │ │ │ ├── emojione-awesome.css │ │ │ │ │ └── emojione.css │ │ │ ├── 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 │ │ │ ├── prism │ │ │ │ ├── Creating and Editing Code Snippets.txt │ │ │ │ ├── Installation Guide.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── prism │ │ │ │ │ │ ├── prism.css │ │ │ │ │ │ ├── prism_patched.min.css │ │ │ │ │ │ └── prism_patched.min.js │ │ │ │ └── plugin.js │ │ │ ├── scayt │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── dialogs │ │ │ │ │ ├── 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 │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de-ch.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.js │ │ │ │ │ ├── km.js │ │ │ │ │ ├── ko.js │ │ │ │ │ ├── ku.js │ │ │ │ │ ├── lt.js │ │ │ │ │ ├── lv.js │ │ │ │ │ ├── nb.js │ │ │ │ │ ├── nl.js │ │ │ │ │ ├── no.js │ │ │ │ │ ├── oc.js │ │ │ │ │ ├── pl.js │ │ │ │ │ ├── pt-br.js │ │ │ │ │ ├── pt.js │ │ │ │ │ ├── ru.js │ │ │ │ │ ├── si.js │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sq.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── tt.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ └── specialchar.js │ │ │ ├── stylesheetparser │ │ │ │ └── plugin.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tableresize │ │ │ │ └── plugin.js │ │ │ ├── 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 │ │ │ ├── uploadfile │ │ │ │ └── plugin.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 │ │ ├── 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 ├── tasks.py ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── blog_tags.cpython-34.pyc │ │ ├── blog_tags.cpython-35.pyc │ │ └── blog_tags.cpython-36.pyc │ └── blog_tags.py ├── tests.py ├── urls.py └── views.py ├── django_blog ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── celery.cpython-34.pyc │ ├── celery.cpython-35.pyc │ ├── celery.cpython-36.pyc │ ├── settings.cpython-34.pyc │ ├── settings.cpython-35.pyc │ ├── settings.cpython-36.pyc │ ├── urls.cpython-34.pyc │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── wsgi.cpython-34.pyc │ ├── wsgi.cpython-35.pyc │ └── wsgi.cpython-36.pyc ├── celery.py ├── settings.py ├── urls.py └── wsgi.py ├── easy_comment ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-34.pyc │ ├── admin.cpython-35.pyc │ ├── admin.cpython-36.pyc │ ├── forms.cpython-34.pyc │ ├── forms.cpython-35.pyc │ ├── forms.cpython-36.pyc │ ├── handlers.cpython-34.pyc │ ├── handlers.cpython-35.pyc │ ├── handlers.cpython-36.pyc │ ├── models.cpython-34.pyc │ ├── models.cpython-35.pyc │ ├── models.cpython-36.pyc │ ├── tasks.cpython-35.pyc │ ├── urls.cpython-34.pyc │ ├── urls.cpython-35.pyc │ ├── urls.cpython-36.pyc │ ├── views.cpython-34.pyc │ ├── views.cpython-35.pyc │ └── views.cpython-36.pyc ├── admin.py ├── apps.py ├── forms.py ├── handlers.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ └── __init__.cpython-34.pyc ├── models.py ├── static │ ├── ckeditor │ │ └── ckeditor │ │ │ └── plugins │ │ │ └── prism │ │ │ ├── Creating and Editing Code Snippets.txt │ │ │ ├── Installation Guide.txt │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── lib │ │ │ └── prism │ │ │ │ ├── prism_patched.min.css │ │ │ │ └── prism_patched.min.js │ │ │ └── plugin.js │ ├── easy_comment │ │ ├── css │ │ │ ├── bootstrap.css │ │ │ ├── comment.css │ │ │ └── prism.css │ │ ├── image │ │ │ └── default.png │ │ └── js │ │ │ └── comment.js │ └── notifications │ │ └── notice.js ├── tasks.py ├── templates │ ├── easy_comment │ │ ├── comment_entry.html │ │ ├── comment_form.html │ │ ├── comment_list.html │ │ └── test_index.html │ └── notifications │ │ ├── email │ │ ├── email.html │ │ └── email.txt │ │ ├── list.html │ │ ├── notice.html │ │ └── test_tags.html ├── templatetags │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-34.pyc │ │ ├── __init__.cpython-35.pyc │ │ ├── __init__.cpython-36.pyc │ │ ├── comment_tags.cpython-34.pyc │ │ ├── comment_tags.cpython-35.pyc │ │ └── comment_tags.cpython-36.pyc │ └── comment_tags.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── media ├── avatar │ └── 2017 │ │ └── 05 │ │ └── 微信图片_20170415230343.jpg └── upload │ └── 2017 │ └── 05 │ ├── 12 │ ├── qq20170512231115.jpg │ └── qq20170512231115_thumb.jpg │ ├── 24 │ ├── prfpsi.png │ └── prfpsi_thumb.png │ ├── 25 │ ├── qq20170525115546.jpg │ └── qq20170525115546_thumb.jpg │ ├── 07 │ ├── _20170415230343.jpg │ └── _20170415230343_thumb.jpg │ └── 08 │ ├── jnhyki.png │ ├── jnhyki_thumb.png │ ├── pdsfjk.png │ └── pdsfjk_thumb.png ├── online_status ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-34.pyc │ ├── __init__.cpython-35.pyc │ ├── __init__.cpython-36.pyc │ ├── admin.cpython-34.pyc │ ├── admin.cpython-35.pyc │ ├── admin.cpython-36.pyc │ ├── middleware.cpython-34.pyc │ ├── middleware.cpython-35.pyc │ ├── middleware.cpython-36.pyc │ ├── models.cpython-34.pyc │ ├── models.cpython-35.pyc │ ├── models.cpython-36.pyc │ ├── settings.cpython-34.pyc │ ├── settings.cpython-35.pyc │ └── settings.cpython-36.pyc ├── admin.py ├── apps.py ├── middleware.py ├── migrations │ ├── __init__.py │ └── __pycache__ │ │ ├── 0002_auto_20170729_0957.cpython-34.pyc │ │ ├── 0003_auto_20170729_0958.cpython-34.pyc │ │ ├── 0004_auto_20170729_1014.cpython-34.pyc │ │ ├── 0005_auto_20170729_1018.cpython-34.pyc │ │ ├── 0006_auto_20170729_1026.cpython-34.pyc │ │ └── __init__.cpython-34.pyc ├── models.py ├── settings.py ├── tests.py └── views.py ├── requirements.txt └── templates ├── account ├── base.html ├── email_confirm.html ├── login.html ├── 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 ├── user_detail.html └── verification_sent.html └── blog ├── base.html ├── comment.html ├── detail.html ├── index.html ├── index2.html └── search.html /.gitattributes: -------------------------------------------------------------------------------- 1 | *.css linguist-language=Python 2 | *.html linguist-language=Python -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # django_blog -------------------------------------------------------------------------------- /api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/api/__init__.py -------------------------------------------------------------------------------- /api/permissions.py: -------------------------------------------------------------------------------- 1 | from rest_framework import permissions 2 | 3 | class IsAdminUserOrReadOnly(permissions.BasePermission): 4 | 5 | def has_permission(self, request, view): 6 | if request.method in permissions.SAFE_METHODS: 7 | return True 8 | return request.user and request.user.is_staff 9 | -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__init__.py -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/forms.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/forms.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/sitemaps.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/sitemaps.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/sitemaps.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/sitemaps.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/sitemaps.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/sitemaps.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /blog/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /blog/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /blog/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /blog/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class BlogConfig(AppConfig): 5 | name = 'blog' 6 | -------------------------------------------------------------------------------- /blog/forms.py: -------------------------------------------------------------------------------- 1 | from django.forms import ModelForm 2 | from .models import User 3 | 4 | class UserDetailForm(ModelForm): 5 | class Meta: 6 | model = User 7 | fields = ('nickname', 'qq', 'url', 'avatar') -------------------------------------------------------------------------------- /blog/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/migrations/__init__.py -------------------------------------------------------------------------------- /blog/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/css/shop.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/css/shop.css -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/3cd871e89f2f6eb8a3a032653a4f8018.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/3cd871e89f2f6eb8a3a032653a4f8018.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/916da2cd86c3e984da62c4e47993f604.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/916da2cd86c3e984da62c4e47993f604.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/ab93d4726fd97c7472919aa707607472.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/ab93d4726fd97c7472919aa707607472.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/avatar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/avatar.jpeg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/bigpic01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/bigpic01.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/bigpic02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/bigpic02.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/bigpic03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/bigpic03.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/bigpic04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/bigpic04.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/ico_jian.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/ico_jian.gif -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/ico_song.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/ico_song.gif -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/ico_zhe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/ico_zhe.gif -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/logo.png -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/sanjiao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/sanjiao.jpg -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/shine_brands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/shine_brands.png -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/images/themes.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/html5_blue/images/themes.gif -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/js/thea2.js: -------------------------------------------------------------------------------- 1 | document.write(""); -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/js/thea3.js: -------------------------------------------------------------------------------- 1 | document.write(""); -------------------------------------------------------------------------------- /blog/static/blog/html5_blue/js/thea4.js: -------------------------------------------------------------------------------- 1 | document.write(""); -------------------------------------------------------------------------------- /blog/static/blog/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/Thumbs.db -------------------------------------------------------------------------------- /blog/static/blog/images/ar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ar.png -------------------------------------------------------------------------------- /blog/static/blog/images/ar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ar2.png -------------------------------------------------------------------------------- /blog/static/blog/images/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/back.png -------------------------------------------------------------------------------- /blog/static/blog/images/ci.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci4.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci5.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci6.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/ci7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/ci7.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/close.png -------------------------------------------------------------------------------- /blog/static/blog/images/co.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/co.png -------------------------------------------------------------------------------- /blog/static/blog/images/dot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/dot.png -------------------------------------------------------------------------------- /blog/static/blog/images/f1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/f1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/f2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/f3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/f3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/f4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/f4.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/fa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/fa.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/fa1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/fa1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/fa2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/fa2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/fa3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/fa3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/favicon.ico -------------------------------------------------------------------------------- /blog/static/blog/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/github.png -------------------------------------------------------------------------------- /blog/static/blog/images/img-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/img-sprite.png -------------------------------------------------------------------------------- /blog/static/blog/images/line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/line.png -------------------------------------------------------------------------------- /blog/static/blog/images/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/line1.png -------------------------------------------------------------------------------- /blog/static/blog/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/logo.png -------------------------------------------------------------------------------- /blog/static/blog/images/mi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/mi.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/mi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/mi1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/mi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/mi2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/mi3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/mi3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pc.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pc1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pc1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pc2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pc2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pc3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pc3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pi.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pi1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pi1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pi2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pi2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pic.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pic1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pic1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pic2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pic2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pic3.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/play3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/play3.png -------------------------------------------------------------------------------- /blog/static/blog/images/pp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp0.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp01.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp1.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp11.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp12.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp2.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp21.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/pp22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/pp22.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/qu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/qu.png -------------------------------------------------------------------------------- /blog/static/blog/images/se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/se.png -------------------------------------------------------------------------------- /blog/static/blog/images/sin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/sin.jpg -------------------------------------------------------------------------------- /blog/static/blog/images/slider_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/slider_1.png -------------------------------------------------------------------------------- /blog/static/blog/images/slider_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/slider_2.png -------------------------------------------------------------------------------- /blog/static/blog/images/slider_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/slider_3.png -------------------------------------------------------------------------------- /blog/static/blog/images/slider_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/slider_4.png -------------------------------------------------------------------------------- /blog/static/blog/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/time.png -------------------------------------------------------------------------------- /blog/static/blog/images/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/up.png -------------------------------------------------------------------------------- /blog/static/blog/images/views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/views.png -------------------------------------------------------------------------------- /blog/static/blog/images/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/blog/images/weibo.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/autoembed/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","ku",{embeddingInProgress:"لەهەوڵی لکاندنی بەستەری ناونیشانە...",embeddingFailed:"ئەم بەستەرە خۆکارانە ناتواندرێت بخرێتە ناوێ."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/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."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/autoembed/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("autoembed","zh",{embeddingInProgress:"正在嘗試嵌入已貼上的 URL...",embeddingFailed:"這個 URL 無法被自動嵌入。"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/ckeditor-emojione-1.0.2/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ckeditor-emojione", 3 | "main": [ 4 | "plugin.js" 5 | ], 6 | "dependencies": { 7 | "emojione": ">=2.0.0" 8 | }, 9 | "license": "MIT", 10 | "keywords": [ 11 | "ckeditor-emojione", 12 | "emojione" 13 | ], 14 | "ignore": [ 15 | "package.json" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/ckeditor-emojione-1.0.2/icons/emojione.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/ckeditor-emojione-1.0.2/icons/emojione.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/codesnippet/icons/codesnippet.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/codesnippet/icons/hidpi/codesnippet.png -------------------------------------------------------------------------------- /blog/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:"代码段"}); -------------------------------------------------------------------------------- /blog/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:"程式碼片段"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/brown_papersq.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/codesnippet/lib/highlight/styles/school_book.png -------------------------------------------------------------------------------- /blog/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:"نوع العنصر"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"نوع عنصر"}); -------------------------------------------------------------------------------- /blog/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:"પ્રાથમિક પ્રકાર"}); -------------------------------------------------------------------------------- /blog/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:"סוג האלמנט"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"要素タイプ"}); -------------------------------------------------------------------------------- /blog/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:"ប្រភេទ​ធាតុ"}); -------------------------------------------------------------------------------- /blog/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:"요소 형식"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"元素类型"}); -------------------------------------------------------------------------------- /blog/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:"元件類型"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/docprops/icons/docprops-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/docprops/icons/docprops.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/docprops/icons/hidpi/docprops.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/embed/icons/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/embed/icons/embed.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/embed/icons/hidpi/embed.png -------------------------------------------------------------------------------- /blog/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} ……"}); -------------------------------------------------------------------------------- /blog/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} 已完成..."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/embedsemantic/icons/embedsemantic.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/embedsemantic/icons/hidpi/embedsemantic.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/emojione/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ckeditor-emojione", 3 | "main": [ 4 | "plugin.js" 5 | ], 6 | "dependencies": { 7 | "emojione": ">=2.0.0" 8 | }, 9 | "license": "MIT", 10 | "keywords": [ 11 | "ckeditor-emojione", 12 | "emojione" 13 | ], 14 | "ignore": [ 15 | "package.json" 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/emojione/icons/emojione.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/emojione/icons/emojione.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/flash/images/placeholder.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/forms/images/hiddenfield.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/iframe/images/placeholder.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/image2/icons/hidpi/image.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/image2/icons/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/image2/icons/image.png -------------------------------------------------------------------------------- /blog/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を入力してください。"}); -------------------------------------------------------------------------------- /blog/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)가 없습니다."}); -------------------------------------------------------------------------------- /blog/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:"缺少图像源文件地址"}); -------------------------------------------------------------------------------- /blog/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 "}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/language/icons/hidpi/language.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/language/icons/language.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/language/icons/language.png -------------------------------------------------------------------------------- /blog/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:"حذف اللغة"}); -------------------------------------------------------------------------------- /blog/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:"Премахни език"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Αφαίρεση γλώσσας"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"حذف زبان"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"הסר שפה"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"言語を削除"}); -------------------------------------------------------------------------------- /blog/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:"លុប​ភាសា"}); -------------------------------------------------------------------------------- /blog/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:"언어 설정 지우기"}); -------------------------------------------------------------------------------- /blog/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:"لابردنی زمان"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Удалить язык"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Телне бетерү"}); -------------------------------------------------------------------------------- /blog/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:"Вилучити мову"}); -------------------------------------------------------------------------------- /blog/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ữ"}); -------------------------------------------------------------------------------- /blog/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:"移除语言"}); -------------------------------------------------------------------------------- /blog/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:"移除語言"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/mathjax/icons/hidpi/mathjax.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/mathjax/icons/mathjax.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/mathjax/images/loader.gif -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"رياضيات"}); -------------------------------------------------------------------------------- /blog/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:"формули"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"μαθηματικά"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"ریاضی"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"מתמטיקה"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"គណិត"}); -------------------------------------------------------------------------------- /blog/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:"수식"}); -------------------------------------------------------------------------------- /blog/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:"بیرکاری"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"мат."}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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ë"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"математика"}); -------------------------------------------------------------------------------- /blog/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:"математика"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"数字公式"}); -------------------------------------------------------------------------------- /blog/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:"數學"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","cs",{closed:"Oznámení zavřeno."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","da",{closed:"Notefikation lukket."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","de",{closed:"Benachrichtigung geschlossen."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","en",{closed:"Notification closed."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","eo",{closed:"Sciigo fermita"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","fr",{closed:"La notification est close."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","gl",{closed:"Notificación pechada."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","it",{closed:"Notifica chiusa."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ko",{closed:"알림이 닫힘."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ku",{closed:"ئاگادارکەرەوەکە داخرا."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nb",{closed:"Varsling lukket."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","nl",{closed:"Melding gesloten."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pl",{closed:"Powiadomienie zostało zamknięte."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","pt-br",{closed:"Notificação fechada."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","ru",{closed:"Уведомление закрыто"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","sv",{closed:"Notifiering stängd."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","tr",{closed:"Uyarılar kapatıldı."}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh-cn",{closed:"通知已关闭。"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/notification/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("notification","zh",{closed:"通知已關閉。"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/pagebreak/images/pagebreak.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/placeholder/icons/hidpi/placeholder.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/placeholder/icons/placeholder.png -------------------------------------------------------------------------------- /blog/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:"占位符"}); -------------------------------------------------------------------------------- /blog/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:"預留位置"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/preview/preview.html: -------------------------------------------------------------------------------- 1 | 14 | -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_address.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_blockquote.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_div.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h1.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h2.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h3.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h4.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h5.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_h6.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_p.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/showblocks/images/block_pre.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/angel_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/angry_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/broken_heart.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/confused_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/cry_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/devil_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/embaressed_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/embarrassed_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/envelope.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/envelope.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/heart.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/heart.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/kiss.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/kiss.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/lightbulb.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/omg_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/regular_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/sad_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/shades_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/teeth_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_down.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/thumbs_up.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/tongue_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/tounge_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/whatchutalkingabout_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/smiley/images/wink_smile.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/hidpi/sourcedialog.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog-rtl.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/sourcedialog/icons/sourcedialog.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/af.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","af",{toolbar:"Bron",title:"Bron"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ar.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ar",{toolbar:"المصدر",title:"المصدر"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bg.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bg",{toolbar:"Източник",title:"Източник"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bn",{toolbar:"সোর্স",title:"সোর্স"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/bs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","bs",{toolbar:"HTML kôd",title:"HTML kôd"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ca",{toolbar:"Codi font",title:"Codi font"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cs.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cs",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/cy.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","cy",{toolbar:"HTML",title:"HTML"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/da.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","da",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/de.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","de",{toolbar:"Quellcode",title:"Quellcode"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/el.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","el",{toolbar:"Κώδικας",title:"Κώδικας"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-au.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-au",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en-gb",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/en.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","en",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eo",{toolbar:"Fonto",title:"Fonto"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/es.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","es",{toolbar:"Fuente HTML",title:"Fuente HTML"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/et.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","et",{toolbar:"Lähtekood",title:"Lähtekood"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/eu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","eu",{toolbar:"HTML Iturburua",title:"HTML Iturburua"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fa.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fa",{toolbar:"منبع",title:"منبع"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fi",{toolbar:"Koodi",title:"Koodi"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fo.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fo",{toolbar:"Kelda",title:"Kelda"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr-ca",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/fr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","fr",{toolbar:"Source",title:"Source"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gl",{toolbar:"Orixe",title:"Orixe"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/gu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","gu",{toolbar:"મૂળ કે પ્રાથમિક દસ્તાવેજ",title:"મૂળ કે પ્રાથમિક દસ્તાવેજ"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/he.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","he",{toolbar:"מקור",title:"מקור"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hi",{toolbar:"सोर्स",title:"सोर्स"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hr",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/hu.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","hu",{toolbar:"Forráskód",title:"Forráskód"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/id.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","id",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/is.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","is",{toolbar:"Kóði",title:"Kóði"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/it.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","it",{toolbar:"Sorgente",title:"Sorgente"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ja.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ja",{toolbar:"ソース",title:"ソース"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ka.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ka",{toolbar:"კოდები",title:"კოდები"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/km.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","km",{toolbar:"អក្សរ​កូដ",title:"អក្សរ​កូដ"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ko.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ko",{toolbar:"소스",title:"소스"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ku.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ku",{toolbar:"سەرچاوە",title:"سەرچاوە"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lt",{toolbar:"Šaltinis",title:"Šaltinis"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/lv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","lv",{toolbar:"HTML kods",title:"HTML kods"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/mn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","mn",{toolbar:"Код",title:"Код"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ms.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ms",{toolbar:"Sumber",title:"Sumber"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nb.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nb",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/nl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","nl",{toolbar:"Broncode",title:"Broncode"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/no.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","no",{toolbar:"Kilde",title:"Kilde"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pl",{toolbar:"Źródło dokumentu",title:"Źródło dokumentu"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt-br",{toolbar:"Código-Fonte",title:"Código-Fonte"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/pt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","pt",{toolbar:"Fonte",title:"Fonte"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ro.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ro",{toolbar:"Sursa",title:"Sursa"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ru.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ru",{toolbar:"Исходник",title:"Источник"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/si.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","si",{toolbar:"මුලාශ්‍රය",title:"මුලාශ්‍රය"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sk",{toolbar:"Zdroj",title:"Zdroj"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sl.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sl",{toolbar:"Izvorna koda",title:"Izvorna koda"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sq.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sq",{toolbar:"Burimi",title:"Burimi"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr-latn",{toolbar:"Kôd",title:"Kôd"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sr",{toolbar:"Kôд",title:"Kôд"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/sv.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","sv",{toolbar:"Källa",title:"Källa"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/th.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","th",{toolbar:"ดูรหัส HTML",title:"ดูรหัส HTML"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tr.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tr",{toolbar:"Kaynak",title:"Kaynak"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/tt.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","tt",{toolbar:"Чыганак",title:"Чыганак"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/ug.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","ug",{toolbar:"مەنبە",title:"مەنبە"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/uk.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","uk",{toolbar:"Джерело",title:"Джерело"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/vi.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","vi",{toolbar:"Mã HTML",title:"Mã HTML"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh-cn",{toolbar:"源码",title:"源码"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/sourcedialog/lang/zh.js: -------------------------------------------------------------------------------- 1 | CKEDITOR.plugins.setLang("sourcedialog","zh",{toolbar:"原始碼",title:"原始碼"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template1.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template2.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/templates/templates/images/template3.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/icons/hidpi/uicolor.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/icons/uicolor.png -------------------------------------------------------------------------------- /blog/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:"مجموعات ألوان معرفة مسبقا"}); -------------------------------------------------------------------------------- /blog/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:"既定カラーセット"}); -------------------------------------------------------------------------------- /blog/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:"미리 정의된 색상"}); -------------------------------------------------------------------------------- /blog/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:"预定义颜色集"}); -------------------------------------------------------------------------------- /blog/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:"設定預先定義的色彩"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_bg.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/hue_thumb.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_mask.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/uicolor/yui/assets/picker_thumb.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"إضغط و إسحب للتحريك"}); -------------------------------------------------------------------------------- /blog/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:"Кликни и влачи, за да преместиш"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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í"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Κάνετε κλικ και σύρετε το ποντίκι για να μετακινήστε"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"کلیک و کشیدن برای جابجایی"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"לחץ וגרור להזזה"}); -------------------------------------------------------------------------------- /blog/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š"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"ドラッグして移動"}); -------------------------------------------------------------------------------- /blog/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:"ចុច​ហើយ​ទាញ​ដើម្បី​ផ្លាស់​ទី"}); -------------------------------------------------------------------------------- /blog/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:"움직이려면 클릭 후 드래그 하세요"}); -------------------------------------------------------------------------------- /blog/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:"کرتەبکە و ڕایبکێشە بۆ جوڵاندن"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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ść."}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Нажмите и перетащите"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"Күчереп куер өчен басып шудырыгыз"}); -------------------------------------------------------------------------------- /blog/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:"Клікніть і потягніть для переміщення"}); -------------------------------------------------------------------------------- /blog/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"}); -------------------------------------------------------------------------------- /blog/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:"点击并拖拽以移动"}); -------------------------------------------------------------------------------- /blog/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:"拖曳以移動"}); -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/arrow.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/close.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/close.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/lock.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/hidpi/refresh.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/lock-open.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/refresh.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono-lisa/images/spinner.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /blog/static/ckeditor/ckeditor/skins/moono/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/ckeditor/skins/moono/images/spinner.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/doc.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/file.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/pdf.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/ppt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/ppt.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/swf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/swf.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/txt.png -------------------------------------------------------------------------------- /blog/static/ckeditor/file-icons/xls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/file-icons/xls.png -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/caption.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/caption.png -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/loader.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/loaderWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/loaderWhite.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/nextPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/nextPageArrow.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/nextPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/nextPageArrowWhite.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/prevPageArrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/prevPageArrow.gif -------------------------------------------------------------------------------- /blog/static/ckeditor/galleriffic/css/prevPageArrowWhite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/static/ckeditor/galleriffic/css/prevPageArrowWhite.gif -------------------------------------------------------------------------------- /blog/tasks.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, unicode_literals 2 | from celery import shared_task 3 | import time 4 | 5 | 6 | @shared_task 7 | def send_mail(email): 8 | print('sending email...') 9 | time.sleep(2) 10 | print('finished') 11 | return True -------------------------------------------------------------------------------- /blog/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__init__.py -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/blog_tags.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/blog_tags.cpython-34.pyc -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/blog_tags.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/blog_tags.cpython-35.pyc -------------------------------------------------------------------------------- /blog/templatetags/__pycache__/blog_tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/blog/templatetags/__pycache__/blog_tags.cpython-36.pyc -------------------------------------------------------------------------------- /blog/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /django_blog/__init__.py: -------------------------------------------------------------------------------- 1 | from __future__ import absolute_import, unicode_literals 2 | import pymysql 3 | from .celery import app as celery_app 4 | pymysql.install_as_MySQLdb() 5 | 6 | __all__ = ['celery_app'] -------------------------------------------------------------------------------- /django_blog/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/celery.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/celery.cpython-34.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/celery.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/celery.cpython-35.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/celery.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/celery.cpython-36.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/wsgi.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/wsgi.cpython-34.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/wsgi.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/wsgi.cpython-35.pyc -------------------------------------------------------------------------------- /django_blog/__pycache__/wsgi.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/django_blog/__pycache__/wsgi.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__init__.py -------------------------------------------------------------------------------- /easy_comment/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/forms.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/forms.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/forms.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/forms.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/forms.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/forms.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/handlers.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/handlers.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/handlers.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/handlers.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/handlers.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/handlers.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/tasks.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/tasks.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/urls.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/urls.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/urls.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/urls.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/urls.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/urls.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/views.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/views.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/views.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/views.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/__pycache__/views.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/__pycache__/views.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from mptt.admin import MPTTModelAdmin 3 | from .models import Comment, Favour 4 | # Register your models here. 5 | 6 | admin.site.register(Comment, MPTTModelAdmin) 7 | admin.site.register(Favour) -------------------------------------------------------------------------------- /easy_comment/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class EasyCommentConfig(AppConfig): 5 | name = 'easy_comment' 6 | -------------------------------------------------------------------------------- /easy_comment/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/migrations/__init__.py -------------------------------------------------------------------------------- /easy_comment/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/static/easy_comment/image/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/static/easy_comment/image/default.png -------------------------------------------------------------------------------- /easy_comment/templates/notifications/email/email.html: -------------------------------------------------------------------------------- 1 | Hello {{receiver}}, 2 | 3 | 您有 {{unsend_count}} 条最新评论通知。 4 | 5 | {% for notice in notice_list %} 6 | {{ notice.actor }} 在 {{ notice.target }} 中 {{ notic.verb }} 7 | {% endfor %} 8 | 9 | 请点击下面的链接,登录后查看 10 | {{ unread-link }} -------------------------------------------------------------------------------- /easy_comment/templates/notifications/email/email.txt: -------------------------------------------------------------------------------- 1 | Hello {{receiver}}, 2 | 3 | 您有 {{unsend_count}} 条最新评论通知。 4 | 5 | {% for notice in notice_list %} 6 | {{ notice.actor }} 在 {{ notice.target }} 中 {{ notice.verb }}, {{ notice.timestamp }} 7 | {% endfor %} 8 | 9 | 请点击下面的链接,登录后查看 10 | {{ unread_link }} -------------------------------------------------------------------------------- /easy_comment/templates/notifications/test_tags.html: -------------------------------------------------------------------------------- 1 | {% load notifications_tags %} 2 | 3 | {% register_notify_callbacks callbacks='fill_notification_menu,fill_notification_badge' %} 4 | 5 | {% notifications_unread as unread %} 6 | {{ unread }} 7 | {% live_notify_badge %} 8 | {% live_notify_list %} 9 | -------------------------------------------------------------------------------- /easy_comment/templatetags/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__init__.py -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/comment_tags.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/comment_tags.cpython-34.pyc -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/comment_tags.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/comment_tags.cpython-35.pyc -------------------------------------------------------------------------------- /easy_comment/templatetags/__pycache__/comment_tags.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/easy_comment/templatetags/__pycache__/comment_tags.cpython-36.pyc -------------------------------------------------------------------------------- /easy_comment/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /media/avatar/2017/05/微信图片_20170415230343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/avatar/2017/05/微信图片_20170415230343.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/07/_20170415230343.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/07/_20170415230343.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/07/_20170415230343_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/07/_20170415230343_thumb.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/08/jnhyki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/08/jnhyki.png -------------------------------------------------------------------------------- /media/upload/2017/05/08/jnhyki_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/08/jnhyki_thumb.png -------------------------------------------------------------------------------- /media/upload/2017/05/08/pdsfjk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/08/pdsfjk.png -------------------------------------------------------------------------------- /media/upload/2017/05/08/pdsfjk_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/08/pdsfjk_thumb.png -------------------------------------------------------------------------------- /media/upload/2017/05/12/qq20170512231115.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/12/qq20170512231115.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/12/qq20170512231115_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/12/qq20170512231115_thumb.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/24/prfpsi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/24/prfpsi.png -------------------------------------------------------------------------------- /media/upload/2017/05/24/prfpsi_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/24/prfpsi_thumb.png -------------------------------------------------------------------------------- /media/upload/2017/05/25/qq20170525115546.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/25/qq20170525115546.jpg -------------------------------------------------------------------------------- /media/upload/2017/05/25/qq20170525115546_thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/media/upload/2017/05/25/qq20170525115546_thumb.jpg -------------------------------------------------------------------------------- /online_status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__init__.py -------------------------------------------------------------------------------- /online_status/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/__init__.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/__init__.cpython-36.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/admin.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/admin.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/admin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/admin.cpython-35.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/admin.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/admin.cpython-36.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/middleware.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/middleware.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/middleware.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/middleware.cpython-35.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/middleware.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/middleware.cpython-36.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/models.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/models.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/models.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/models.cpython-35.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/models.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/models.cpython-36.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/settings.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/settings.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/settings.cpython-35.pyc -------------------------------------------------------------------------------- /online_status/__pycache__/settings.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/__pycache__/settings.cpython-36.pyc -------------------------------------------------------------------------------- /online_status/admin.py: -------------------------------------------------------------------------------- 1 | from django.contrib import admin 2 | from .models import OnlineStatus 3 | # Register your models here. 4 | 5 | admin.site.register(OnlineStatus) -------------------------------------------------------------------------------- /online_status/apps.py: -------------------------------------------------------------------------------- 1 | from django.apps import AppConfig 2 | 3 | 4 | class OnlineStatusConfig(AppConfig): 5 | name = 'online_status' 6 | -------------------------------------------------------------------------------- /online_status/migrations/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__init__.py -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/0002_auto_20170729_0957.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/0002_auto_20170729_0957.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/0003_auto_20170729_0958.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/0003_auto_20170729_0958.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/0004_auto_20170729_1014.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/0004_auto_20170729_1014.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/0005_auto_20170729_1018.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/0005_auto_20170729_1018.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/0006_auto_20170729_1026.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/0006_auto_20170729_1026.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/migrations/__pycache__/__init__.cpython-34.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/r26zhao/django_blog/8b663c94c7ccfb995fa9f76501ba649f6286c362/online_status/migrations/__pycache__/__init__.cpython-34.pyc -------------------------------------------------------------------------------- /online_status/settings.py: -------------------------------------------------------------------------------- 1 | from django.conf import settings 2 | 3 | USER_ONLINE_TIMEOUT = getattr(settings, 'USER_ONLINE_TIMEOUT', 600) 4 | USER_LAST_LOGIN_EXPIRE = getattr(settings, 'USER_LAST_LOGIN_EXPIRE', 60 * 60 * 24 * 7) 5 | AUTH_USER_MODEL = getattr(settings, 'AUTH_USER_MODEL', 'auth.User') -------------------------------------------------------------------------------- /online_status/tests.py: -------------------------------------------------------------------------------- 1 | from django.test import TestCase 2 | 3 | # Create your tests here. 4 | -------------------------------------------------------------------------------- /online_status/views.py: -------------------------------------------------------------------------------- 1 | from django.shortcuts import render 2 | 3 | # Create your views here. 4 | -------------------------------------------------------------------------------- /templates/account/signup_closed.html: -------------------------------------------------------------------------------- 1 | {% extends "account/base.html" %} 2 | {% load i18n %} 3 | 4 | {% block local-account %} 5 |

{% trans "Sign Up Closed" %}

6 |
7 |

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

8 |
9 | {% endblock local-account %} 10 | --------------------------------------------------------------------------------