├── .gitignore ├── images ├── loader.gif └── white-bg-transparent.png ├── js ├── ckeditor │ ├── samples │ │ ├── assets │ │ │ ├── sample.css │ │ │ ├── sample.jpg │ │ │ ├── inlineall │ │ │ │ └── logo.png │ │ │ ├── uilanguages │ │ │ │ └── languages.js │ │ │ ├── posteddata.php │ │ │ └── outputxhtml │ │ │ │ └── outputxhtml.css │ │ ├── plugins │ │ │ ├── htmlwriter │ │ │ │ └── assets │ │ │ │ │ └── outputforflash │ │ │ │ │ ├── outputforflash.fla │ │ │ │ │ └── outputforflash.swf │ │ │ └── dialog │ │ │ │ └── assets │ │ │ │ └── my_dialog.js │ │ ├── sample_posteddata.php │ │ ├── sample.js │ │ ├── appendto.html │ │ ├── tabindex.html │ │ ├── uicolor.html │ │ ├── ajax.html │ │ └── readonly.html │ ├── plugins │ │ ├── icons.png │ │ ├── icons_hidpi.png │ │ ├── link │ │ │ ├── images │ │ │ │ ├── anchor.png │ │ │ │ └── hidpi │ │ │ │ │ └── anchor.png │ │ │ └── dialogs │ │ │ │ └── anchor.js │ │ ├── image │ │ │ └── images │ │ │ │ └── noimage.png │ │ ├── magicline │ │ │ └── images │ │ │ │ ├── icon.png │ │ │ │ └── hidpi │ │ │ │ └── icon.png │ │ ├── about │ │ │ └── dialogs │ │ │ │ ├── logo_ckeditor.png │ │ │ │ ├── hidpi │ │ │ │ └── logo_ckeditor.png │ │ │ │ └── about.js │ │ ├── fakeobjects │ │ │ └── images │ │ │ │ └── spacer.gif │ │ ├── dialog │ │ │ └── dialogDefinition.js │ │ ├── specialchar │ │ │ └── dialogs │ │ │ │ └── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── ja.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── fr-ca.js │ │ ├── a11yhelp │ │ │ └── dialogs │ │ │ │ ├── lang │ │ │ │ ├── _translationstatus.txt │ │ │ │ ├── zh-cn.js │ │ │ │ ├── ja.js │ │ │ │ ├── si.js │ │ │ │ ├── he.js │ │ │ │ ├── ko.js │ │ │ │ ├── gu.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── id.js │ │ │ │ ├── km.js │ │ │ │ ├── en.js │ │ │ │ ├── hi.js │ │ │ │ ├── mn.js │ │ │ │ ├── sr.js │ │ │ │ ├── da.js │ │ │ │ ├── et.js │ │ │ │ ├── lt.js │ │ │ │ ├── sr-latn.js │ │ │ │ ├── ro.js │ │ │ │ ├── th.js │ │ │ │ ├── mk.js │ │ │ │ ├── sq.js │ │ │ │ ├── hr.js │ │ │ │ ├── fa.js │ │ │ │ ├── no.js │ │ │ │ ├── nb.js │ │ │ │ ├── tr.js │ │ │ │ ├── sv.js │ │ │ │ ├── ru.js │ │ │ │ ├── uk.js │ │ │ │ ├── cs.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── cy.js │ │ │ │ ├── fi.js │ │ │ │ ├── gl.js │ │ │ │ ├── ug.js │ │ │ │ ├── vi.js │ │ │ │ ├── ku.js │ │ │ │ ├── de.js │ │ │ │ ├── hu.js │ │ │ │ ├── nl.js │ │ │ │ ├── ca.js │ │ │ │ ├── sl.js │ │ │ │ ├── pl.js │ │ │ │ └── sk.js │ │ │ │ └── a11yhelp.js │ │ ├── scayt │ │ │ ├── README.md │ │ │ ├── LICENSE.md │ │ │ └── dialogs │ │ │ │ └── toolbar.css │ │ └── wsc │ │ │ ├── README.md │ │ │ ├── LICENSE.md │ │ │ └── dialogs │ │ │ ├── wsc.css │ │ │ ├── ciframe.html │ │ │ ├── tmpFrameset.html │ │ │ └── wsc_ie.js │ ├── skins │ │ └── moono │ │ │ ├── icons.png │ │ │ ├── icons_hidpi.png │ │ │ ├── images │ │ │ ├── arrow.png │ │ │ ├── close.png │ │ │ ├── lock.png │ │ │ ├── refresh.png │ │ │ ├── hidpi │ │ │ │ ├── close.png │ │ │ │ ├── lock.png │ │ │ │ ├── refresh.png │ │ │ │ └── lock-open.png │ │ │ └── lock-open.png │ │ │ └── readme.md │ ├── README.md │ ├── config.js │ ├── contents.css │ ├── adapters │ │ └── jquery.js │ └── build-config.js ├── main.js ├── views │ ├── modal.js │ ├── frame-preview.js │ └── core.js ├── models │ └── core.js └── app.js ├── README.md ├── composer.json ├── post-customizer.php ├── css ├── post-customizer-frame-preview.css └── post-customizer.css ├── LICENSE └── readme.txt /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | .idea 3 | -------------------------------------------------------------------------------- /images/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/images/loader.gif -------------------------------------------------------------------------------- /js/ckeditor/samples/assets/sample.css: -------------------------------------------------------------------------------- 1 | /** 2 | * Required by tests (dom/document.html). 3 | */ 4 | -------------------------------------------------------------------------------- /images/white-bg-transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/images/white-bg-transparent.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/icons.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/icons.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/icons_hidpi.png -------------------------------------------------------------------------------- /js/ckeditor/samples/assets/sample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/samples/assets/sample.jpg -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/icons_hidpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/icons_hidpi.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/arrow.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/close.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/lock.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/link/images/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/link/images/anchor.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/refresh.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/image/images/noimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/image/images/noimage.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/magicline/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/magicline/images/icon.png -------------------------------------------------------------------------------- /js/ckeditor/samples/assets/inlineall/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/samples/assets/inlineall/logo.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/hidpi/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/hidpi/close.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/hidpi/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/hidpi/lock.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/lock-open.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/link/images/hidpi/anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/link/images/hidpi/anchor.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/hidpi/refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/hidpi/refresh.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/about/dialogs/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/about/dialogs/logo_ckeditor.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/fakeobjects/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/fakeobjects/images/spacer.gif -------------------------------------------------------------------------------- /js/ckeditor/plugins/magicline/images/hidpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/magicline/images/hidpi/icon.png -------------------------------------------------------------------------------- /js/ckeditor/skins/moono/images/hidpi/lock-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/skins/moono/images/hidpi/lock-open.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png -------------------------------------------------------------------------------- /js/ckeditor/plugins/dialog/dialogDefinition.js: -------------------------------------------------------------------------------- 1 | /* 2 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 3 | For licensing, see LICENSE.md or http://ckeditor.com/license 4 | */ 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # General 2 | 3 | A WordPress plugin to enhance the post editor preview. 4 | 5 | ## Links 6 | 7 | [Parade](https://github.com/parade/customizer-demo) - An example of customizer code hacks from @darinkotter. -------------------------------------------------------------------------------- /js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.fla -------------------------------------------------------------------------------- /js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/10up/Post-Customizer/HEAD/js/ckeditor/samples/plugins/htmlwriter/assets/outputforflash/outputforflash.swf -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name" : "10up/post-customizer", 3 | "description": "!magic", 4 | "license" : "MIT", 5 | "require" : {}, 6 | "autoload" : { 7 | "psr-0": { 8 | "Customizer\\": "classes/", 9 | "Post_Customizer\\" : "classes/" 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /post-customizer.php: -------------------------------------------------------------------------------- 1 | ' ); 17 | this.$el.html( $previewFrame ); 18 | this.model.set( { '$previewFrame' : $previewFrame } ); 19 | }, 20 | 21 | close : function() { 22 | this.remove(); 23 | } 24 | 25 | } ); 26 | 27 | } )( window, Backbone, jQuery, _, Post_Customizer ); -------------------------------------------------------------------------------- /js/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 2 | For licensing, see LICENSE.md or http://ckeditor.com/license 3 | 4 | cs.js Found: 118 Missing: 0 5 | cy.js Found: 118 Missing: 0 6 | de.js Found: 118 Missing: 0 7 | el.js Found: 16 Missing: 102 8 | eo.js Found: 118 Missing: 0 9 | et.js Found: 31 Missing: 87 10 | fa.js Found: 24 Missing: 94 11 | fi.js Found: 23 Missing: 95 12 | fr.js Found: 118 Missing: 0 13 | hr.js Found: 23 Missing: 95 14 | it.js Found: 118 Missing: 0 15 | nb.js Found: 118 Missing: 0 16 | nl.js Found: 118 Missing: 0 17 | no.js Found: 118 Missing: 0 18 | tr.js Found: 118 Missing: 0 19 | ug.js Found: 39 Missing: 79 20 | zh-cn.js Found: 118 Missing: 0 21 | -------------------------------------------------------------------------------- /js/ckeditor/samples/sample_posteddata.php: -------------------------------------------------------------------------------- 1 |
2 | 3 | ------------------------------------------------------------------------------------------- 4 | CKEditor - Posted Data 5 | 6 | We are sorry, but your Web server does not support the PHP language used in this script. 7 | 8 | Please note that CKEditor can be used with any other server-side language than just PHP. 9 | To save the content created with CKEditor you need to read the POST data on the server 10 | side and write it to a file or the database. 11 | 12 | Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved. 13 | For licensing, see LICENSE.md or http://ckeditor.com/license 14 | ------------------------------------------------------------------------------------------- 15 | 16 |