├── .codeclimate.yml ├── .env.behat ├── .env.example ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── Homestead.example.yaml ├── LICENSE ├── app ├── admin │ ├── .gitignore │ ├── LICENSE │ ├── composer.json │ ├── gulpfile.js │ ├── package.json │ ├── public │ │ ├── build │ │ │ ├── admin.css │ │ │ ├── admin.css.map │ │ │ ├── admin.js │ │ │ ├── admin.js.map │ │ │ ├── fonts │ │ │ │ ├── FontAwesome.otf │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ ├── icons │ │ │ │ ├── android-chrome-144x144.png │ │ │ │ ├── android-chrome-192x192.png │ │ │ │ ├── android-chrome-36x36.png │ │ │ │ ├── android-chrome-48x48.png │ │ │ │ ├── android-chrome-72x72.png │ │ │ │ ├── android-chrome-96x96.png │ │ │ │ ├── apple-touch-icon-114x114.png │ │ │ │ ├── apple-touch-icon-120x120.png │ │ │ │ ├── apple-touch-icon-144x144.png │ │ │ │ ├── apple-touch-icon-152x152.png │ │ │ │ ├── apple-touch-icon-180x180.png │ │ │ │ ├── apple-touch-icon-57x57.png │ │ │ │ ├── apple-touch-icon-60x60.png │ │ │ │ ├── apple-touch-icon-72x72.png │ │ │ │ ├── apple-touch-icon-76x76.png │ │ │ │ ├── apple-touch-icon-precomposed.png │ │ │ │ ├── apple-touch-icon.png │ │ │ │ ├── favicon-16x16.png │ │ │ │ ├── favicon-194x194.png │ │ │ │ ├── favicon-32x32.png │ │ │ │ ├── favicon-96x96.png │ │ │ │ ├── mstile-144x144.png │ │ │ │ ├── mstile-150x150.png │ │ │ │ ├── mstile-310x150.png │ │ │ │ ├── mstile-310x310.png │ │ │ │ ├── mstile-70x70.png │ │ │ │ └── safari-pinned-tab.svg │ │ │ ├── images │ │ │ │ └── flashtag.png │ │ │ ├── manifest.json │ │ │ ├── vendor.js │ │ │ └── vendor.js.map │ │ └── vendor │ │ │ ├── ckeditor │ │ │ ├── CHANGES.md │ │ │ ├── LICENSE.md │ │ │ ├── README.md │ │ │ ├── adapters │ │ │ │ └── jquery.js │ │ │ ├── build-config.js │ │ │ ├── ckeditor.js │ │ │ ├── config.js │ │ │ ├── contents.css │ │ │ ├── lang │ │ │ │ ├── en-gb.js │ │ │ │ └── en.js │ │ │ ├── plugins │ │ │ │ ├── a11yhelp │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── a11yhelp.js │ │ │ │ │ │ └── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── 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 │ │ │ │ ├── autogrow │ │ │ │ │ ├── plugin.js │ │ │ │ │ └── samples │ │ │ │ │ │ └── autogrow.html │ │ │ │ ├── clipboard │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── paste.js │ │ │ │ ├── codemirror │ │ │ │ │ ├── css │ │ │ │ │ │ └── codemirror.min.css │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── autocomplete.png │ │ │ │ │ │ ├── autoformat.png │ │ │ │ │ │ ├── commentselectedrange.png │ │ │ │ │ │ ├── searchcode.png │ │ │ │ │ │ └── uncommentselectedrange.png │ │ │ │ │ ├── js │ │ │ │ │ │ ├── beautify.min.js │ │ │ │ │ │ ├── codemirror.addons.min.js │ │ │ │ │ │ ├── codemirror.addons.search.min.js │ │ │ │ │ │ ├── codemirror.min.js │ │ │ │ │ │ ├── codemirror.mode.bbcode.min.js │ │ │ │ │ │ ├── codemirror.mode.bbcodemixed.min.js │ │ │ │ │ │ ├── codemirror.mode.htmlmixed.min.js │ │ │ │ │ │ ├── codemirror.mode.javascript.min.js │ │ │ │ │ │ └── codemirror.mode.php.min.js │ │ │ │ │ ├── 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 │ │ │ │ │ └── theme │ │ │ │ │ │ ├── 3024-day.css │ │ │ │ │ │ ├── 3024-night.css │ │ │ │ │ │ ├── ambiance-mobile.css │ │ │ │ │ │ ├── ambiance.css │ │ │ │ │ │ ├── base16-dark.css │ │ │ │ │ │ ├── base16-light.css │ │ │ │ │ │ ├── blackboard.css │ │ │ │ │ │ ├── cobalt.css │ │ │ │ │ │ ├── colorforth.css │ │ │ │ │ │ ├── eclipse.css │ │ │ │ │ │ ├── elegant.css │ │ │ │ │ │ ├── erlang-dark.css │ │ │ │ │ │ ├── lesser-dark.css │ │ │ │ │ │ ├── liquibyte.css │ │ │ │ │ │ ├── material.css │ │ │ │ │ │ ├── mbo.css │ │ │ │ │ │ ├── mdn-like.css │ │ │ │ │ │ ├── midnight.css │ │ │ │ │ │ ├── monokai.css │ │ │ │ │ │ ├── neat.css │ │ │ │ │ │ ├── neo.css │ │ │ │ │ │ ├── night.css │ │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ │ ├── pastel-on-dark.css │ │ │ │ │ │ ├── rubyblue.css │ │ │ │ │ │ ├── solarized.css │ │ │ │ │ │ ├── the-matrix.css │ │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ │ ├── ttcn.css │ │ │ │ │ │ ├── twilight.css │ │ │ │ │ │ ├── vibrant-ink.css │ │ │ │ │ │ ├── xq-dark.css │ │ │ │ │ │ ├── xq-light.css │ │ │ │ │ │ └── zenburn.css │ │ │ │ ├── dialog │ │ │ │ │ └── dialogDefinition.js │ │ │ │ ├── icons.png │ │ │ │ ├── icons_hidpi.png │ │ │ │ ├── image │ │ │ │ │ ├── dialogs │ │ │ │ │ │ └── image.js │ │ │ │ │ └── images │ │ │ │ │ │ └── noimage.png │ │ │ │ ├── justify │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── hidpi │ │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ │ ├── justifyblock.png │ │ │ │ │ │ ├── justifycenter.png │ │ │ │ │ │ ├── justifyleft.png │ │ │ │ │ │ └── justifyright.png │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── bn.js │ │ │ │ │ │ ├── bs.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de-ch.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-au.js │ │ │ │ │ │ ├── en-ca.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fo.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── gu.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hi.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── is.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── ka.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── mk.js │ │ │ │ │ │ ├── mn.js │ │ │ │ │ │ ├── ms.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ │ ├── pastefromword │ │ │ │ │ └── filter │ │ │ │ │ │ └── default.js │ │ │ │ ├── scayt │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── options.js │ │ │ │ │ │ └── toolbar.css │ │ │ │ ├── specialchar │ │ │ │ │ └── dialogs │ │ │ │ │ │ ├── lang │ │ │ │ │ │ ├── _translationstatus.txt │ │ │ │ │ │ ├── af.js │ │ │ │ │ │ ├── ar.js │ │ │ │ │ │ ├── bg.js │ │ │ │ │ │ ├── ca.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── cy.js │ │ │ │ │ │ ├── da.js │ │ │ │ │ │ ├── de.js │ │ │ │ │ │ ├── el.js │ │ │ │ │ │ ├── en-gb.js │ │ │ │ │ │ ├── en.js │ │ │ │ │ │ ├── eo.js │ │ │ │ │ │ ├── es.js │ │ │ │ │ │ ├── et.js │ │ │ │ │ │ ├── eu.js │ │ │ │ │ │ ├── fa.js │ │ │ │ │ │ ├── fi.js │ │ │ │ │ │ ├── fr-ca.js │ │ │ │ │ │ ├── fr.js │ │ │ │ │ │ ├── gl.js │ │ │ │ │ │ ├── he.js │ │ │ │ │ │ ├── hr.js │ │ │ │ │ │ ├── hu.js │ │ │ │ │ │ ├── id.js │ │ │ │ │ │ ├── it.js │ │ │ │ │ │ ├── ja.js │ │ │ │ │ │ ├── km.js │ │ │ │ │ │ ├── ko.js │ │ │ │ │ │ ├── ku.js │ │ │ │ │ │ ├── lt.js │ │ │ │ │ │ ├── lv.js │ │ │ │ │ │ ├── nb.js │ │ │ │ │ │ ├── nl.js │ │ │ │ │ │ ├── no.js │ │ │ │ │ │ ├── pl.js │ │ │ │ │ │ ├── pt-br.js │ │ │ │ │ │ ├── pt.js │ │ │ │ │ │ ├── ru.js │ │ │ │ │ │ ├── si.js │ │ │ │ │ │ ├── sk.js │ │ │ │ │ │ ├── sl.js │ │ │ │ │ │ ├── sq.js │ │ │ │ │ │ ├── sv.js │ │ │ │ │ │ ├── th.js │ │ │ │ │ │ ├── tr.js │ │ │ │ │ │ ├── tt.js │ │ │ │ │ │ ├── ug.js │ │ │ │ │ │ ├── uk.js │ │ │ │ │ │ ├── vi.js │ │ │ │ │ │ ├── zh-cn.js │ │ │ │ │ │ └── zh.js │ │ │ │ │ │ └── specialchar.js │ │ │ │ ├── table │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── table.js │ │ │ │ ├── tabletools │ │ │ │ │ └── dialogs │ │ │ │ │ │ └── tableCell.js │ │ │ │ └── wsc │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── README.md │ │ │ │ │ └── dialogs │ │ │ │ │ ├── ciframe.html │ │ │ │ │ ├── tmpFrameset.html │ │ │ │ │ ├── wsc.css │ │ │ │ │ ├── wsc.js │ │ │ │ │ └── wsc_ie.js │ │ │ ├── samples │ │ │ │ ├── css │ │ │ │ │ └── samples.css │ │ │ │ ├── img │ │ │ │ │ ├── github-top.png │ │ │ │ │ ├── header-bg.png │ │ │ │ │ ├── header-separator.png │ │ │ │ │ ├── logo.png │ │ │ │ │ └── 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 │ │ │ │ └── minimalist │ │ │ │ │ ├── dialog.css │ │ │ │ │ ├── dialog_ie.css │ │ │ │ │ ├── dialog_ie7.css │ │ │ │ │ ├── dialog_ie8.css │ │ │ │ │ ├── dialog_iequirks.css │ │ │ │ │ ├── editor.css │ │ │ │ │ ├── editor_gecko.css │ │ │ │ │ ├── editor_ie.css │ │ │ │ │ ├── editor_ie7.css │ │ │ │ │ ├── editor_ie8.css │ │ │ │ │ ├── editor_iequirks.css │ │ │ │ │ ├── icons.png │ │ │ │ │ ├── icons_hidpi.png │ │ │ │ │ ├── images │ │ │ │ │ ├── arrow.png │ │ │ │ │ ├── close.png │ │ │ │ │ ├── hidpi │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ ├── lock-open.png │ │ │ │ │ │ ├── lock.png │ │ │ │ │ │ └── refresh.png │ │ │ │ │ ├── lock-open.png │ │ │ │ │ ├── lock.png │ │ │ │ │ └── refresh.png │ │ │ │ │ └── readme.md │ │ │ └── styles.js │ │ │ └── patternfly │ │ │ ├── fonts │ │ │ ├── OpenSans-Bold-webfont.eot │ │ │ ├── OpenSans-Bold-webfont.svg │ │ │ ├── OpenSans-Bold-webfont.ttf │ │ │ ├── OpenSans-Bold-webfont.woff │ │ │ ├── OpenSans-BoldItalic-webfont.eot │ │ │ ├── OpenSans-BoldItalic-webfont.svg │ │ │ ├── OpenSans-BoldItalic-webfont.ttf │ │ │ ├── OpenSans-BoldItalic-webfont.woff │ │ │ ├── OpenSans-ExtraBold-webfont.eot │ │ │ ├── OpenSans-ExtraBold-webfont.svg │ │ │ ├── OpenSans-ExtraBold-webfont.ttf │ │ │ ├── OpenSans-ExtraBold-webfont.woff │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.eot │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.svg │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.ttf │ │ │ ├── OpenSans-ExtraBoldItalic-webfont.woff │ │ │ ├── OpenSans-Italic-webfont.eot │ │ │ ├── OpenSans-Italic-webfont.svg │ │ │ ├── OpenSans-Italic-webfont.ttf │ │ │ ├── OpenSans-Italic-webfont.woff │ │ │ ├── OpenSans-Light-webfont.eot │ │ │ ├── OpenSans-Light-webfont.svg │ │ │ ├── OpenSans-Light-webfont.ttf │ │ │ ├── OpenSans-Light-webfont.woff │ │ │ ├── OpenSans-LightItalic-webfont.eot │ │ │ ├── OpenSans-LightItalic-webfont.svg │ │ │ ├── OpenSans-LightItalic-webfont.ttf │ │ │ ├── OpenSans-LightItalic-webfont.woff │ │ │ ├── OpenSans-Regular-webfont.eot │ │ │ ├── OpenSans-Regular-webfont.svg │ │ │ ├── OpenSans-Regular-webfont.ttf │ │ │ ├── OpenSans-Regular-webfont.woff │ │ │ ├── OpenSans-Semibold-webfont.eot │ │ │ ├── OpenSans-Semibold-webfont.svg │ │ │ ├── OpenSans-Semibold-webfont.ttf │ │ │ ├── OpenSans-Semibold-webfont.woff │ │ │ ├── OpenSans-SemiboldItalic-webfont.eot │ │ │ ├── OpenSans-SemiboldItalic-webfont.svg │ │ │ ├── OpenSans-SemiboldItalic-webfont.ttf │ │ │ ├── OpenSans-SemiboldItalic-webfont.woff │ │ │ ├── PatternFlyIcons-webfont.eot │ │ │ ├── PatternFlyIcons-webfont.svg │ │ │ ├── PatternFlyIcons-webfont.ttf │ │ │ ├── PatternFlyIcons-webfont.woff │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── images │ │ │ ├── OpenShift-logo.svg │ │ │ ├── RH_atomic.svg │ │ │ ├── apple-touch-icon-precomposed-114.png │ │ │ ├── apple-touch-icon-precomposed-144.png │ │ │ ├── apple-touch-icon-precomposed-152.png │ │ │ ├── apple-touch-icon-precomposed-180.png │ │ │ ├── apple-touch-icon-precomposed-57.png │ │ │ ├── apple-touch-icon-precomposed-72.png │ │ │ ├── apple-touch-icon-precomposed-76.png │ │ │ ├── bg-login.jpg │ │ │ ├── bg-navbar-pf-alt.svg │ │ │ ├── brand-alt.svg │ │ │ ├── brand.svg │ │ │ ├── favicon.ico │ │ │ ├── kubernetes.svg │ │ │ ├── logo-alt.svg │ │ │ ├── logo.svg │ │ │ ├── spinner-inverse-lg.gif │ │ │ ├── spinner-inverse-sm.gif │ │ │ ├── spinner-inverse-xs.gif │ │ │ ├── spinner-inverse.gif │ │ │ ├── spinner-lg.gif │ │ │ ├── spinner-sm.gif │ │ │ ├── spinner-xs.gif │ │ │ └── spinner.gif │ │ │ └── js │ │ │ ├── patternfly.js │ │ │ └── patternfly.min.js │ ├── readme.md │ ├── resources │ │ ├── assets │ │ │ ├── js │ │ │ │ ├── admin.js │ │ │ │ ├── components │ │ │ │ │ ├── authors.vue │ │ │ │ │ ├── categories.vue │ │ │ │ │ ├── fields │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── templates │ │ │ │ │ │ │ ├── rich_text.vue │ │ │ │ │ │ │ └── string.vue │ │ │ │ │ ├── home.vue │ │ │ │ │ ├── pages │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── revisions │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── show.vue │ │ │ │ │ ├── partials │ │ │ │ │ │ ├── image-preview.vue │ │ │ │ │ │ ├── list-sort.vue │ │ │ │ │ │ ├── media-input.vue │ │ │ │ │ │ └── paginator.vue │ │ │ │ │ ├── post-lists │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── posts.vue │ │ │ │ │ ├── posts │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ └── revisions │ │ │ │ │ │ │ ├── index.vue │ │ │ │ │ │ │ └── show.vue │ │ │ │ │ ├── tags.vue │ │ │ │ │ └── users.vue │ │ │ │ ├── directives │ │ │ │ │ ├── rich-editor.js │ │ │ │ │ └── select.js │ │ │ │ └── models │ │ │ │ │ ├── author.js │ │ │ │ │ ├── category.js │ │ │ │ │ ├── field.js │ │ │ │ │ ├── model.js │ │ │ │ │ ├── page.js │ │ │ │ │ ├── post-list.js │ │ │ │ │ ├── post.js │ │ │ │ │ ├── tag.js │ │ │ │ │ └── user.js │ │ │ └── sass │ │ │ │ ├── _variables.scss │ │ │ │ ├── admin.scss │ │ │ │ ├── includes │ │ │ │ ├── _animations.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _layout.scss │ │ │ │ ├── _toggles.scss │ │ │ │ └── _utility.scss │ │ │ │ ├── pages │ │ │ │ ├── posts │ │ │ │ │ ├── _edit.scss │ │ │ │ │ └── _index.scss │ │ │ │ └── revisions │ │ │ │ │ ├── _index.scss │ │ │ │ │ └── _show.scss │ │ │ │ ├── partials │ │ │ │ ├── _forms.scss │ │ │ │ ├── _indices.scss │ │ │ │ ├── _main.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _side-nav.scss │ │ │ │ └── _top-nav.scss │ │ │ │ └── vendor │ │ │ │ ├── _animate.scss │ │ │ │ ├── _bootstrap.scss │ │ │ │ ├── _bootswatch.scss │ │ │ │ ├── _ckeditor.scss │ │ │ │ ├── _dropzone.scss │ │ │ │ ├── _font-awesome.scss │ │ │ │ ├── _patternfly.scss │ │ │ │ ├── _select2.scss │ │ │ │ ├── _sweetalert.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── patternfly-files │ │ │ │ ├── _alerts.scss │ │ │ │ ├── _badges.scss │ │ │ │ ├── _blank-slate.scss │ │ │ │ ├── _bootstrap-combobox.scss │ │ │ │ ├── _bootstrap-datepicker.scss │ │ │ │ ├── _bootstrap-select.scss │ │ │ │ ├── _bootstrap-switch.scss │ │ │ │ ├── _bootstrap-touchspin.scss │ │ │ │ ├── _bootstrap-treeview.scss │ │ │ │ ├── _breadcrumbs.scss │ │ │ │ ├── _buttons.scss │ │ │ │ ├── _cards.scss │ │ │ │ ├── _charts.scss │ │ │ │ ├── _close.scss │ │ │ │ ├── _color-variables.scss │ │ │ │ ├── _datatables.scss │ │ │ │ ├── _dropdowns.scss │ │ │ │ ├── _ext-bootstrap-combobox.scss │ │ │ │ ├── _ext-bootstrap-datepicker.scss │ │ │ │ ├── _ext-bootstrap-select.scss │ │ │ │ ├── _ext-bootstrap-touchspin.scss │ │ │ │ ├── _ext-c3.scss │ │ │ │ ├── _fonts.scss │ │ │ │ ├── _footer.scss │ │ │ │ ├── _forms.scss │ │ │ │ ├── _icons.scss │ │ │ │ ├── _infotip.scss │ │ │ │ ├── _labels.scss │ │ │ │ ├── _layouts.scss │ │ │ │ ├── _list-group.scss │ │ │ │ ├── _list-view.scss │ │ │ │ ├── _login.scss │ │ │ │ ├── _mixin_overrides.scss │ │ │ │ ├── _mixins.scss │ │ │ │ ├── _modals.scss │ │ │ │ ├── _nav-vertical-alt.scss │ │ │ │ ├── _navbar-alt.scss │ │ │ │ ├── _navbar-vertical.scss │ │ │ │ ├── _navbar.scss │ │ │ │ ├── _pager.scss │ │ │ │ ├── _pagination.scss │ │ │ │ ├── _panels.scss │ │ │ │ ├── _popovers.scss │ │ │ │ ├── _progress-bars.scss │ │ │ │ ├── _search.scss │ │ │ │ ├── _sidebar.scss │ │ │ │ ├── _spinner.scss │ │ │ │ ├── _syntax-highlighting.scss │ │ │ │ ├── _tables.scss │ │ │ │ ├── _tabs.scss │ │ │ │ ├── _time-picker.scss │ │ │ │ ├── _toast.scss │ │ │ │ ├── _toolbar.scss │ │ │ │ ├── _tooltip.scss │ │ │ │ ├── _type.scss │ │ │ │ ├── _variables.scss │ │ │ │ ├── _vertical-nav.scss │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap-combobox.scss │ │ │ │ │ ├── bootstrap-datepicker.scss │ │ │ │ │ ├── bootstrap-datetimepicker.scss │ │ │ │ │ ├── bootstrap-select.scss │ │ │ │ │ ├── bootstrap-switch.scss │ │ │ │ │ ├── bootstrap-touchspin.scss │ │ │ │ │ └── c3.scss │ │ │ │ └── patternfly │ │ │ │ └── _variables.scss │ │ └── views │ │ │ ├── auth.blade.php │ │ │ ├── auth │ │ │ ├── login.blade.php │ │ │ ├── password.blade.php │ │ │ └── reset.blade.php │ │ │ ├── authors │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ │ ├── categories │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ │ ├── emails │ │ │ └── password.blade.php │ │ │ ├── fields │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── templates │ │ │ │ ├── rich_text.blade.php │ │ │ │ └── string.blade.php │ │ │ ├── home.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── pages │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── revisions │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── partials │ │ │ ├── form-errors.blade.php │ │ │ ├── icons.php │ │ │ ├── nav-side.blade.php │ │ │ ├── nav-top.blade.php │ │ │ ├── nav-vertical.blade.php │ │ │ └── navbar.blade.php │ │ │ ├── post-lists │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ │ ├── posts │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ ├── index.blade.php │ │ │ └── revisions │ │ │ │ ├── index.blade.php │ │ │ │ └── show.blade.php │ │ │ ├── settings │ │ │ └── index.blade.php │ │ │ ├── tags │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ │ │ └── users │ │ │ ├── create.blade.php │ │ │ ├── edit.blade.php │ │ │ ├── form.blade.php │ │ │ └── index.blade.php │ ├── routes │ │ ├── api.php │ │ └── web.php │ └── src │ │ ├── Http │ │ ├── Controllers │ │ │ ├── Api │ │ │ │ ├── AuthorsController.php │ │ │ │ ├── CategoriesController.php │ │ │ │ ├── ImagesController.php │ │ │ │ ├── PagesController.php │ │ │ │ ├── PostFieldsController.php │ │ │ │ ├── PostListsController.php │ │ │ │ ├── PostRevisionsController.php │ │ │ │ ├── PostsController.php │ │ │ │ ├── TagsController.php │ │ │ │ └── UsersController.php │ │ │ ├── Controller.php │ │ │ ├── Traits │ │ │ │ └── SyncsMedia.php │ │ │ └── Web │ │ │ │ ├── Auth │ │ │ │ ├── ForgotPasswordController.php │ │ │ │ ├── LoginController.php │ │ │ │ └── ResetPasswordController.php │ │ │ │ ├── AuthorsController.php │ │ │ │ ├── CategoriesController.php │ │ │ │ ├── HomeController.php │ │ │ │ ├── MediaController.php │ │ │ │ ├── PageRevisionsController.php │ │ │ │ ├── PagesController.php │ │ │ │ ├── PostFieldsController.php │ │ │ │ ├── PostListsController.php │ │ │ │ ├── PostRevisionsController.php │ │ │ │ ├── PostsController.php │ │ │ │ ├── SettingsController.php │ │ │ │ ├── TagsController.php │ │ │ │ └── UsersController.php │ │ ├── Middleware │ │ │ ├── Administrator.php │ │ │ ├── Authenticate.php │ │ │ ├── EncryptCookies.php │ │ │ ├── RedirectIfAuthenticated.php │ │ │ └── VerifyCsrfToken.php │ │ └── Requests │ │ │ ├── AuthorCreateRequest.php │ │ │ ├── AuthorDestroyRequest.php │ │ │ ├── AuthorUpdateRequest.php │ │ │ ├── CategoryCreateRequest.php │ │ │ ├── CategoryDestroyRequest.php │ │ │ ├── CategoryUpdateRequest.php │ │ │ ├── FieldCreateRequest.php │ │ │ ├── FieldDestroyRequest.php │ │ │ ├── FieldUpdateRequest.php │ │ │ ├── PageCreateRequest.php │ │ │ ├── PageDestroyRequest.php │ │ │ ├── PageUpdateRequest.php │ │ │ ├── PostCreateRequest.php │ │ │ ├── PostDestroyRequest.php │ │ │ ├── PostListCreateRequest.php │ │ │ ├── PostListDestroyRequest.php │ │ │ ├── PostListUpdateRequest.php │ │ │ ├── PostUpdateRequest.php │ │ │ ├── Request.php │ │ │ ├── TagCreateRequest.php │ │ │ ├── TagDestroyRequest.php │ │ │ ├── TagUpdateRequest.php │ │ │ ├── UserCreateRequest.php │ │ │ ├── UserDestroyRequest.php │ │ │ └── UserUpdateRequest.php │ │ ├── Menu │ │ └── Repository.php │ │ ├── Providers │ │ └── AdminServiceProvider.php │ │ └── helpers.php ├── api │ ├── .post.example.json │ ├── LICENSE │ ├── composer.json │ ├── readme.md │ └── src │ │ ├── Exceptions │ │ └── TransformerNotFound.php │ │ ├── Http │ │ ├── Controllers │ │ │ └── V1 │ │ │ │ ├── AuthController.php │ │ │ │ ├── AuthorsController.php │ │ │ │ ├── CategoriesController.php │ │ │ │ ├── Controller.php │ │ │ │ ├── FieldsController.php │ │ │ │ ├── PostListsController.php │ │ │ │ ├── PostsController.php │ │ │ │ ├── RevisionsController.php │ │ │ │ ├── SettingsController.php │ │ │ │ ├── TagsController.php │ │ │ │ └── UsersController.php │ │ ├── Requests │ │ │ ├── Posts │ │ │ │ ├── PublishRequest.php │ │ │ │ └── ReorderRequest.php │ │ │ ├── Request.php │ │ │ └── Users │ │ │ │ └── CreateUserRequest.php │ │ └── Routes │ │ │ └── v1.php │ │ ├── Providers │ │ └── ApiServiceProvider.php │ │ └── Transformers │ │ ├── AuthorTransformer.php │ │ ├── CategoryTransformer.php │ │ ├── FieldTransformer.php │ │ ├── MediaTransformer.php │ │ ├── MetaTagTransformer.php │ │ ├── PostListTransformer.php │ │ ├── PostRatingTransformer.php │ │ ├── PostTransformer.php │ │ ├── RevisionTransformer.php │ │ ├── SettingTransformer.php │ │ ├── TagTransformer.php │ │ ├── Transformer.php │ │ └── UserTransformer.php ├── auth │ ├── LICENSE.txt │ ├── composer.json │ ├── database │ │ ├── factories │ │ │ └── AuthModelFactory.php │ │ └── migrations │ │ │ ├── 2014_10_12_000000_create_users_table.php │ │ │ ├── 2014_10_12_100000_create_password_resets_table.php │ │ │ └── 2016_02_17_065141_add_admin_to_users_table.php │ ├── readme.md │ └── src │ │ ├── Providers │ │ └── AuthServiceProvider.php │ │ └── User.php ├── core │ ├── LICENSE.txt │ ├── composer.json │ ├── config │ │ └── settings.php │ ├── database │ │ ├── factories │ │ │ └── CoreModelFactory.php │ │ └── migrations │ │ │ ├── 2016_02_12_070250_create_settings_table_migration.php │ │ │ └── 2016_03_14_170926_create_pages_table.php │ ├── readme.md │ └── src │ │ ├── Console │ │ └── Commands │ │ │ ├── Install │ │ │ ├── CreateAdminUser.php │ │ │ ├── Install.php │ │ │ ├── InstallCommand.php │ │ │ ├── InstallDefaultTheme.php │ │ │ ├── PublishFiles.php │ │ │ ├── RunMigrations.php │ │ │ ├── SeedExamples.php │ │ │ └── WriteConnectionDetails.php │ │ │ ├── Publish.php │ │ │ └── Update.php │ │ ├── Events │ │ └── SettingsSaved.php │ │ ├── Flashtag.php │ │ ├── Listeners │ │ └── SettingsEventListener.php │ │ ├── Page.php │ │ ├── Providers │ │ ├── CoreServiceProvider.php │ │ ├── EventServiceProvider.php │ │ ├── PluginServiceProvider.php │ │ └── SettingsServiceProvider.php │ │ ├── Setting.php │ │ ├── Settings │ │ ├── Settings.php │ │ └── SettingsMiddleware.php │ │ └── helpers.php ├── front │ ├── LICENSE.txt │ ├── composer.json │ ├── readme.md │ ├── routes │ │ └── web.php │ └── src │ │ ├── Console │ │ └── Commands │ │ │ └── InstallTheme.php │ │ ├── Http │ │ ├── Controllers │ │ │ ├── Auth │ │ │ │ ├── AuthController.php │ │ │ │ └── PasswordController.php │ │ │ ├── AuthorsController.php │ │ │ ├── CategoriesController.php │ │ │ ├── Controller.php │ │ │ ├── HomeController.php │ │ │ ├── PagesController.php │ │ │ ├── PostsController.php │ │ │ ├── SearchController.php │ │ │ ├── TagsController.php │ │ │ └── TestController.php │ │ ├── Kernel.php │ │ ├── Middleware │ │ │ └── VerifyCsrfToken.php │ │ └── Requests │ │ │ └── Request.php │ │ ├── Providers │ │ └── FrontServiceProvider.php │ │ ├── Template.php │ │ ├── Theme.php │ │ └── helpers.php └── posts │ ├── LICENSE │ ├── composer.json │ ├── config │ └── posts.php │ ├── database │ ├── factories │ │ └── PostsModelFactory.php │ └── migrations │ │ ├── 2013_04_09_062329_create_revisions_table.php │ │ ├── 2015_10_04_204837_create_posts_table.php │ │ ├── 2015_10_04_204845_create_fields_table.php │ │ ├── 2015_10_05_004554_create_categories_table.php │ │ ├── 2015_10_05_004616_create_tags_table.php │ │ ├── 2015_10_05_004623_create_taggables_table.php │ │ ├── 2015_10_05_004631_create_field_post_table.php │ │ ├── 2015_10_30_193449_create_authors_table.php │ │ ├── 2015_11_01_180955_create_post_ratings_table.php │ │ ├── 2015_11_25_223423_create_media_table.php │ │ ├── 2016_02_18_043227_create_post_lists_table.php │ │ ├── 2016_02_18_043245_create_post_post_list_table.php │ │ ├── 2016_03_14_215002_create_redirects_table.php │ │ └── 2016_06_13_041432_create_resizable_images_table_migration.php │ ├── readme.md │ ├── src │ ├── AttachesMedia.php │ ├── Author.php │ ├── Category.php │ ├── Events │ │ ├── Event.php │ │ ├── PostWasCreated.php │ │ ├── PostWasPublished.php │ │ ├── PostWasUnpublished.php │ │ └── PostWasUpdated.php │ ├── Field.php │ ├── Listeners │ │ ├── PostEventListener.php │ │ └── ResizableImageSubscriber.php │ ├── Media.php │ ├── Post.php │ ├── PostList.php │ ├── PostRating.php │ ├── Presenters │ │ ├── Decorators │ │ │ └── ModelDecorator.php │ │ ├── PagePresenter.php │ │ ├── PostFormPresenter.php │ │ └── PostPresenter.php │ ├── Providers │ │ ├── EventServiceProvider.php │ │ └── PostsServiceProvider.php │ ├── Redirect.php │ ├── Resizable.php │ ├── Revisionable.php │ ├── Services │ │ └── Resizer.php │ ├── Tag.php │ └── Uuids.php │ └── views │ └── menu.blade.php ├── artisan ├── behat.yml ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── build └── flashtag-split.sh ├── composer.json ├── composer.lock ├── config ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── compile.php ├── database.php ├── filesystems.php ├── mail.php ├── queue.php ├── services.php ├── session.php ├── settings.php ├── site.php └── view.php ├── database ├── .gitignore ├── factories │ ├── FlashtagModelFactory.php │ └── ModelFactory.php ├── migrations └── seeds │ ├── DatabaseSeeder.php │ ├── InstallSeeder.php │ └── TestSeeder.php ├── features ├── bootstrap │ └── FeatureContext.php └── pages.feature ├── framework ├── ConsoleKernel.php ├── ExceptionHandler.php └── HttpKernel.php ├── gulpfile.js ├── package.json ├── phpspec.yml ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── admin │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── themes │ │ └── clean-creative │ │ │ ├── css │ │ │ ├── animate.min.css │ │ │ ├── bootstrap.min.css │ │ │ ├── clean-blog.min.css │ │ │ ├── creative.css │ │ │ └── font-awesome.min.css │ │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ ├── fontawesome-webfont.woff2 │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ ├── img │ │ │ ├── about-bg.jpg │ │ │ ├── contact-bg.jpg │ │ │ ├── header.jpg │ │ │ ├── home-bg.jpg │ │ │ ├── portfolio │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ └── 6.jpg │ │ │ ├── post-bg.jpg │ │ │ └── post-sample-image.jpg │ │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── cbpAnimatedHeader.js │ │ │ ├── classie.js │ │ │ ├── clean-blog.min.js │ │ │ ├── creative.js │ │ │ ├── jquery.easing.min.js │ │ │ ├── jquery.fittext.js │ │ │ ├── jquery.min.js │ │ │ └── wow.min.js │ └── vendor │ │ └── admin ├── browserconfig.xml ├── css │ └── admin ├── favicon.ico ├── icons │ ├── android-chrome-144x144.png │ ├── android-chrome-192x192.png │ ├── android-chrome-36x36.png │ ├── android-chrome-48x48.png │ ├── android-chrome-72x72.png │ ├── android-chrome-96x96.png │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon-precomposed.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-194x194.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ └── safari-pinned-tab.svg ├── images │ └── media │ │ └── .gitignore ├── index.php ├── js │ └── admin ├── manifest.json └── robots.txt ├── readme.md ├── resources ├── assets │ ├── js │ │ └── admin │ └── sass │ │ ├── admin │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── errors │ └── 503.blade.php │ ├── includes │ └── contact-form.php │ ├── themes │ └── clean-creative │ │ ├── authors │ │ └── show.blade.php │ │ ├── categories │ │ └── show.blade.php │ │ ├── home.blade.php │ │ ├── layout-home.blade.php │ │ ├── layout.blade.php │ │ ├── page-templates │ │ ├── contact-page.blade.php │ │ └── default-page.blade.php │ │ ├── partials │ │ ├── footer.blade.php │ │ ├── nav-home.blade.php │ │ ├── nav.blade.php │ │ ├── post-list.blade.php │ │ └── post-meta.blade.php │ │ ├── posts │ │ ├── index.blade.php │ │ └── show.blade.php │ │ └── tags │ │ └── show.blade.php │ ├── vendor │ └── .gitkeep │ └── welcome.blade.php ├── server.php ├── storage ├── app │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── Admin ├── AuthTest.php ├── AuthorsTest.php ├── CategoriesTest.php ├── DashboardTest.php ├── PagesTest.php ├── PostFieldsTest.php ├── PostListsTest.php ├── PostsTest.php ├── SettingsTest.php ├── TagsTest.php └── UsersTest.php ├── Core └── SettingsTest.php ├── TestCase.php └── api └── spec └── FractalDataFormatterSpec.php /.codeclimate.yml: -------------------------------------------------------------------------------- 1 | engines: 2 | phpcodesniffer: 3 | enabled: true 4 | phpmd: 5 | enabled: true 6 | duplication: 7 | enabled: true 8 | config: 9 | languages: 10 | - php 11 | - javascript 12 | eslint: 13 | enabled: true 14 | csslint: 15 | enabled: true 16 | 17 | ratings: 18 | paths: 19 | - app/** 20 | - "**.php" 21 | - "**.js" 22 | 23 | exclude_paths: 24 | - app/admin/public/**/* 25 | - app/front/public/**/* 26 | - app/core/database/**/* 27 | - database/**/* 28 | - public/vendor/**/* 29 | - public/assets/**/* 30 | - public/js/**/* 31 | - tests/**/* 32 | -------------------------------------------------------------------------------- /.env.behat: -------------------------------------------------------------------------------- 1 | APP_ENV=testing 2 | APP_DEBUG=true 3 | APP_KEY=gLaAOOdNUZshpvENRuCQqudy0BqF9qle 4 | 5 | JWT_SECRET=behat 6 | 7 | API_PREFIX=api 8 | API_DEBUG=true 9 | 10 | DB_CONNECTION=testing 11 | DB_HOST=localhost 12 | DB_DATABASE=homestead 13 | DB_USERNAME=homestead 14 | DB_PASSWORD=secret 15 | 16 | MAIL_DRIVER=mandrill 17 | MANDRILL_SECRET=nv2eyGzktARIDVHIDiwYFQ 18 | 19 | CACHE_DRIVER=file 20 | SESSION_DRIVER=file 21 | QUEUE_DRIVER=sync 22 | -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- 1 | APP_ENV=local 2 | APP_DEBUG=true 3 | APP_KEY=SomeRandomString 4 | 5 | JWT_SECRET=some-secret-key 6 | 7 | API_PREFIX=api 8 | API_DEBUG=true 9 | 10 | DB_CONNECTION=pgsql 11 | DB_HOST=localhost 12 | DB_DATABASE=homestead 13 | DB_USERNAME=homestead 14 | DB_PASSWORD=secret 15 | 16 | CACHE_DRIVER=file 17 | SESSION_DRIVER=file 18 | QUEUE_DRIVER=sync 19 | 20 | MAIL_DRIVER=smtp 21 | MAIL_HOST=mailtrap.io 22 | MAIL_PORT=2525 23 | MAIL_USERNAME=null 24 | MAIL_PASSWORD=null 25 | MAIL_ENCRYPTION=null 26 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.less linguist-vendored 4 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | Please prefix your issue with one of the following: **[BUG]** **[PROPOSAL]** **[QUESTION]**. 2 | 3 | ### Steps to reproduce 4 | 1. 5 | 2. 6 | 3. 7 | 8 | 9 | ### Expected behaviour 10 | Tell us what should happen 11 | 12 | 13 | ### Actual behaviour 14 | Tell us what happens instead 15 | 16 | 17 | ### Server configuration 18 | **Operating system**: 19 | 20 | **Web server:** 21 | 22 | **Database:** 23 | 24 | **PHP version:** 25 | 26 | **Flashtag version:** 27 | 28 | --- 29 | 30 | {issue content here} 31 | 32 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # dirs 2 | /.vagrant/ 3 | /vendor/ 4 | node_modules/ 5 | 6 | # files 7 | .env 8 | Homestead.json 9 | Homestead.yaml 10 | Vagrantfile 11 | 12 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: php 2 | 3 | php: 4 | - 5.6 5 | - 7.0 6 | 7 | sudo: false 8 | 9 | before_script: 10 | - travis_retry composer self-update 11 | - travis_retry composer install --no-interaction --prefer-source 12 | 13 | script: 14 | #- vendor/bin/phpspec run --verbose 15 | - vendor/bin/phpunit --testdox --verbose --coverage-clover build/logs/clover.xml 16 | #- vendor/bin/behat 17 | 18 | after_script: 19 | - vendor/bin/test-reporter 20 | 21 | addons: 22 | code_climate: 23 | repo_token: $CODE_CLIMATE_TOKEN 24 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Change Log 2 | All notable changes to this project will be documented in this file. 3 | This project adheres to [Semantic Versioning](http://semver.org/). 4 | 5 | ## [Unreleased] 6 | ### Added 7 | - [CHANGELOG](http://keepachangelog.com/) @ryanwinchester 8 | 9 | ## [0.1.0] - 2016-05-03 10 | ### Added 11 | - Everything. 12 | 13 | [Unreleased]: https://github.com/flashtag/flashtag/compare/v0.1.0...HEAD -------------------------------------------------------------------------------- /Homestead.example.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | ip: "192.168.10.10" 3 | memory: 2048 4 | cpus: 1 5 | hostname: cms 6 | name: cms 7 | provider: virtualbox 8 | 9 | authorize: ~/.ssh/id_rsa.pub 10 | 11 | keys: 12 | - ~/.ssh/id_rsa 13 | 14 | folders: 15 | - map: "~/Code/flashtag/flashtag" 16 | to: "/home/vagrant/flashtag" 17 | 18 | sites: 19 | - map: app.test 20 | to: "/home/vagrant/flashtag/public" 21 | 22 | databases: 23 | - homestead 24 | 25 | variables: 26 | - key: APP_ENV 27 | value: local 28 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2015 Ryan Winchester 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /app/admin/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /app/admin/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2015 Ryan Winchester 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /app/admin/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flashtag/admin", 3 | "license": "Apache-2.0", 4 | "authors": [ 5 | { 6 | "name": "Ryan Winchester", 7 | "email": "fungku@gmail.com" 8 | } 9 | ], 10 | "require": { 11 | "flashtag/core": "*@dev", 12 | "guzzlehttp/guzzle": "^6.1" 13 | }, 14 | "autoload": { 15 | "psr-4": { 16 | "Flashtag\\Admin\\": "src/" 17 | }, 18 | "files": [ 19 | "src/helpers.php" 20 | ] 21 | }, 22 | "minimum-stability": "dev", 23 | "prefer-stable": true 24 | } 25 | -------------------------------------------------------------------------------- /app/admin/public/build/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /app/admin/public/build/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/build/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/build/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/build/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-144x144.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-36x36.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-48x48.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-72x72.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/android-chrome-96x96.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/favicon-16x16.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/favicon-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/favicon-194x194.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/favicon-32x32.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/favicon-96x96.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/mstile-144x144.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/mstile-150x150.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/mstile-310x150.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/mstile-310x310.png -------------------------------------------------------------------------------- /app/admin/public/build/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/icons/mstile-70x70.png -------------------------------------------------------------------------------- /app/admin/public/build/images/flashtag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/build/images/flashtag.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/icons/autocomplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/codemirror/icons/autocomplete.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/icons/autoformat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/codemirror/icons/autoformat.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/icons/commentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/codemirror/icons/commentselectedrange.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/icons/searchcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/codemirror/icons/searchcode.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/icons/uncommentselectedrange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/codemirror/icons/uncommentselectedrange.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'af', { 6 | toolbar: 'Bron', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ar', { 6 | toolbar: 'المصدر', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bg', { 6 | toolbar: 'Източник', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bn', { 6 | toolbar: 'সোর্স', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'bs', { 6 | toolbar: 'HTML kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ca', { 6 | toolbar: 'Codi font', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'cs', { 6 | toolbar: 'Zdroj', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'cy', { 6 | toolbar: 'HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'da', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'de', { 6 | toolbar: 'Quellcode', 7 | searchCode: 'Quellcode durchsuchen', 8 | autoFormat: 'Auswahl formatieren', 9 | commentSelectedRange: 'Auswahl auskommentieren', 10 | uncommentSelectedRange: 'Auskommentierung entfernen', 11 | autoCompleteToggle: 'HTML Tag Autovervollständigen de-/aktivieren' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'el', { 6 | toolbar: 'HTML κώδικας', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-au', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-ca', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en-gb', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'en', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'eo', { 6 | toolbar: 'Fonto', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'es', { 6 | toolbar: 'Fuente HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'et', { 6 | toolbar: 'Lähtekood', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'eu', { 6 | toolbar: 'HTML Iturburua', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fa', { 6 | toolbar: 'منبع', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fi', { 6 | toolbar: 'Koodi', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fo', { 6 | toolbar: 'Kelda', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fr-ca', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'fr', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'gl', { 6 | toolbar: 'Código Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'gu', { 6 | toolbar: 'મૂળ કે પ્રાથમિક દસ્તાવેજ', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'he', { 6 | toolbar: 'מקור', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hi', { 6 | toolbar: 'सोर्स', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hr', { 6 | toolbar: 'Kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'hu', { 6 | toolbar: 'Forráskód', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'is', { 6 | toolbar: 'Kóði', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'it', { 6 | toolbar: 'Codice Sorgente', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ja', { 6 | toolbar: 'ソース', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ka', { 6 | toolbar: 'კოდები', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'km', { 6 | toolbar: 'កូត', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ko', { 6 | toolbar: '소스', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ku', { 6 | toolbar: 'سەرچاوە', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'lt', { 6 | toolbar: 'Šaltinis', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'lv', { 6 | toolbar: 'HTML kods', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'mk', { 6 | toolbar: 'Source', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'mn', { 6 | toolbar: 'Код', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ms', { 6 | toolbar: 'Sumber', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'nb', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'nl', { 6 | toolbar: 'Broncode', 7 | searchCode: 'Zoek in broncode', 8 | autoFormat: 'Formatteer selectie', 9 | commentSelectedRange: 'Zet selectie in commentaar', 10 | uncommentSelectedRange: 'Haal selectie uit commentaar', 11 | autoCompleteToggle: 'Zet automatisch aanvullen van HTML tags aan/uit' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'no', { 6 | toolbar: 'Kilde', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pl', { 6 | toolbar: 'Źródło dokumentu', 7 | autoFormat: 'Sformatuj zaznaczenie', 8 | commentSelectedRange: 'Zakomentuj zaznaczenie', 9 | uncommentSelectedRange: 'Odkomentuj zaznaczenie', 10 | searchCode: 'Wyszukaj w źródle', 11 | autoCompleteToggle: 'Włącza/Wyłącza automatyczne uzupełniania tagów HTML' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pt-br', { 6 | toolbar: 'Código-Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'pt', { 6 | toolbar: 'Fonte', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ro', { 6 | toolbar: 'Sursa', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ru', { 6 | toolbar: 'Источник', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sk', { 6 | toolbar: 'Zdroj', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sl', { 6 | toolbar: 'Izvorna koda', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sr-latn', { 6 | toolbar: 'Kôd', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sr', { 6 | toolbar: 'Kôд', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'sv', { 6 | toolbar: 'Källa', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'th', { 6 | toolbar: 'ดูรหัส HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'tr', { 6 | toolbar: 'Kaynak', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'ug', { 6 | toolbar: 'مەنبە', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'uk', { 6 | toolbar: 'Джерело', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'vi', { 6 | toolbar: 'Mã HTML', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'zh-cn', { 6 | toolbar: '源码', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.html or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'codemirror', 'zh', { 6 | toolbar: '原始碼', 7 | searchCode: 'Search Source', 8 | autoFormat: 'Format Selection', 9 | commentSelectedRange: 'Comment Selection', 10 | uncommentSelectedRange: 'Uncomment Selection', 11 | autoCompleteToggle: 'Enable/Disable HTML Tag Autocomplete' 12 | }); 13 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/codemirror/theme/ambiance-mobile.css: -------------------------------------------------------------------------------- 1 | .cm-s-ambiance.CodeMirror { 2 | -webkit-box-shadow: none; 3 | -moz-box-shadow: none; 4 | box-shadow: none; 5 | } 6 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyblock.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifycenter.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyleft.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/hidpi/justifyright.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyblock.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/justifycenter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/justifycenter.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyleft.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/justify/icons/justifyright.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/af.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'af', { 6 | block: 'Uitvul', 7 | center: 'Sentreer', 8 | left: 'Links oplyn', 9 | right: 'Regs oplyn' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ar.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ar', { 6 | block: 'ضبط', 7 | center: 'توسيط', 8 | left: 'محاذاة إلى اليسار', 9 | right: 'محاذاة إلى اليمين' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/bg.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bg', { 6 | block: 'Двустранно подравняване', 7 | center: 'Център', 8 | left: 'Подравни в ляво', 9 | right: 'Подравни в дясно' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/bn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bn', { 6 | block: 'যাচাই করি', 7 | center: 'মাঝ বরাবর ঘেষা', 8 | left: 'বা দিকে ঘেঁষা', 9 | right: 'ডান দিকে ঘেঁষা' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/bs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'bs', { 6 | block: 'Puno poravnanje', 7 | center: 'Centralno poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ca', { 6 | block: 'Justificat', 7 | center: 'Centrat', 8 | left: 'Alinea a l\'esquerra', 9 | right: 'Alinea a la dreta' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/cs.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cs', { 6 | block: 'Zarovnat do bloku', 7 | center: 'Zarovnat na střed', 8 | left: 'Zarovnat vlevo', 9 | right: 'Zarovnat vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/cy.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'cy', { 6 | block: 'Unioni', 7 | center: 'Alinio i\'r Canol', 8 | left: 'Alinio i\'r Chwith', 9 | right: 'Alinio i\'r Dde' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/da.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'da', { 6 | block: 'Lige margener', 7 | center: 'Centreret', 8 | left: 'Venstrestillet', 9 | right: 'Højrestillet' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/de-ch.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'de-ch', { 6 | block: 'Blocksatz', 7 | center: 'Zentriert', 8 | left: 'Linksbündig', 9 | right: 'Rechtsbündig' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/de.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'de', { 6 | block: 'Blocksatz', 7 | center: 'Zentriert', 8 | left: 'Linksbündig', 9 | right: 'Rechtsbündig' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/el.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'el', { 6 | block: 'Πλήρης Στοίχιση', 7 | center: 'Στο Κέντρο', 8 | left: 'Στοίχιση Αριστερά', 9 | right: 'Στοίχιση Δεξιά' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/en-au.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-au', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/en-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-ca', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/en-gb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en-gb', { 6 | block: 'Justify', 7 | center: 'Centre', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/en.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'en', { 6 | block: 'Justify', 7 | center: 'Center', 8 | left: 'Align Left', 9 | right: 'Align Right' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/eo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eo', { 6 | block: 'Ĝisrandigi Ambaŭflanke', 7 | center: 'Centrigi', 8 | left: 'Ĝisrandigi maldekstren', 9 | right: 'Ĝisrandigi dekstren' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/es.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'es', { 6 | block: 'Justificado', 7 | center: 'Centrar', 8 | left: 'Alinear a Izquierda', 9 | right: 'Alinear a Derecha' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/et.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'et', { 6 | block: 'Rööpjoondus', 7 | center: 'Keskjoondus', 8 | left: 'Vasakjoondus', 9 | right: 'Paremjoondus' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/eu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'eu', { 6 | block: 'Justifikatu', 7 | center: 'Erdian', 8 | left: 'Lerrokatu ezkerrean', 9 | right: 'Lerrokatu eskuinean' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/fa.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fa', { 6 | block: 'بلوک چین', 7 | center: 'میان چین', 8 | left: 'چپ چین', 9 | right: 'راست چین' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/fi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fi', { 6 | block: 'Tasaa molemmat reunat', 7 | center: 'Keskitä', 8 | left: 'Tasaa vasemmat reunat', 9 | right: 'Tasaa oikeat reunat' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/fo.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fo', { 6 | block: 'Javnir tekstkantar', 7 | center: 'Miðsett', 8 | left: 'Vinstrasett', 9 | right: 'Høgrasett' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/fr-ca.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr-ca', { 6 | block: 'Justifié', 7 | center: 'Centré', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à Droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/fr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'fr', { 6 | block: 'Justifier', 7 | center: 'Centrer', 8 | left: 'Aligner à gauche', 9 | right: 'Aligner à droite' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/gl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gl', { 6 | block: 'Xustificado', 7 | center: 'Centrado', 8 | left: 'Aliñar á esquerda', 9 | right: 'Aliñar á dereita' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/gu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'gu', { 6 | block: 'બ્લૉક, અંતરાય જસ્ટિફાઇ', 7 | center: 'સંકેંદ્રણ/સેંટરિંગ', 8 | left: 'ડાબી બાજુએ/બાજુ તરફ', 9 | right: 'જમણી બાજુએ/બાજુ તરફ' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/he.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'he', { 6 | block: 'יישור לשוליים', 7 | center: 'מרכוז', 8 | left: 'יישור לשמאל', 9 | right: 'יישור לימין' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/hi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hi', { 6 | block: 'ब्लॉक जस्टीफ़ाई', 7 | center: 'बीच में', 8 | left: 'बायीं तरफ', 9 | right: 'दायीं तरफ' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/hr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hr', { 6 | block: 'Blok poravnanje', 7 | center: 'Središnje poravnanje', 8 | left: 'Lijevo poravnanje', 9 | right: 'Desno poravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/hu.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'hu', { 6 | block: 'Sorkizárt', 7 | center: 'Középre', 8 | left: 'Balra', 9 | right: 'Jobbra' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/id.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'id', { 6 | block: 'Rata kiri-kanan', 7 | center: 'Pusat', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/is.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'is', { 6 | block: 'Jafna báðum megin', 7 | center: 'Miðja texta', 8 | left: 'Vinstrijöfnun', 9 | right: 'Hægrijöfnun' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/it.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'it', { 6 | block: 'Giustifica', 7 | center: 'Centra', 8 | left: 'Allinea a sinistra', 9 | right: 'Allinea a destra' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ja.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ja', { 6 | block: '両端揃え', 7 | center: '中央揃え', 8 | left: '左揃え', 9 | right: '右揃え' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ka.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ka', { 6 | block: 'გადასწორება', 7 | center: 'შუაში სწორება', 8 | left: 'მარცხნივ სწორება', 9 | right: 'მარჯვნივ სწორება' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/km.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'km', { 6 | block: 'តម្រឹម​ពេញ', 7 | center: 'កណ្ដាល', 8 | left: 'តម្រឹម​ឆ្វេង', 9 | right: 'តម្រឹម​ស្ដាំ' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ko.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ko', { 6 | block: '양쪽 맞춤', 7 | center: '가운데 정렬', 8 | left: '왼쪽 정렬', 9 | right: '오른쪽 정렬' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ku.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ku', { 6 | block: 'هاوستوونی', 7 | center: 'ناوەڕاست', 8 | left: 'بەهێڵ کردنی چەپ', 9 | right: 'بەهێڵ کردنی ڕاست' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/lt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lt', { 6 | block: 'Lygiuoti abi puses', 7 | center: 'Centruoti', 8 | left: 'Lygiuoti kairę', 9 | right: 'Lygiuoti dešinę' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/lv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'lv', { 6 | block: 'Izlīdzināt malas', 7 | center: 'Izlīdzināt pret centru', 8 | left: 'Izlīdzināt pa kreisi', 9 | right: 'Izlīdzināt pa labi' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/mk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mk', { 6 | block: 'Justify', // MISSING 7 | center: 'Во средина', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/mn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'mn', { 6 | block: 'Тэгшлэх', 7 | center: 'Голлуулах', 8 | left: 'Зүүн талд тулгах', 9 | right: 'Баруун талд тулгах' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ms.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ms', { 6 | block: 'Jajaran Blok', 7 | center: 'Jajaran Tengah', 8 | left: 'Jajaran Kiri', 9 | right: 'Jajaran Kanan' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/nb.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nb', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/nl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'nl', { 6 | block: 'Uitvullen', 7 | center: 'Centreren', 8 | left: 'Links uitlijnen', 9 | right: 'Rechts uitlijnen' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/no.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'no', { 6 | block: 'Blokkjuster', 7 | center: 'Midtstill', 8 | left: 'Venstrejuster', 9 | right: 'Høyrejuster' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/pl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pl', { 6 | block: 'Wyjustuj', 7 | center: 'Wyśrodkuj', 8 | left: 'Wyrównaj do lewej', 9 | right: 'Wyrównaj do prawej' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/pt-br.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt-br', { 6 | block: 'Justificado', 7 | center: 'Centralizar', 8 | left: 'Alinhar Esquerda', 9 | right: 'Alinhar Direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/pt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'pt', { 6 | block: 'Justificado', 7 | center: 'Alinhar ao Centro', 8 | left: 'Alinhar à esquerda', 9 | right: 'Alinhar à direita' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ro.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ro', { 6 | block: 'Aliniere în bloc (Block Justify)', 7 | center: 'Aliniere centrală', 8 | left: 'Aliniere la stânga', 9 | right: 'Aliniere la dreapta' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ru.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ru', { 6 | block: 'По ширине', 7 | center: 'По центру', 8 | left: 'По левому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/si.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'si', { 6 | block: 'Justify', // MISSING 7 | center: 'මධ්‍ය', 8 | left: 'Align Left', // MISSING 9 | right: 'Align Right' // MISSING 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sk', { 6 | block: 'Zarovnať do bloku', 7 | center: 'Zarovnať na stred', 8 | left: 'Zarovnať vľavo', 9 | right: 'Zarovnať vpravo' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sl.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sl', { 6 | block: 'Obojestranska poravnava', 7 | center: 'Sredinska poravnava', 8 | left: 'Leva poravnava', 9 | right: 'Desna poravnava' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sq.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sq', { 6 | block: 'Zgjero', 7 | center: 'Qendër', 8 | left: 'Rreshto majtas', 9 | right: 'Rreshto Djathtas' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sr-latn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr-latn', { 6 | block: 'Obostrano ravnanje', 7 | center: 'Centriran tekst', 8 | left: 'Levo ravnanje', 9 | right: 'Desno ravnanje' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sr', { 6 | block: 'Обострано равнање', 7 | center: 'Центриран текст', 8 | left: 'Лево равнање', 9 | right: 'Десно равнање' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/sv.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'sv', { 6 | block: 'Justera till marginaler', 7 | center: 'Centrera', 8 | left: 'Vänsterjustera', 9 | right: 'Högerjustera' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/th.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'th', { 6 | block: 'จัดพอดีหน้ากระดาษ', 7 | center: 'จัดกึ่งกลาง', 8 | left: 'จัดชิดซ้าย', 9 | right: 'จัดชิดขวา' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/tr.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'tr', { 6 | block: 'İki Kenara Yaslanmış', 7 | center: 'Ortalanmış', 8 | left: 'Sola Dayalı', 9 | right: 'Sağa Dayalı' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/tt.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'tt', { 6 | block: 'Киңлеккә карап тигезләү', 7 | center: 'Үзәккә тигезләү', 8 | left: 'Сул як кырыйдан тигезләү', 9 | right: 'Уң як кырыйдан тигезләү' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/ug.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'ug', { 6 | block: 'ئىككى تەرەپتىن توغرىلا', 7 | center: 'ئوتتۇرىغا توغرىلا', 8 | left: 'سولغا توغرىلا', 9 | right: 'ئوڭغا توغرىلا' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/uk.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'uk', { 6 | block: 'По ширині', 7 | center: 'По центру', 8 | left: 'По лівому краю', 9 | right: 'По правому краю' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/vi.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'vi', { 6 | block: 'Canh đều', 7 | center: 'Canh giữa', 8 | left: 'Canh trái', 9 | right: 'Canh phải' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/zh-cn.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh-cn', { 6 | block: '两端对齐', 7 | center: '居中', 8 | left: '左对齐', 9 | right: '右对齐' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/justify/lang/zh.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | CKEDITOR.plugins.setLang( 'justify', 'zh', { 6 | block: '左右對齊', 7 | center: '置中', 8 | left: '靠左對齊', 9 | right: '靠右對齊' 10 | } ); 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/magicline/images/icon-rtl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/magicline/images/icon-rtl.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/img/github-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/img/github-top.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/img/header-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/img/header-bg.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/img/header-separator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/img/header-separator.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/img/logo.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/img/navigation-tip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/img/navigation-tip.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/old/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/old/assets/inlineall/logo.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/old/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/old/assets/sample.jpg -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/old/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Font license info 2 | 3 | 4 | ## Font Awesome 5 | 6 | Copyright (C) 2012 by Dave Gandy 7 | 8 | Author: Dave Gandy 9 | License: SIL () 10 | Homepage: http://fortawesome.github.com/Font-Awesome/ 11 | -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/samples/toolbarconfigurator/font/fontello.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/icons.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/icons_hidpi.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/arrow.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/close.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/close.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/lock.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/hidpi/refresh.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/lock-open.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/lock.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/ckeditor/skins/minimalist/images/refresh.png -------------------------------------------------------------------------------- /app/admin/public/vendor/ckeditor/skins/minimalist/readme.md: -------------------------------------------------------------------------------- 1 | "Minimalist" Skin 2 | ==================== 3 | 4 | A port of the default CKEditor skin, Moono, without the gradients. 5 | 6 | Jeff Lyon 7 | [Albatross Digital](albatrossdigital.com) 8 | -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBold-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-ExtraBoldItalic-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-Semibold-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/OpenSans-SemiboldItalic-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/PatternFlyIcons-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-114.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-144.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-152.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-180.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-57.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-72.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/apple-touch-icon-precomposed-76.png -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/bg-login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/bg-login.jpg -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/favicon.ico -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-inverse-lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-inverse-lg.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-inverse-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-inverse-sm.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-inverse-xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-inverse-xs.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-inverse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-inverse.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-lg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-lg.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-sm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-sm.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner-xs.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner-xs.gif -------------------------------------------------------------------------------- /app/admin/public/vendor/patternfly/images/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/app/admin/public/vendor/patternfly/images/spinner.gif -------------------------------------------------------------------------------- /app/admin/readme.md: -------------------------------------------------------------------------------- 1 | # Flashtag Admin 2 | 3 | ### Read-Only subsplit of Flashtag/Admin 4 | 5 | - [Wiki](https://github.com/flashtag/development/wiki) 6 | - [Issues](https://github.com/flashtag/development/issues) 7 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/components/fields/templates/rich_text.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/components/fields/templates/string.vue: -------------------------------------------------------------------------------- 1 | 5 | 6 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/components/home.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/directives/select.js: -------------------------------------------------------------------------------- 1 | export default { 2 | twoWay: true, 3 | 4 | params: ['options'], 5 | 6 | bind: function () { 7 | var self = this; 8 | $(this.el).select2({ 9 | data: this.params.options 10 | }).on('change', function () { 11 | self.set($(this).val()); 12 | }); 13 | }, 14 | 15 | update: function (value) { 16 | $(this.el).val(value).trigger('change'); 17 | }, 18 | 19 | unbind: function () { 20 | $(this.el).off().select2('destroy'); 21 | } 22 | 23 | } 24 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/models/author.js: -------------------------------------------------------------------------------- 1 | import Model from './model'; 2 | 3 | class Author extends Model { 4 | constructor(data) { 5 | super('authors', { 6 | id: data.id, 7 | name: data.name, 8 | slug: data.slug, 9 | bio: data.bio, 10 | photo: data.photo, 11 | created_at: data.created_at, 12 | updated_at: data.updated_at 13 | }); 14 | } 15 | } 16 | 17 | export default Author; 18 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/models/field.js: -------------------------------------------------------------------------------- 1 | import Model from './model'; 2 | 3 | class Field extends Model { 4 | constructor(data) { 5 | super('tags', { 6 | id: data.id, 7 | name: data.name, 8 | label: data.label, 9 | template: data.template, 10 | description: data.description, 11 | created_at: data.created_at, 12 | updated_at: data.updated_at 13 | }) 14 | } 15 | } 16 | 17 | export default Field; 18 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/models/tag.js: -------------------------------------------------------------------------------- 1 | import Model from './model'; 2 | 3 | class Tag extends Model { 4 | constructor(data) { 5 | super('tags', { 6 | id: data.id, 7 | name: data.name, 8 | slug: data.slug, 9 | description: data.description, 10 | posts: data.posts || [], 11 | media: data.media ? data.media : {}, 12 | created_at: data.created_at, 13 | updated_at: data.updated_at 14 | }) 15 | } 16 | } 17 | 18 | export default Tag; 19 | -------------------------------------------------------------------------------- /app/admin/resources/assets/js/models/user.js: -------------------------------------------------------------------------------- 1 | import Model from './model'; 2 | 3 | class User extends Model { 4 | constructor(data) { 5 | super('users', { 6 | id: data.id, 7 | email: data.email, 8 | name: data.name, 9 | admin: data.admin, 10 | created_at: data.created_at, 11 | updated_at: data.updated_at 12 | }); 13 | } 14 | } 15 | 16 | export default User; 17 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/_variables.scss: -------------------------------------------------------------------------------- 1 | 2 | // Colours 3 | 4 | // CYAN 5 | //$brand-primary: #00BCD4; 6 | //$brand-primary-500: $brand-primary; 7 | //$brand-primary-900: #006064; 8 | 9 | // TEAL 10 | //$brand-primary: #009688; 11 | //$brand-primary-500: $brand-primary; 12 | //$brand-primary-900: #004D40; 13 | 14 | $brand-primary: #00718e; // fotf 15 | $brand-primary-500: $brand-primary; 16 | 17 | // Specialty colours 18 | $rolf-green: #18bc9c; 19 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/includes/_animations.scss: -------------------------------------------------------------------------------- 1 | // PULSE 2 | .pulse { 3 | background-color: white; 4 | animation-name: pulse; 5 | animation-duration: 2.0s; 6 | animation-timing-function: ease-out; 7 | animation-delay: 700ms; 8 | animation-iteration-count: 1; 9 | animation-fill-mode: none; 10 | animation-play-state: running; 11 | } 12 | 13 | @keyframes pulse { 14 | 0% { 15 | background-color: inherit; 16 | } 17 | 20% { 18 | background-color: #F7BF65; 19 | } 20 | 60% { 21 | background-color: #F7BF65; 22 | } 23 | 100% { 24 | background-color: inherit; 25 | } 26 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/includes/_buttons.scss: -------------------------------------------------------------------------------- 1 | 2 | .btn:focus, 3 | .btn.focus, 4 | .btn:active:focus, 5 | .btn:active.focus, 6 | .btn.active:focus, 7 | .btn.active.focus, 8 | a:focus { 9 | outline: none; 10 | } 11 | 12 | .btn-link, .btn-link:hover { 13 | color: $brand-primary; 14 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/includes/_layout.scss: -------------------------------------------------------------------------------- 1 | 2 | .Main { 3 | display: flex; 4 | min-height: 100vh; 5 | } 6 | 7 | .Main__menu { 8 | @include make-xs-column(2); 9 | position: relative; 10 | padding-left: 0px; 11 | padding-right: 0px; 12 | box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.3); 13 | z-index: 1031; 14 | } 15 | 16 | .Main__container { 17 | @include make-md-column(10); 18 | padding: 100px 40px 40px 40px !important; 19 | } 20 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/includes/_utility.scss: -------------------------------------------------------------------------------- 1 | 2 | .content-loading { 3 | margin-top: 100px; 4 | text-align: center; 5 | i { 6 | font-size: 10rem; 7 | } 8 | } 9 | 10 | .text-centered { 11 | text-align: center; 12 | } 13 | 14 | .table { 15 | thead, tbody, tfoot { 16 | tr { 17 | td, th { 18 | &:first-child { 19 | padding-left: 15px; 20 | } 21 | &:last-child { 22 | padding-right: 15px; 23 | } 24 | } 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/pages/posts/_edit.scss: -------------------------------------------------------------------------------- 1 | 2 | .Post { 3 | .border-green { 4 | border-left: 6px solid #18bc9c; 5 | } 6 | .border-red { 7 | border-left: 6px solid #e74c3c; 8 | } 9 | } 10 | 11 | .action-buttons { 12 | float: right; 13 | } 14 | 15 | label.showing { 16 | float: right; 17 | } 18 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/pages/revisions/_index.scss: -------------------------------------------------------------------------------- 1 | .Revisions { 2 | 3 | .action-button { 4 | text-align: right; 5 | width: 100px; 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/pages/revisions/_show.scss: -------------------------------------------------------------------------------- 1 | .Revision { 2 | .view-buttons { 3 | float: right; 4 | } 5 | 6 | ins, del { 7 | display: inline-block; 8 | } 9 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/partials/_forms.scss: -------------------------------------------------------------------------------- 1 | 2 | form { 3 | .info.row { 4 | margin-bottom: 30px; 5 | } 6 | .panel { 7 | margin-bottom: 40px; 8 | } 9 | .panel-heading, 10 | .panel-footer { 11 | padding-left: 30px; 12 | padding-right: 30px; 13 | } 14 | .panel-body { 15 | padding: 30px 30px 0px; 16 | 17 | .form-group { 18 | margin-bottom: 45px; 19 | } 20 | } 21 | } 22 | 23 | label { 24 | text-transform: uppercase; 25 | } 26 | 27 | /* TODO: create more thumbnail classes based on generated thumbnail heights */ 28 | .Image__thumbnail--200 { 29 | img { 30 | max-height: 200px; 31 | } 32 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/partials/_indices.scss: -------------------------------------------------------------------------------- 1 | 2 | .create-button { 3 | @include clearfix; 4 | 5 | button { 6 | float: right; 7 | } 8 | } 9 | 10 | .table td .tag.label { 11 | margin-right: 5px; 12 | &:last-child { 13 | margin-right: 0px; 14 | } 15 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/partials/_main.scss: -------------------------------------------------------------------------------- 1 | .Main { 2 | } 3 | 4 | .Main__container { 5 | padding-left: 40px; 6 | padding-right: 40px; 7 | } 8 | 9 | .Main__content { 10 | 11 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/partials/_panels.scss: -------------------------------------------------------------------------------- 1 | .panel-heading { 2 | text-transform: uppercase; 3 | } -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/partials/_top-nav.scss: -------------------------------------------------------------------------------- 1 | 2 | .Top-nav { 3 | z-index: 1040; 4 | 5 | &.navbar { 6 | border-radius: 0px; 7 | } 8 | 9 | &.navbar-inverse { 10 | .navbar-brand, 11 | .navbar-nav > li > a { 12 | color: #fff; 13 | } 14 | } 15 | 16 | .container-fluid { 17 | //padding-left: 55px; 18 | padding-right: 55px; 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/_bootstrap.scss: -------------------------------------------------------------------------------- 1 | @import "variables"; 2 | @import "../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 3 | @import "bootswatch"; -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_badges.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Badges 3 | // -------------------------------------------------- 4 | 5 | .badge { 6 | margin-left: 6px; 7 | } 8 | 9 | .nav-pills > li > a > .badge { 10 | margin-left: 6px; 11 | } 12 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_breadcrumbs.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | .breadcrumb { 6 | padding-left: 0; 7 | > .active strong { 8 | font-weight: 600; 9 | } 10 | > li { 11 | display: inline; /* IE8 */ 12 | + li:before { 13 | color: $gray-light; 14 | content: $fa-var-angle-double-right; 15 | font-family: $icon-font-name-fa; 16 | font-size: ($font-size-base - 1); 17 | padding: 0 9px 0 7px; 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_close.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | text-shadow: none; 8 | @include opacity(.6); 9 | &:hover, 10 | &:focus { 11 | @include opacity(.9); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_footer.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Footer 3 | // -------------------------------------------------- 4 | 5 | .footer-pf-alt, .footer-pf { 6 | background-color: $footer-pf-bg-color; 7 | color: $gray-light; 8 | font-size: $font-size-small; 9 | line-height: 17px; // whole px unit to avoid height differences among browsers 10 | padding-left: $footer-pf-padding-left; 11 | padding-top: $footer-pf-padding-top; 12 | .layout-pf-alt-fixed-with-footer &, .layout-pf-fixed-with-footer &{ 13 | bottom: 0; 14 | left: 0; 15 | position: fixed; 16 | right: 0; 17 | z-index: $zindex-navbar-fixed; 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_labels.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Labels 3 | // -------------------------------------------------- 4 | 5 | .label { 6 | border-radius: 0; 7 | font-size: 100%; 8 | font-weight: 600; 9 | h1 &, 10 | h2 &, 11 | h3 &, 12 | h4 &, 13 | h5 &, 14 | h6 & { 15 | font-size: 75%; 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_list-group.scss: -------------------------------------------------------------------------------- 1 | // 2 | // List groups 3 | // -------------------------------------------------- 4 | 5 | .list-group { 6 | border-top: 1px solid $list-group-top-border; 7 | .list-group-item:first-child { 8 | border-top: 0; 9 | } 10 | } 11 | .list-group-item { 12 | border-left: 0; 13 | border-right: 0; 14 | } 15 | 16 | .list-group-item-heading { 17 | font-weight: 600; 18 | } 19 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_syntax-highlighting.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Syntax Highlighting for google-code-prettify 3 | // -------------------------------------------------- 4 | 5 | .prettyprint { 6 | .atn, 7 | .com, 8 | .fun, 9 | .var { 10 | color: $syntax-3; 11 | } 12 | 13 | .atv, 14 | .str { 15 | color: $syntax-1; 16 | } 17 | 18 | .clo, 19 | .dec, 20 | .kwd, 21 | .opn, 22 | .pln, 23 | .pun { 24 | color: $syntax-2; 25 | } 26 | 27 | .lit, 28 | .tag, 29 | .typ { 30 | color: $syntax-4; 31 | } 32 | 33 | ol.linenums { 34 | margin-bottom: 0; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_tooltip.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Tooltips 3 | // -------------------------------------------------- 4 | 5 | // Base class 6 | .tooltip { 7 | font-size: $tooltip-font-size; 8 | line-height: 1.4 9 | } 10 | 11 | // Wrapper for the tooltip content 12 | .tooltip-inner { 13 | padding: 7px 12px; 14 | text-align: left; 15 | } 16 | -------------------------------------------------------------------------------- /app/admin/resources/assets/sass/vendor/patternfly-files/_type.scss: -------------------------------------------------------------------------------- 1 | // 2 | // Typography 3 | // -------------------------------------------------- 4 | 5 | h1, 6 | .h1, 7 | h2, 8 | .h2 { 9 | font-weight: 300; 10 | } 11 | 12 | .page-header .actions { 13 | margin-top: 8px; 14 | a > .pficon { 15 | margin-right: 4px; 16 | } 17 | } 18 | 19 | @media (min-width: $grid-float-breakpoint-max) { 20 | .page-header-bleed-left { 21 | margin-left: (-($grid-gutter-width / 2)); 22 | } 23 | .page-header-bleed-right { 24 | margin-right: ((-$grid-gutter-width / 2)); 25 | .actions { 26 | margin-right: ($grid-gutter-width / 2); 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/admin/resources/views/authors/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 | 11 |
12 | @endsection 13 | -------------------------------------------------------------------------------- /app/admin/resources/views/categories/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 |
11 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/emails/password.blade.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | Click here to reset your password: {{ url('/admin/password/reset/'.$token) }} 4 |
5 | -------------------------------------------------------------------------------- /app/admin/resources/views/fields/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 | 11 |
12 | @endsection 13 | -------------------------------------------------------------------------------- /app/admin/resources/views/fields/templates/rich_text.blade.php: -------------------------------------------------------------------------------- 1 | 2 | fields ? $post->fields->where('id', $field->id)->first() : null; ?> 3 | 4 | 5 | 8 | -------------------------------------------------------------------------------- /app/admin/resources/views/fields/templates/string.blade.php: -------------------------------------------------------------------------------- 1 | 2 | fields ? $post->fields->where('id', $field->id)->first() : null; ?> 3 | 4 | 5 | 7 | -------------------------------------------------------------------------------- /app/admin/resources/views/pages/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 |
11 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/pages/revisions/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 6 |
7 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/pages/revisions/show.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 6 |
7 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/partials/form-errors.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @if ($errors->any()) 3 | 8 | @endif 9 | -------------------------------------------------------------------------------- /app/admin/resources/views/post-lists/form.blade.php: -------------------------------------------------------------------------------- 1 | 2 | @include('admin::partials.form-errors') 3 | 4 |
5 |

Post List

6 |
7 |
8 | 9 | 10 |
11 |
12 |
13 | -------------------------------------------------------------------------------- /app/admin/resources/views/post-lists/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 | 11 |
12 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/posts/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 | 11 |
12 | @endsection 13 | -------------------------------------------------------------------------------- /app/admin/resources/views/posts/revisions/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 6 |
7 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/posts/revisions/show.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 6 |
7 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/tags/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 |
11 | @endsection -------------------------------------------------------------------------------- /app/admin/resources/views/users/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('admin::layout') 2 | 3 | @section('content') 4 |
5 | 9 | 10 |
11 | @endsection 12 | -------------------------------------------------------------------------------- /app/admin/src/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | user()->admin) { 19 | return response("Nope.", 403); 20 | } 21 | 22 | return $next($request); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/admin/src/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | 'required|unique:authors|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/AuthorDestroyRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/CategoryDestroyRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/FieldCreateRequest.php: -------------------------------------------------------------------------------- 1 | 'required|unique:fields|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/FieldDestroyRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/PageDestroyRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/Request.php: -------------------------------------------------------------------------------- 1 | 'required|unique:tags|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/TagDestroyRequest.php: -------------------------------------------------------------------------------- 1 | 'required|max:255', 16 | ]; 17 | } 18 | 19 | /** 20 | * Determine if the user is authorized to make this request. 21 | * 22 | * @return bool 23 | */ 24 | public function authorize() 25 | { 26 | return \Auth::check(); 27 | } 28 | } -------------------------------------------------------------------------------- /app/admin/src/Http/Requests/UserDestroyRequest.php: -------------------------------------------------------------------------------- 1 | (int) $media->id, 17 | 'url' => $media->url, 18 | 'type' => $media->type, 19 | 'created_at' => $media->created_at->getTimeStamp(), 20 | 'updated_at' => $media->updated_at->getTimeStamp(), 21 | ]; 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/api/src/Transformers/Transformer.php: -------------------------------------------------------------------------------- 1 | define(Flashtag\Auth\User::class, function (Faker\Generator $faker) { 4 | return [ 5 | 'name' => $faker->firstName.' '.$faker->lastName, 6 | 'email' => $faker->email, 7 | 'password' => bcrypt(str_random(10)), 8 | 'remember_token' => str_random(10), 9 | ]; 10 | }); 11 | 12 | $factory->defineAs(Flashtag\Auth\User::class, 'admin', function ($faker) use ($factory) { 13 | $user = $factory->raw(Flashtag\Auth\User::class); 14 | 15 | return array_merge($user, ['admin' => true]); 16 | }); 17 | -------------------------------------------------------------------------------- /app/auth/readme.md: -------------------------------------------------------------------------------- 1 | # Flashtag Auth 2 | 3 | ### Read-Only subsplit of Flashtag/Auth 4 | 5 | - [Wiki](https://github.com/flashtag/development/wiki) 6 | - [Issues](https://github.com/flashtag/development/issues) 7 | -------------------------------------------------------------------------------- /app/core/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2015 Ryan Winchester 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /app/core/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flashtag/core", 3 | "license": "Apache-2.0", 4 | "authors": [ 5 | { 6 | "name": "Ryan Winchester", 7 | "email": "fungku@gmail.com" 8 | } 9 | ], 10 | "require": { 11 | "illuminate/console": "~5.0", 12 | "ramsey/uuid": "^3.5" 13 | }, 14 | "autoload": { 15 | "psr-4": { 16 | "Flashtag\\Core\\": "src/" 17 | }, 18 | "files": [ 19 | "src/helpers.php" 20 | ] 21 | }, 22 | "minimum-stability": "dev", 23 | "prefer-stable": true 24 | } 25 | -------------------------------------------------------------------------------- /app/core/readme.md: -------------------------------------------------------------------------------- 1 | # Flashtag Core 2 | 3 | ### Read-Only subsplit of Flashtag/Core 4 | 5 | - [Wiki](https://github.com/flashtag/development/wiki) 6 | - [Issues](https://github.com/flashtag/development/issues) 7 | -------------------------------------------------------------------------------- /app/core/src/Console/Commands/Install/InstallCommand.php: -------------------------------------------------------------------------------- 1 | artisan = $artisan; 14 | } 15 | 16 | abstract public function execute(); 17 | } -------------------------------------------------------------------------------- /app/core/src/Console/Commands/Install/InstallDefaultTheme.php: -------------------------------------------------------------------------------- 1 | artisan->confirm("Install default theme now?", true)) { 10 | $this->artisan->call("flashtag:install-theme", [ 11 | "theme" => "flashtag-themes/clean-creative" 12 | ]); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /app/core/src/Console/Commands/Install/PublishFiles.php: -------------------------------------------------------------------------------- 1 | artisan->call("flashtag:publish", [ 10 | "--packages" => "all" 11 | ]); 12 | } 13 | } -------------------------------------------------------------------------------- /app/core/src/Console/Commands/Install/RunMigrations.php: -------------------------------------------------------------------------------- 1 | artisan->confirm("Run database migrations now? (requires working db connection)", true)) { 10 | $this->artisan->call('migrate'); 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /app/core/src/Console/Commands/Install/SeedExamples.php: -------------------------------------------------------------------------------- 1 | artisan->confirm("Add example post and category?", true)) { 10 | $this->artisan->call('db:seed', [ 11 | '--class' => 'InstallSeeder', 12 | ]); 13 | } 14 | } 15 | } -------------------------------------------------------------------------------- /app/core/src/Events/SettingsSaved.php: -------------------------------------------------------------------------------- 1 | cache = $cache; 15 | } 16 | 17 | /** 18 | * Handle the post creation events. 19 | * 20 | * @param $event 21 | */ 22 | public function handle(SettingsSaved $event) 23 | { 24 | $this->cache->forget('settings'); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/core/src/Settings/SettingsMiddleware.php: -------------------------------------------------------------------------------- 1 | settings = $settings; 12 | } 13 | 14 | public function handle($request, Closure $next) 15 | { 16 | $response = $next($request); 17 | 18 | if ($this->settings->isDirty()) { 19 | $this->settings->wash(); 20 | } 21 | 22 | return $response; 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /app/core/src/helpers.php: -------------------------------------------------------------------------------- 1 | all(); 12 | } catch (\PDOException $e) { 13 | $pages = null; 14 | } 15 | 16 | return implode('|', $pages ?: ['338e56cd45b6483dbe63c1616cd5feee']); 17 | } 18 | -------------------------------------------------------------------------------- /app/posts/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2015 Ryan Winchester 2 | 3 | Licensed under the Apache License, Version 2.0 (the "License"); 4 | you may not use this file except in compliance with the License. 5 | You may obtain a copy of the License at 6 | 7 | http://www.apache.org/licenses/LICENSE-2.0 8 | 9 | Unless required by applicable law or agreed to in writing, software 10 | distributed under the License is distributed on an "AS IS" BASIS, 11 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 | See the License for the specific language governing permissions and 13 | limitations under the License. 14 | -------------------------------------------------------------------------------- /app/posts/config/posts.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'storage' => [ 6 | 'disk' => 'local', 7 | 'path' => 'public/images/media', 8 | 'public_path' => 'images/media', 9 | ], 10 | 11 | // largest to smallest order 12 | 'sizes' => [ 13 | 'lg' => 600, 14 | 'md' => 400, 15 | 'sm' => 200, 16 | 'xs' => 80, 17 | ], 18 | 19 | 'format' => function ($filename, $extension, $size) { 20 | return "{$filename}__{$size}.{$extension}"; 21 | }, 22 | ], 23 | ]; 24 | -------------------------------------------------------------------------------- /app/posts/readme.md: -------------------------------------------------------------------------------- 1 | # Flashtag Posts Plugin 2 | 3 | For a blog or articles. 4 | 5 | -------------------------------------------------------------------------------- /app/posts/src/Events/Event.php: -------------------------------------------------------------------------------- 1 | wrappedObject = $resource; 16 | } 17 | 18 | } 19 | -------------------------------------------------------------------------------- /app/posts/src/Redirect.php: -------------------------------------------------------------------------------- 1 | morphTo(); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /app/posts/src/Uuids.php: -------------------------------------------------------------------------------- 1 | getKeyName(); 14 | if (empty($model->{$key})) { 15 | $model->{$key} = UuidGenerator::uuid4()->toString(); 16 | } 17 | }); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /behat.yml: -------------------------------------------------------------------------------- 1 | default: 2 | extensions: 3 | Laracasts\Behat: ~ 4 | Behat\MinkExtension: 5 | default_session: selenium2 6 | laravel: ~ 7 | selenium2: 8 | wd_host: "http://app.test:4444/wd/hub" 9 | browser_name: phantomjs 10 | -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /build/flashtag-split.sh: -------------------------------------------------------------------------------- 1 | git subsplit init git@github.com:flashtag/flashtag.git 2 | git subsplit publish --heads="master" app/Admin:git@github.com:flashtag/admin.git 3 | git subsplit publish --heads="master" app/Api:git@github.com:flashtag/api.git 4 | git subsplit publish --heads="master" app/Client:git@github.com:flashtag/client.git 5 | git subsplit publish --heads="master" app/Cms:git@github.com:flashtag/cms.git 6 | git subsplit publish --heads="master" app/Data:git@github.com:flashtag/data.git 7 | rm -rf .subsplit/ 8 | -------------------------------------------------------------------------------- /config/site.php: -------------------------------------------------------------------------------- 1 | [ 5 | 'storage' => [ 6 | 'disk' => 'local', 7 | 'path' => 'public/images/media', 8 | 'public_path' => 'images/media', 9 | ], 10 | 11 | // largest to smallest order 12 | 'sizes' => [ 13 | 'lg' => 600, 14 | 'md' => 400, 15 | 'sm' => 200, 16 | 'xs' => 80, 17 | ], 18 | 19 | 'format' => function ($filename, $extension, $size) { 20 | return "{$filename}__{$size}.{$extension}"; 21 | }, 22 | ], 23 | ]; 24 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | call(TestSeeder::class); 18 | 19 | Model::reguard(); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /features/pages.feature: -------------------------------------------------------------------------------- 1 | Feature: Front Pages 2 | In order to verify the front pages are working 3 | As a visitor 4 | I want to see them 5 | 6 | Scenario: Home page 7 | Given I am on the homepage 8 | Then I should see "Contact Content Management is no longer a chore" 9 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var elixir = require('laravel-elixir'); 2 | 3 | elixir(function(mix) { 4 | // 5 | }); 6 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "devDependencies": { 4 | "gulp": "^3.8.8", 5 | "laravel-elixir": "^4.0.0", 6 | "nightwatch": "^0.8.9" 7 | }, 8 | "dependencies": { 9 | "phantomjs": "^2.1.3" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- 1 | suites: 2 | cms: 3 | namespace: Flashtag\Cms 4 | psr4_prefix: Flashtag\Cms 5 | src_path: app 6 | spec_path: tests 7 | api: 8 | namespace: Flashtag\Api 9 | psr4_prefix: Flashtag\Api 10 | src_path: vendor/flashtag/api/src 11 | spec_path: tests/api 12 | 13 | extensions: 14 | - PhpSpec\Laravel\Extension\LaravelExtension 15 | 16 | formatter.name: pretty 17 | -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- 1 | 2 | 3 | Options -MultiViews 4 | 5 | 6 | RewriteEngine On 7 | 8 | # Redirect Trailing Slashes If Not A Folder... 9 | RewriteCond %{REQUEST_FILENAME} !-d 10 | RewriteRule ^(.*)/$ /$1 [L,R=301] 11 | 12 | # Handle Front Controller... 13 | RewriteCond %{REQUEST_FILENAME} !-d 14 | RewriteCond %{REQUEST_FILENAME} !-f 15 | RewriteRule ^ index.php [L] 16 | 17 | -------------------------------------------------------------------------------- /public/assets/admin: -------------------------------------------------------------------------------- 1 | ../../app/Admin/public/build -------------------------------------------------------------------------------- /public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/about-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/about-bg.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/contact-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/contact-bg.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/header.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/home-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/home-bg.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/1.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/2.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/3.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/4.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/5.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/portfolio/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/portfolio/6.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/post-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/post-bg.jpg -------------------------------------------------------------------------------- /public/assets/themes/clean-creative/img/post-sample-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/assets/themes/clean-creative/img/post-sample-image.jpg -------------------------------------------------------------------------------- /public/assets/vendor/admin: -------------------------------------------------------------------------------- 1 | ../../../app/Admin/public/vendor -------------------------------------------------------------------------------- /public/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | #00aba9 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /public/css/admin: -------------------------------------------------------------------------------- 1 | ../../app/Admin/public/build/css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/favicon.ico -------------------------------------------------------------------------------- /public/icons/android-chrome-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-144x144.png -------------------------------------------------------------------------------- /public/icons/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-192x192.png -------------------------------------------------------------------------------- /public/icons/android-chrome-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-36x36.png -------------------------------------------------------------------------------- /public/icons/android-chrome-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-48x48.png -------------------------------------------------------------------------------- /public/icons/android-chrome-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-72x72.png -------------------------------------------------------------------------------- /public/icons/android-chrome-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/android-chrome-96x96.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/icons/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/apple-touch-icon.png -------------------------------------------------------------------------------- /public/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/favicon-16x16.png -------------------------------------------------------------------------------- /public/icons/favicon-194x194.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/favicon-194x194.png -------------------------------------------------------------------------------- /public/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/favicon-32x32.png -------------------------------------------------------------------------------- /public/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/favicon-96x96.png -------------------------------------------------------------------------------- /public/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/mstile-144x144.png -------------------------------------------------------------------------------- /public/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/mstile-150x150.png -------------------------------------------------------------------------------- /public/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/mstile-310x150.png -------------------------------------------------------------------------------- /public/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/mstile-310x310.png -------------------------------------------------------------------------------- /public/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/public/icons/mstile-70x70.png -------------------------------------------------------------------------------- /public/images/media/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /public/js/admin: -------------------------------------------------------------------------------- 1 | ../../app/Admin/public/build/js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /resources/assets/js/admin: -------------------------------------------------------------------------------- 1 | ../../../app/Admin/resources/assets/js -------------------------------------------------------------------------------- /resources/assets/sass/admin: -------------------------------------------------------------------------------- 1 | ../../../app/Admin/resources/assets/sass -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | 3 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flashtag/development/13991cc8859ce20ee8bacc932bd397d3d88f3666/resources/views/vendor/.gitkeep -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | compiled.php 4 | services.json 5 | events.scanned.php 6 | routes.scanned.php 7 | down 8 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | --------------------------------------------------------------------------------