├── .coveragerc ├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── ckanext ├── __init__.py └── pages │ ├── __init__.py │ ├── actions.py │ ├── assets │ ├── css │ │ ├── blog.css │ │ ├── bootstrap.css │ │ ├── ckedit.css │ │ └── pages.css │ ├── js │ │ ├── ckedit.js │ │ ├── datepicker.js │ │ └── pages-editor.js │ ├── vendor │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── az.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de-ch.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es-mx.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── oc.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── tt.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ ├── about │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── about.js │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ │ │ └── logo_ckeditor.png │ │ │ │ ├── ckanview │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── ckanview.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── ckanview.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ │ └── ckanview.png │ │ │ │ │ ├── images │ │ │ │ │ │ └── placeholder.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── dialog │ │ │ │ │ ├── dialogDefinition.js │ │ │ │ │ └── styles │ │ │ │ │ │ └── dialog.css │ │ │ │ ├── divarea │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── samples │ │ │ │ │ │ └── divarea.html │ │ │ │ ├── font │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ └── plugin.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── link │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── anchor.js │ │ │ │ │ │ └── link.js │ │ │ │ │ └── images │ │ │ │ │ │ ├── anchor.png │ │ │ │ │ │ └── hidpi │ │ │ │ │ │ └── anchor.png │ │ │ │ ├── magicline │ │ │ │ │ └── images │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── icon-rtl.png │ │ │ │ │ │ └── icon.png │ │ │ │ ├── pastefromgdocs │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── pastefromlibreoffice │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── pastetools │ │ │ │ │ └── filter │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ └── image.js │ │ │ │ ├── scayt │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── dialog.css │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ │ └── skins │ │ │ │ │ │ └── moono-lisa │ │ │ │ │ │ └── scayt.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── az.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es-mx.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── oc.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tableselection │ │ │ │ │ └── styles │ │ │ │ │ │ └── tableselection.css │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ ├── templates │ │ │ │ │ ├── dialogs │ │ │ │ │ │ ├── templates.css │ │ │ │ │ │ └── templates.js │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ │ └── templates.png │ │ │ │ │ │ ├── templates-rtl.png │ │ │ │ │ │ └── templates.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ro.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ │ ├── sr.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── templates │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ └── images │ │ │ │ │ │ ├── template1.gif │ │ │ │ │ │ ├── template2.gif │ │ │ │ │ │ └── template3.gif │ │ │ │ ├── widget │ │ │ │ │ └── images │ │ │ │ │ │ └── handle.png │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ ├── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ │ │ ├── icons │ │ │ │ │ ├── hidpi │ │ │ │ │ │ └── spellchecker.png │ │ │ │ │ └── spellchecker.png │ │ │ │ │ ├── lang │ │ │ │ │ ├── af.js │ │ │ │ │ ├── ar.js │ │ │ │ │ ├── bg.js │ │ │ │ │ ├── bn.js │ │ │ │ │ ├── bs.js │ │ │ │ │ ├── ca.js │ │ │ │ │ ├── cs.js │ │ │ │ │ ├── cy.js │ │ │ │ │ ├── da.js │ │ │ │ │ ├── de.js │ │ │ │ │ ├── el.js │ │ │ │ │ ├── en-au.js │ │ │ │ │ ├── en-ca.js │ │ │ │ │ ├── en-gb.js │ │ │ │ │ ├── en.js │ │ │ │ │ ├── eo.js │ │ │ │ │ ├── es.js │ │ │ │ │ ├── et.js │ │ │ │ │ ├── eu.js │ │ │ │ │ ├── fa.js │ │ │ │ │ ├── fi.js │ │ │ │ │ ├── fo.js │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ ├── fr.js │ │ │ │ │ ├── gl.js │ │ │ │ │ ├── gu.js │ │ │ │ │ ├── he.js │ │ │ │ │ ├── hi.js │ │ │ │ │ ├── hr.js │ │ │ │ │ ├── hu.js │ │ │ │ │ ├── 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 │ │ │ │ │ ├── sk.js │ │ │ │ │ ├── sl.js │ │ │ │ │ ├── sr-latn.js │ │ │ │ │ ├── sr.js │ │ │ │ │ ├── sv.js │ │ │ │ │ ├── th.js │ │ │ │ │ ├── tr.js │ │ │ │ │ ├── ug.js │ │ │ │ │ ├── uk.js │ │ │ │ │ ├── vi.js │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ └── zh.js │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── skins │ │ │ │ │ └── moono-lisa │ │ │ │ │ └── wsc.css │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── logo.svg │ │ │ │ │ └── navigation-tip.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── sample.js │ │ │ │ │ └── sf.js │ │ │ │ ├── old │ │ │ │ │ ├── ajax.html │ │ │ │ │ ├── api.html │ │ │ │ │ ├── appendto.html │ │ │ │ │ ├── assets │ │ │ │ │ │ ├── inlineall │ │ │ │ │ │ │ └── logo.png │ │ │ │ │ │ ├── outputxhtml │ │ │ │ │ │ │ └── outputxhtml.css │ │ │ │ │ │ ├── posteddata.php │ │ │ │ │ │ ├── sample.jpg │ │ │ │ │ │ └── uilanguages │ │ │ │ │ │ │ └── languages.js │ │ │ │ │ ├── datafiltering.html │ │ │ │ │ ├── dialog │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── my_dialog.js │ │ │ │ │ │ └── dialog.html │ │ │ │ │ ├── divreplace.html │ │ │ │ │ ├── enterkey │ │ │ │ │ │ └── enterkey.html │ │ │ │ │ ├── htmlwriter │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ └── outputforflash │ │ │ │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ │ │ │ ├── outputforflash.swf │ │ │ │ │ │ │ │ └── swfobject.js │ │ │ │ │ │ ├── outputforflash.html │ │ │ │ │ │ └── outputhtml.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── inlineall.html │ │ │ │ │ ├── inlinebycode.html │ │ │ │ │ ├── inlinetextarea.html │ │ │ │ │ ├── jquery.html │ │ │ │ │ ├── magicline │ │ │ │ │ │ └── magicline.html │ │ │ │ │ ├── readonly.html │ │ │ │ │ ├── replacebyclass.html │ │ │ │ │ ├── replacebycode.html │ │ │ │ │ ├── sample.css │ │ │ │ │ ├── sample.js │ │ │ │ │ ├── sample_posteddata.php │ │ │ │ │ ├── tabindex.html │ │ │ │ │ ├── toolbar │ │ │ │ │ │ └── toolbar.html │ │ │ │ │ ├── uicolor.html │ │ │ │ │ ├── uilanguages.html │ │ │ │ │ ├── wysiwygarea │ │ │ │ │ │ └── fullpage.html │ │ │ │ │ └── xhtmlstyle.html │ │ │ │ └── toolbarconfigurator │ │ │ │ │ ├── css │ │ │ │ │ └── fontello.css │ │ │ │ │ ├── font │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── config.json │ │ │ │ │ ├── fontello.eot │ │ │ │ │ ├── fontello.svg │ │ │ │ │ ├── fontello.ttf │ │ │ │ │ └── fontello.woff │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── abstracttoolbarmodifier.js │ │ │ │ │ ├── fulltoolbareditor.js │ │ │ │ │ ├── toolbarmodifier.js │ │ │ │ │ └── toolbartextmodifier.js │ │ │ │ │ └── lib │ │ │ │ │ └── codemirror │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── codemirror.css │ │ │ │ │ ├── codemirror.js │ │ │ │ │ ├── javascript.js │ │ │ │ │ ├── neo.css │ │ │ │ │ ├── show-hint.css │ │ │ │ │ └── show-hint.js │ │ │ ├── skins │ │ │ │ └── moono-lisa │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ ├── refresh.png │ │ │ │ │ └── spinner.gif │ │ │ │ │ └── readme.md │ │ │ ├── styles.js │ │ │ └── vendor │ │ │ │ └── promise.js │ │ ├── datepicker │ │ │ ├── css │ │ │ │ └── datepicker.css │ │ │ ├── js │ │ │ │ └── bootstrap-datepicker.js │ │ │ └── less │ │ │ │ └── datepicker.less │ │ └── medium │ │ │ ├── medium-editor.css │ │ │ ├── medium-editor.js │ │ │ └── medium-editor.min.js │ └── webassets.yml │ ├── auth.py │ ├── blueprint.py │ ├── db.py │ ├── i18n │ ├── ckanext-pages.pot │ ├── de │ │ └── LC_MESSAGES │ │ │ ├── ckanext-pages.mo │ │ │ └── ckanext-pages.po │ └── es │ │ └── LC_MESSAGES │ │ ├── ckanext-pages.mo │ │ └── ckanext-pages.po │ ├── interfaces.py │ ├── logic │ ├── __init__.py │ └── schema.py │ ├── migration │ └── pages │ │ ├── README │ │ ├── alembic.ini │ │ ├── env.py │ │ ├── script.py.mako │ │ └── versions │ │ ├── 1725892d1d94_create_revisions_table.py │ │ └── a756dbd73ead_add_ckanext_pages_table.py │ ├── plugin.py │ ├── tests │ ├── __init__.py │ ├── fixtures.py │ ├── test_action.py │ └── test_logic.py │ ├── textbox │ ├── templates │ │ ├── textbox_form.html │ │ └── textbox_view.html │ └── theme │ │ ├── ckedit.css │ │ ├── ckedit.js │ │ ├── resource.config │ │ └── vendor │ │ └── ckeditor │ │ ├── CHANGES.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── adapters │ │ └── jquery.js │ │ ├── build-config.js │ │ ├── ckeditor.js │ │ ├── config.bak │ │ ├── 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 │ │ │ │ └── zh.js │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── about.js │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── logo_ckeditor.png │ │ ├── ckanview │ │ │ ├── dialogs │ │ │ │ └── ckanview.js │ │ │ ├── icons │ │ │ │ ├── ckanview.png │ │ │ │ └── hidpi │ │ │ │ │ └── ckanview.png │ │ │ ├── images │ │ │ │ └── placeholder.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── clipboard │ │ │ └── dialogs │ │ │ │ └── paste.js │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── div │ │ │ ├── dialogs │ │ │ │ └── div.js │ │ │ ├── icons │ │ │ │ ├── creatediv.png │ │ │ │ └── hidpi │ │ │ │ │ └── creatediv.png │ │ │ ├── lang │ │ │ │ ├── af.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── bn.js │ │ │ │ ├── bs.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── cy.js │ │ │ │ ├── da.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── en.js │ │ │ │ ├── eo.js │ │ │ │ ├── es.js │ │ │ │ ├── et.js │ │ │ │ ├── eu.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fo.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── gl.js │ │ │ │ ├── gu.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ka.js │ │ │ │ ├── km.js │ │ │ │ ├── ko.js │ │ │ │ ├── ku.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── mk.js │ │ │ │ ├── mn.js │ │ │ │ ├── ms.js │ │ │ │ ├── nb.js │ │ │ │ ├── nl.js │ │ │ │ ├── no.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── si.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sq.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── ug.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh.js │ │ │ └── plugin.js │ │ ├── divarea │ │ │ ├── plugin.js │ │ │ └── samples │ │ │ │ └── divarea.html │ │ ├── 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 │ │ │ │ ├── km.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 │ │ │ │ └── zh.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 │ ├── theme │ ├── templates_group │ │ └── group │ │ │ └── read_base.html │ ├── templates_main │ │ ├── ckanext_pages │ │ │ ├── base.html │ │ │ ├── base_form.html │ │ │ ├── blog.html │ │ │ ├── blog_edit.html │ │ │ ├── blog_edit_base.html │ │ │ ├── blog_list.html │ │ │ ├── blog_revisions.html │ │ │ ├── blog_revisions_preview.html │ │ │ ├── confirm_delete.html │ │ │ ├── edit_base.html │ │ │ ├── group_page.html │ │ │ ├── group_page_edit.html │ │ │ ├── group_page_list.html │ │ │ ├── organization_page.html │ │ │ ├── organization_page_edit.html │ │ │ ├── organization_page_list.html │ │ │ ├── page.html │ │ │ ├── page_edit.html │ │ │ ├── page_revisions.html │ │ │ ├── page_revisions_preview.html │ │ │ ├── pages_list.html │ │ │ └── snippets │ │ │ │ ├── page_item.html │ │ │ │ └── pages_list.html │ │ ├── header.html │ │ └── macros │ │ │ └── wysiwyg.html │ └── templates_organization │ │ └── organization │ │ └── read_base.html │ ├── utils.py │ └── validators.py ├── conftest.py ├── dev-requirements.txt ├── requirements.txt ├── setup.cfg ├── setup.py └── test.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/README.md -------------------------------------------------------------------------------- /ckanext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/__init__.py -------------------------------------------------------------------------------- /ckanext/pages/__init__.py: -------------------------------------------------------------------------------- 1 | # encoding: utf-8 2 | 3 | __version__ = '0.5.2' 4 | -------------------------------------------------------------------------------- /ckanext/pages/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/actions.py -------------------------------------------------------------------------------- /ckanext/pages/assets/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/css/blog.css -------------------------------------------------------------------------------- /ckanext/pages/assets/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/css/bootstrap.css -------------------------------------------------------------------------------- /ckanext/pages/assets/css/ckedit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/css/ckedit.css -------------------------------------------------------------------------------- /ckanext/pages/assets/css/pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/css/pages.css -------------------------------------------------------------------------------- /ckanext/pages/assets/js/ckedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/js/ckedit.js -------------------------------------------------------------------------------- /ckanext/pages/assets/js/datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/js/datepicker.js -------------------------------------------------------------------------------- /ckanext/pages/assets/js/pages-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/js/pages-editor.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/README.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/build-config.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/config.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/contents.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/az.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/de-ch.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/es-mx.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/oc.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/tt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/az.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/oc.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/about/dialogs/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/about/dialogs/about.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/icons/ckanview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/icons/ckanview.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/ckanview/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/clipboard/dialogs/paste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/clipboard/dialogs/paste.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/dialog/dialogDefinition.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/dialog/styles/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/dialog/styles/dialog.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/divarea/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/divarea/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/az.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/az.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/de-ch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/de-ch.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/es-mx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/es-mx.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/oc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/oc.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/tt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/tt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/font/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/font/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/image/dialogs/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/image/dialogs/image.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/link/dialogs/anchor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/link/dialogs/anchor.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/link/dialogs/link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/link/dialogs/link.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/pastetools/filter/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/pastetools/filter/common.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/pastetools/filter/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/pastetools/filter/image.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/CHANGELOG.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/dialog.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/options.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/toolbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/scayt/dialogs/toolbar.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/table/dialogs/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/table/dialogs/table.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/templates/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/templates/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/widget/images/handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/widget/images/handle.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/ciframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/ciframe.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc_ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/dialogs/wsc_ie.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/icons/spellchecker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/icons/spellchecker.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/plugins/wsc/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/plugins/wsc/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/css/samples.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/css/samples.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/logo.svg -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/index.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/js/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/js/sample.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/js/sf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/js/sf.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/ajax.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/api.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/appendto.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/assets/posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/assets/posteddata.php -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/datafiltering.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/datafiltering.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/dialog/dialog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/dialog/dialog.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/divreplace.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/enterkey/enterkey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/enterkey/enterkey.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/index.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/inlineall.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/inlinebycode.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/inlinetextarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/inlinetextarea.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/jquery.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/readonly.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/replacebyclass.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/replacebyclass.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/replacebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/replacebycode.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/sample.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/sample.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/sample_posteddata.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/sample_posteddata.php -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/tabindex.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/toolbar/toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/toolbar/toolbar.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/uicolor.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/uilanguages.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/samples/old/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/samples/old/xhtmlstyle.html -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog_ie.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/dialog_ie8.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_gecko.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_gecko.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_ie.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_ie8.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/editor_ie8.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/icons.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/icons_hidpi.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/images/lock.png -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/skins/moono-lisa/readme.md -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/styles.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/ckeditor/vendor/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/ckeditor/vendor/promise.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/datepicker/css/datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/datepicker/css/datepicker.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/datepicker/js/bootstrap-datepicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/datepicker/js/bootstrap-datepicker.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/datepicker/less/datepicker.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/datepicker/less/datepicker.less -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/medium/medium-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/medium/medium-editor.css -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/medium/medium-editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/medium/medium-editor.js -------------------------------------------------------------------------------- /ckanext/pages/assets/vendor/medium/medium-editor.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/vendor/medium/medium-editor.min.js -------------------------------------------------------------------------------- /ckanext/pages/assets/webassets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/assets/webassets.yml -------------------------------------------------------------------------------- /ckanext/pages/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/auth.py -------------------------------------------------------------------------------- /ckanext/pages/blueprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/blueprint.py -------------------------------------------------------------------------------- /ckanext/pages/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/db.py -------------------------------------------------------------------------------- /ckanext/pages/i18n/ckanext-pages.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/i18n/ckanext-pages.pot -------------------------------------------------------------------------------- /ckanext/pages/i18n/de/LC_MESSAGES/ckanext-pages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/i18n/de/LC_MESSAGES/ckanext-pages.mo -------------------------------------------------------------------------------- /ckanext/pages/i18n/de/LC_MESSAGES/ckanext-pages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/i18n/de/LC_MESSAGES/ckanext-pages.po -------------------------------------------------------------------------------- /ckanext/pages/i18n/es/LC_MESSAGES/ckanext-pages.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/i18n/es/LC_MESSAGES/ckanext-pages.mo -------------------------------------------------------------------------------- /ckanext/pages/i18n/es/LC_MESSAGES/ckanext-pages.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/i18n/es/LC_MESSAGES/ckanext-pages.po -------------------------------------------------------------------------------- /ckanext/pages/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/interfaces.py -------------------------------------------------------------------------------- /ckanext/pages/logic/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/pages/logic/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/logic/schema.py -------------------------------------------------------------------------------- /ckanext/pages/migration/pages/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /ckanext/pages/migration/pages/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/migration/pages/alembic.ini -------------------------------------------------------------------------------- /ckanext/pages/migration/pages/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/migration/pages/env.py -------------------------------------------------------------------------------- /ckanext/pages/migration/pages/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/migration/pages/script.py.mako -------------------------------------------------------------------------------- /ckanext/pages/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/plugin.py -------------------------------------------------------------------------------- /ckanext/pages/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ckanext/pages/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/tests/fixtures.py -------------------------------------------------------------------------------- /ckanext/pages/tests/test_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/tests/test_action.py -------------------------------------------------------------------------------- /ckanext/pages/tests/test_logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/tests/test_logic.py -------------------------------------------------------------------------------- /ckanext/pages/textbox/templates/textbox_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/templates/textbox_form.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/templates/textbox_view.html: -------------------------------------------------------------------------------- 1 | 2 | {{ resource_view.content|safe }} 3 | -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/ckedit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/ckedit.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/ckedit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/ckedit.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/resource.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/resource.config -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/CHANGES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/CHANGES.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/README.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/adapters/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/adapters/jquery.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/build-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/build-config.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/ckeditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/ckeditor.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/config.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/config.bak -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/contents.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/contents.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sr-latn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sr-latn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/af.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/af.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ar.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bg.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/bs.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/cs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/cs.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/cy.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/da.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/da.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/de.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/el.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-au.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-au.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-gb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en-gb.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/en.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/eo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/eo.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/es.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/et.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/et.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/eu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/eu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fa.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fo.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fr-ca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fr-ca.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/fr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/gl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/gl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/gu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/gu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/he.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/he.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/hu.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/id.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/id.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/is.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/is.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/it.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ja.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ja.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ka.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ka.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/km.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/km.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ko.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ko.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ku.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/lt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/lt.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/lv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/lv.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/mk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/mk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/mn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/mn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ms.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/nb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/nb.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/nl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/nl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/no.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/no.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pt-br.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pt-br.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/pt.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ro.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ru.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/si.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/si.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sl.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sq.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/sv.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/th.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/th.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/tr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/tr.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/ug.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/uk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/uk.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/vi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/vi.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/zh-cn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/zh-cn.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/zh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/lang/zh.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/div/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/divarea/plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/divarea/plugin.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/scayt/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/scayt/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/scayt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/scayt/README.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/wsc/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/wsc/LICENSE.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/plugins/wsc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/plugins/wsc/README.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/ajax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/ajax.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/api.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/appendto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/appendto.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/divreplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/divreplace.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/index.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/inlineall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/inlineall.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/inlinebycode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/inlinebycode.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/jquery.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/readonly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/readonly.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/sample.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/sample.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/sample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/sample.js -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/tabindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/tabindex.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/uicolor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/uicolor.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/uilanguages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/uilanguages.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/samples/xhtmlstyle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/samples/xhtmlstyle.html -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/dialog.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/dialog_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/dialog_ie.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/editor.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/editor_ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/editor_ie.css -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/skins/moono/readme.md -------------------------------------------------------------------------------- /ckanext/pages/textbox/theme/vendor/ckeditor/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/textbox/theme/vendor/ckeditor/styles.js -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_group/group/read_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_group/group/read_base.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/base.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/base_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/base_form.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/blog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/blog.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/blog_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/blog_edit.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/blog_edit_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/blog_edit_base.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/blog_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/blog_list.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/blog_revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/blog_revisions.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/confirm_delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/confirm_delete.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/edit_base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/edit_base.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/group_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/group_page.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/group_page_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/group_page_edit.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/group_page_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/group_page_list.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/page.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/page_edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/page_edit.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/page_revisions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/page_revisions.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/ckanext_pages/pages_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/ckanext_pages/pages_list.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/header.html -------------------------------------------------------------------------------- /ckanext/pages/theme/templates_main/macros/wysiwyg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/theme/templates_main/macros/wysiwyg.html -------------------------------------------------------------------------------- /ckanext/pages/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/utils.py -------------------------------------------------------------------------------- /ckanext/pages/validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/ckanext/pages/validators.py -------------------------------------------------------------------------------- /conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/conftest.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/setup.py -------------------------------------------------------------------------------- /test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ckan/ckanext-pages/HEAD/test.ini --------------------------------------------------------------------------------