├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.md ├── content_edit ├── __init__.py ├── admin.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── settings.py ├── static │ └── content_edit │ │ ├── ckeditor │ │ ├── .bower.json │ │ ├── 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.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 │ │ │ ├── ug.js │ │ │ ├── uk.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh.js │ │ ├── plugins │ │ │ ├── a11yhelp │ │ │ │ └── dialogs │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ └── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.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 │ │ │ │ │ ├── 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 │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ ├── about │ │ │ │ └── dialogs │ │ │ │ │ ├── about.js │ │ │ │ │ ├── hidpi │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ └── logo_ckeditor.png │ │ │ ├── clipboard │ │ │ │ └── dialogs │ │ │ │ │ └── paste.js │ │ │ ├── dialog │ │ │ │ └── dialogDefinition.js │ │ │ ├── fakeobjects │ │ │ │ └── images │ │ │ │ │ └── spacer.gif │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── image │ │ │ │ ├── dialogs │ │ │ │ │ └── image.js │ │ │ │ └── images │ │ │ │ │ └── noimage.png │ │ │ ├── link │ │ │ │ ├── dialogs │ │ │ │ │ ├── anchor.js │ │ │ │ │ └── link.js │ │ │ │ └── images │ │ │ │ │ ├── anchor.png │ │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ ├── magicline │ │ │ │ └── images │ │ │ │ │ ├── hidpi │ │ │ │ │ └── icon.png │ │ │ │ │ └── icon.png │ │ │ ├── pastefromword │ │ │ │ └── filter │ │ │ │ │ └── default.js │ │ │ ├── scayt │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ │ ├── options.js │ │ │ │ │ └── toolbar.css │ │ │ ├── specialchar │ │ │ │ └── dialogs │ │ │ │ │ ├── lang │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.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 │ │ │ │ │ ├── id.js │ │ │ │ │ ├── it.js │ │ │ │ │ ├── ja.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 │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ └── zh-cn.js │ │ │ │ │ └── specialchar.js │ │ │ ├── table │ │ │ │ └── dialogs │ │ │ │ │ └── table.js │ │ │ ├── tabletools │ │ │ │ └── dialogs │ │ │ │ │ └── tableCell.js │ │ │ └── wsc │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── dialogs │ │ │ │ ├── ciframe.html │ │ │ │ ├── tmp.html │ │ │ │ ├── tmpFrameset.html │ │ │ │ ├── wsc.css │ │ │ │ ├── wsc.js │ │ │ │ └── wsc_ie.js │ │ ├── samples │ │ │ ├── ajax.html │ │ │ ├── api.html │ │ │ ├── appendto.html │ │ │ ├── assets │ │ │ │ ├── inlineall │ │ │ │ │ └── logo.png │ │ │ │ ├── outputxhtml │ │ │ │ │ └── outputxhtml.css │ │ │ │ ├── posteddata.php │ │ │ │ ├── sample.css │ │ │ │ ├── sample.jpg │ │ │ │ └── uilanguages │ │ │ │ │ └── languages.js │ │ │ ├── datafiltering.html │ │ │ ├── divreplace.html │ │ │ ├── index.html │ │ │ ├── inlineall.html │ │ │ ├── inlinebycode.html │ │ │ ├── inlinetextarea.html │ │ │ ├── jquery.html │ │ │ ├── plugins │ │ │ │ ├── dialog │ │ │ │ │ ├── assets │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ └── dialog.html │ │ │ │ ├── enterkey │ │ │ │ │ └── enterkey.html │ │ │ │ ├── htmlwriter │ │ │ │ │ ├── assets │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ └── outputhtml.html │ │ │ │ ├── magicline │ │ │ │ │ └── magicline.html │ │ │ │ ├── toolbar │ │ │ │ │ └── toolbar.html │ │ │ │ └── wysiwygarea │ │ │ │ │ └── fullpage.html │ │ │ ├── readonly.html │ │ │ ├── replacebyclass.html │ │ │ ├── replacebycode.html │ │ │ ├── sample.css │ │ │ ├── sample.js │ │ │ ├── sample_posteddata.php │ │ │ ├── tabindex.html │ │ │ ├── uicolor.html │ │ │ ├── uilanguages.html │ │ │ └── xhtmlstyle.html │ │ ├── skins │ │ │ └── moono │ │ │ │ ├── dialog.css │ │ │ │ ├── dialog_ie.css │ │ │ │ ├── dialog_ie7.css │ │ │ │ ├── dialog_ie8.css │ │ │ │ ├── dialog_iequirks.css │ │ │ │ ├── dialog_opera.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 │ │ │ │ └── readme.md │ │ └── styles.js │ │ ├── content_edit.js │ │ └── jquery │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── jquery-migrate.js │ │ ├── jquery-migrate.min.js │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ ├── jquery.min.map │ │ └── package.json ├── templates │ └── content_edit │ │ └── sample_content_edit.html ├── templatetags │ ├── __init__.py │ └── content_edit_tags.py ├── tests.py ├── urls.py └── views.py ├── content_edit_proj ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── images └── screen.png ├── manage.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | settings_local.py 3 | db.* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/README.md -------------------------------------------------------------------------------- /content_edit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_edit/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/admin.py -------------------------------------------------------------------------------- /content_edit/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/migrations/0001_initial.py -------------------------------------------------------------------------------- /content_edit/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_edit/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/models.py -------------------------------------------------------------------------------- /content_edit/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/settings.py -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/.bower.json -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/README.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/build-config.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/config.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/contents.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/af.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/da.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/de.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/el.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/en.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/es.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/et.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/he.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/id.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/is.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/it.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/km.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/no.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/si.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/th.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/pastefromword/filter/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/pastefromword/filter/default.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ar.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/bg.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/cs.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/cy.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/de.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/el.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/en.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/eo.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/es.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/et.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fa.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/fr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/gl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/he.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/hr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/hu.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/id.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/it.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ja.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ku.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/lv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/nb.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/nl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/no.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/pt.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ru.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/si.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sl.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sq.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/sv.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/th.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/tr.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/ug.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/uk.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/vi.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/specialchar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/specialchar/dialogs/specialchar.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/tabletools/dialogs/tableCell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/tabletools/dialogs/tableCell.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/tmp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/tmp.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/tmpFrameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/tmpFrameset.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/plugins/wsc/dialogs/wsc_ie.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/api.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/appendto.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/outputxhtml/outputxhtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/assets/outputxhtml/outputxhtml.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/assets/posteddata.php -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/assets/uilanguages/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/assets/uilanguages/languages.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/datafiltering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/datafiltering.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/divreplace.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/index.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/inlineall.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/inlinebycode.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/inlinetextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/inlinetextarea.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/dialog/assets/my_dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/dialog/assets/my_dialog.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/dialog/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/dialog/dialog.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/enterkey/enterkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/enterkey/enterkey.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/swfobject.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/outputforflash.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/outputforflash.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/outputhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/htmlwriter/outputhtml.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/magicline/magicline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/magicline/magicline.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/toolbar/toolbar.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/plugins/wysiwygarea/fullpage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/plugins/wysiwygarea/fullpage.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/readonly.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/replacebyclass.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/replacebycode.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/sample_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/sample_posteddata.php -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/tabindex.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/uicolor.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/uilanguages.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/samples/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/samples/xhtmlstyle.html -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie7.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog_ie8.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog_iequirks.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/dialog_opera.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/dialog_opera.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor_gecko.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor_ie.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor_ie7.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor_ie7.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor_ie8.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/editor_iequirks.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/editor_iequirks.css -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/skins/moono/readme.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/ckeditor/styles.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/content_edit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/content_edit.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/.bower.json -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/README.md -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/bower.json -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/component.json -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/composer.json -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/jquery-migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/jquery-migrate.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/jquery-migrate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/jquery-migrate.min.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/jquery.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/jquery.min.js -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/jquery.min.map -------------------------------------------------------------------------------- /content_edit/static/content_edit/jquery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/static/content_edit/jquery/package.json -------------------------------------------------------------------------------- /content_edit/templates/content_edit/sample_content_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/templates/content_edit/sample_content_edit.html -------------------------------------------------------------------------------- /content_edit/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_edit/templatetags/content_edit_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/templatetags/content_edit_tags.py -------------------------------------------------------------------------------- /content_edit/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/tests.py -------------------------------------------------------------------------------- /content_edit/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/urls.py -------------------------------------------------------------------------------- /content_edit/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit/views.py -------------------------------------------------------------------------------- /content_edit_proj/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content_edit_proj/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit_proj/settings.py -------------------------------------------------------------------------------- /content_edit_proj/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit_proj/urls.py -------------------------------------------------------------------------------- /content_edit_proj/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/content_edit_proj/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /images/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/images/screen.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/manage.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/burke-software/django-content-edit/HEAD/setup.py --------------------------------------------------------------------------------