Esites_Editor - Version 0.6.2

Version Notes

This release fixes two issues;

1. not being able to resize/maximize the TinyMCE popup dialog;
2. the E-sites symbol in the System > Configuration being served via http causing errors when using https

The GitHub repo can be found at: https://github.com/e-sites/magento-advanced-code-editor

Download this release

Release Info

Developer Boye Oomens
Extension Esites_Editor
Version 0.6.2
Comparing to
See all releases


Code changes from version 0.6.1 to 0.6.2

app/code/community/Esites/.DS_Store ADDED
Binary file
app/code/community/Esites/Editor/.DS_Store ADDED
Binary file
app/code/community/Esites/Editor/Model/.DS_Store ADDED
Binary file
app/code/community/Esites/Editor/Model/System/.DS_Store ADDED
Binary file
app/code/community/Esites/Editor/Model/System/Config/.DS_Store ADDED
Binary file
app/code/community/Esites/Editor/etc/config.xml CHANGED
@@ -22,7 +22,7 @@
22
  <config>
23
  <modules>
24
  <Esites_Editor>
25
- <version>0.6.1</version>
26
  </Esites_Editor>
27
  </modules>
28
 
@@ -50,7 +50,7 @@
50
  <enabled>0</enabled>
51
  <enableFrontend>0</enableFrontend>
52
  <sections>wysiwygpage_content</sections>
53
- <selectors></selectors>
54
  </general>
55
  <prefs>
56
  <keymap>default</keymap>
22
  <config>
23
  <modules>
24
  <Esites_Editor>
25
+ <version>0.6.2</version>
26
  </Esites_Editor>
27
  </modules>
28
 
50
  <enabled>0</enabled>
51
  <enableFrontend>0</enableFrontend>
52
  <sections>wysiwygpage_content</sections>
53
+ <selectors>#template_text</selectors>
54
  </general>
55
  <prefs>
56
  <keymap>default</keymap>
app/code/community/Esites/Editor/etc/system.xml CHANGED
@@ -22,7 +22,7 @@
22
  <config>
23
  <tabs>
24
  <esites translate="label" module="editor">
25
- <label><![CDATA[<img width="14" style="vertical-align:middle;display:inline-block;" src="http://frontend.e-sites.nl/img/esites-symbol.png" alt="" border="0"> E-sites]]></label>
26
  <sort_order>1000</sort_order>
27
  </esites>
28
  </tabs>
22
  <config>
23
  <tabs>
24
  <esites translate="label" module="editor">
25
+ <label><![CDATA[<img width="14" style="vertical-align:middle;display:inline-block;" src="https://static.e-sites.nl/magento/esites-symbol.png" alt="E-sites Caribbean" border="0"> E-sites]]></label>
26
  <sort_order>1000</sort_order>
27
  </esites>
28
  </tabs>
app/design/adminhtml/default/default/layout/esites_editor.xml DELETED
@@ -1,43 +0,0 @@
1
- <?xml version="1.0"?>
2
- <!--
3
- /**
4
- * Magento
5
- *
6
- * NOTICE OF LICENSE
7
- *
8
- * This source file is subject to the Open Software License (OSL 3.0)
9
- * that is bundled with this package in the file LICENSE.txt.
10
- * It is also available through the world-wide-web at this URL:
11
- * http://opensource.org/licenses/osl-3.0.php
12
- * If you did not receive a copy of the license and are unable to
13
- * obtain it through the world-wide-web, please send an email
14
- * to license@magentocommerce.com so we can send you a copy immediately.
15
- *
16
- * @category Esites
17
- * @package Esites_Editor
18
- * @copyright Copyright (c) 2015 E-sites (http://www.e-sites.nl)
19
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
20
- */
21
- -->
22
- <layout>
23
- <default>
24
- <reference name="root">
25
- <block type="editor/standalone" name="standalone" template="esites_editor/standalone.phtml"></block>
26
- </reference>
27
- <reference name="head">
28
- <action method="addItem" ifconfig="editor/general/enabled">
29
- <type>js_css</type>
30
- <name>esites_editor/dist/js/vendor/codemirror/lib/codemirror.css</name>
31
- </action>
32
- <action method="addItem" ifconfig="editor/general/enabled">
33
- <type>js_css</type>
34
- <name>esites_editor/dist/css/styles.css</name>
35
- </action>
36
- </reference>
37
- <reference name="notifications">
38
- <action method="append" ifconfig="editor/general/enabled">
39
- <block>standalone</block>
40
- </action>
41
- </reference>
42
- </default>
43
- </layout>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/adminhtml/default/default/template/esites_editor/standalone.phtml DELETED
@@ -1,41 +0,0 @@
1
- <?php
2
- /**
3
- * Magento
4
- *
5
- * NOTICE OF LICENSE
6
- *
7
- * This source file is subject to the Open Software License (OSL 3.0)
8
- * that is bundled with this package in the file LICENSE.txt.
9
- * It is also available through the world-wide-web at this URL:
10
- * http://opensource.org/licenses/osl-3.0.php
11
- * If you did not receive a copy of the license and are unable to
12
- * obtain it through the world-wide-web, please send an email
13
- * to license@magentocommerce.com so we can send you a copy immediately.
14
- *
15
- * @category Esites
16
- * @package Esites_Editor
17
- * @copyright Copyright (c) 2015 E-sites (http://www.e-sites.nl)
18
- * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
19
- */
20
- ?>
21
-
22
- <script src="<?php echo Mage::getBaseUrl('js');?>esites_editor/dist/js/vendor/requirejs/require.js"></script>
23
- <script>
24
- (function (window) {
25
- var esites_editor = {
26
- instances: [],
27
- version: '<?php echo Mage::helper('editor')->getExtensionVersion(); ?>',
28
- settings: <?php echo json_encode($this->getEditorConfig()); ?>,
29
- init: function () {
30
- requirejs(['<?php echo Mage::getBaseUrl('js');?>esites_editor/dist/js/app.js']);
31
- }
32
- };
33
-
34
- Ajax.Responders.register({
35
- onComplete: esites_editor.init
36
- });
37
-
38
- window.onload = setTimeout(esites_editor.init, 1000);
39
- window.esites_editor = esites_editor;
40
- }(this));
41
- </script>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
app/design/frontend/base/default/template/esites_editor/standalone.phtml CHANGED
@@ -19,7 +19,7 @@
19
  */
20
  ?>
21
 
22
- <script src="<?php echo Mage::getBaseUrl('js');?>js/esites_editor/dist/js/vendor/requirejs/require.js"></script>
23
  <script>
24
  (function (window) {
25
  var doc = window.document,
@@ -28,7 +28,7 @@
28
  version: '<?php echo Mage::helper('editor')->getExtensionVersion(); ?>',
29
  settings: <?php echo json_encode($this->getEditorConfig()); ?>,
30
  init: function () {
31
- requirejs(['<?php echo Mage::getBaseUrl('js');?>js/esites_editor/dist/js/app.js']);
32
  }
33
  };
34
 
19
  */
20
  ?>
21
 
22
+ <script src="/js/esites_editor/dist/js/vendor/requirejs/require.js"></script>
23
  <script>
24
  (function (window) {
25
  var doc = window.document,
28
  version: '<?php echo Mage::helper('editor')->getExtensionVersion(); ?>',
29
  settings: <?php echo json_encode($this->getEditorConfig()); ?>,
30
  init: function () {
31
+ requirejs(['/js/esites_editor/dist/js/app.js']);
32
  }
33
  };
34
 
js/esites_editor/.DS_Store ADDED
Binary file
js/esites_editor/dist/.DS_Store ADDED
Binary file
js/esites_editor/dist/js/.DS_Store ADDED
Binary file
js/esites_editor/dist/js/app/module/dialog.js CHANGED
@@ -1 +1 @@
1
- define(["../var/tinymcePopup","../var/targets","./util"],function(tinyMCEPopup,targets,util){"use strict";var dialog={prepare:function(editor){editor.setSize(null,tinyMCEPopup.dom.getViewPort(window).h-65);dialog.setEvents(editor)},setEvents:function(editor){tinymce.DOM.bind(window,"resize",dialog.resize);tinymce.DOM.bind(util.getElem("form-editor"),"submit",util.proxy(dialog.save,editor));tinymce.DOM.bind(util.getElem("cancel"),"click",dialog.close)},resize:function(){var vp=tinyMCEPopup.dom.getViewPort(window);tinyMCEPopup.resizeToInnerSize();targets&&util.forEach(targets,function(textarea){textarea.style.height=vp.h-65+"px"})},close:function(){tinyMCEPopup.close();return!1},save:function(){tinyMCEPopup.editor.setContent(this.getValue(),{source_view:!0});tinyMCEPopup.close();return!1}};return tinyMCEPopup?dialog:null});
1
+ define(["../var/tinymcePopup","../var/targets","./util"],function(tinyMCEPopup,targets,util){"use strict";var dialog={prepare:function(editor){editor.setSize(null,tinyMCEPopup.dom.getViewPort(window).h-65);dialog.setEvents(editor)},setEvents:function(editor){tinymce.DOM.bind(window,"resize",dialog.resize);tinymce.DOM.bind(util.getElem("form-editor"),"submit",util.proxy(dialog.save,editor));tinymce.DOM.bind(util.getElem("cancel"),"click",dialog.close)},resize:function(){var vp=tinyMCEPopup.dom.getViewPort(window);targets&&util.forEach(targets,function(textarea){textarea.style.height=vp.h-65+"px"})},close:function(){tinyMCEPopup.close();return!1},save:function(){tinyMCEPopup.editor.setContent(this.getValue(),{source_view:!0});tinyMCEPopup.close();return!1}};return tinyMCEPopup?dialog:null});
js/esites_editor/dist/js/app/var/targets.js CHANGED
@@ -1 +1 @@
1
- define(["../module/util","./plugin"],function(util,plugin){"use strict";var targets=["#htmlSource","#template_text"];util.isArray(plugin.settings.selectors)&&(targets=targets.concat(plugin.settings.selectors));return document.querySelectorAll(targets.join())});
1
+ define(["../module/util","./plugin"],function(util,plugin){"use strict";var targets=["#htmlSource"];util.isArray(plugin.settings.selectors)&&(targets=targets.concat(plugin.settings.selectors));return document.querySelectorAll(targets.join())});
js/tiny_mce/plugins/esites_editor/.DS_Store ADDED
Binary file
js/tiny_mce/plugins/esites_editor/esites_editor_plugin_src.js CHANGED
@@ -3,7 +3,7 @@
3
  * This is the TinyMCE plugin of the Magento extension that incorporates the CodeMirror library
4
  *
5
  * @author : Boye Oomens <boye@e-sites.nl>
6
- * @version : 0.6.1
7
  * @license : OSL 3.0
8
  * @see : https://github.com/e-sites/magento-advanced-html-editor
9
  * @see : http://codemirror.net/
3
  * This is the TinyMCE plugin of the Magento extension that incorporates the CodeMirror library
4
  *
5
  * @author : Boye Oomens <boye@e-sites.nl>
6
+ * @version : 0.6.2
7
  * @license : OSL 3.0
8
  * @see : https://github.com/e-sites/magento-advanced-html-editor
9
  * @see : http://codemirror.net/
package.xml CHANGED
@@ -1,26 +1,23 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Esites_Editor</name>
4
- <version>0.6.1</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>An advanced code editor that'll make it much easier to write clean markup for CMS pages, static blocks, product pages and Transactional Emails.</summary>
10
- <description>If you're familiar with Magento and you've spent some time working with CMS pages and static blocks, you'll know that producing clean semantic HTML markup with the TinyMCE editor can be quite a hassle. Especially when fiddling around in the &amp;quot;design view&amp;quot; it'll often result in invalid or unwanted HTML.&#xD;
 
11
  &#xD;
12
- Of course you can open up the default source editor and go from there. But you probably know that this will not be very pleasant as well, the code looks like a big bowl of tag soup and editing it can give you a real headache.&#xD;
13
- &#xD;
14
- This extension offers both a standalone editor as well as a plugin for Magento's WYSIWYG editor and is similar to your favorite IDE. It offers a lot of great features that will not only save you quite a bit of time but also makes editing code a lot easier.</description>
15
- <notes>As of this version the JS resources are being loaded via the Magento base URL instead of always from root. This should fix several issues when running Magento from a subfolder.&#xD;
16
- &#xD;
17
- Also all npm dependencies are updated.&#xD;
18
  &#xD;
19
  The GitHub repo can be found at: https://github.com/e-sites/magento-advanced-code-editor</notes>
20
- <authors><author><name>Boye Oomens</name><user>Boye</user><email>mace@boye.io</email></author></authors>
21
- <date>2017-01-13</date>
22
- <time>13:46:22</time>
23
- <contents><target name="magecommunity"><dir name="Esites"><dir name="Editor"><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="3b6d54bb049419ef130c9bef2dc59f71"/></dir><file name="Standalone.php" hash="20626a0aa63add103a5b6c2c677068d3"/></dir><dir name="Helper"><file name="Data.php" hash="2c3c41e98ad792423858468cab4e72c8"/></dir><dir name="Model"><file name="Config.php" hash="1eaab7b9d466b2f5083e4590b208899e"/><file name="Observer.php" hash="e240c58023d2a803c0cda1c0f669ac81"/><dir name="Source"><file name="Status.php" hash="d39a6881e1dce9e85248414864ed81fc"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Indentunit"><file name="Values.php" hash="6201a40c6cf6ff70a945d1f14e8a0c1c"/></dir><dir name="Keymap"><file name="Values.php" hash="439483ce69cbca9dd47265dcae8e14b2"/></dir><dir name="Scrollbars"><file name="Values.php" hash="7ebd442a08469b5a676a97692b93c96f"/></dir><dir name="Sections"><file name="Values.php" hash="ecc683806bfd751925df2adff0eec72c"/></dir><dir name="Theme"><file name="Values.php" hash="6fc5f56281d2a4f9a4b66b8ea46f745d"/></dir></dir></dir></dir></dir><dir name="etc"><file name="config.xml" hash="9c7f9398060177ec31e00a09fa31a462"/><file name="system.xml" hash="d83af7b70ed4978d3ea1140de5679201"/></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Esites_Editor.xml" hash="71f3494666fd734e43eae430a4de79b5"/></dir></target><target name="mageweb"><dir name="js"><dir name="tiny_mce"><dir name="plugins"><dir name="esites_editor"><dir name="css"><file name="styles.min-5fc98613.css" hash="5fc98613fb5b2226de87dbfe407f5d7d"/></dir><file name="esites_editor.html" hash="2888b49d699d300293e959e2f1d00990"/><file name="esites_editor_plugin.js" hash="327298e7be6eb930048ad2f116ce9ade"/><file name="esites_editor_plugin_src.js" hash="a9d4495a6bb59bae012e440ab41ba7dd"/><dir name="img"><file name="icon-esites-editor.png" hash="44c722d1cfa0465a94d0244583240812"/></dir><dir name="js"><file name="require.min-9b98df45.js" hash="9b98df453659b401c2326720b72ae449"/></dir><dir name="langs"><file name="en.js" hash="a2c57cb6a344c19bbcfc13e45bc97906"/></dir></dir></dir></dir><dir name="esites_editor"><dir name="dist"><dir name="css"><file name="styles.css" hash="fc545b4567f76a222472e681b0caa272"/></dir><dir name="js"><dir name="app"><file name="main.js" hash="dbdc5766dda6d9d12ff83df0196f97e8"/><dir name="module"><file name="code.js" hash="78ee1d4ec78c46542e28ea7c6487a1f9"/><file name="dialog.js" hash="f937badb8927ce6ea5797c57e35be97b"/><file name="editor.js" hash="3f24fc993276e677164d7a24b3a89e3f"/><file name="setup.js" hash="0965d950770ded3fa3f873f342ecd917"/><file name="standalone.js" hash="f459db33e92f130216effdfe67fe0ad5"/><file name="util.js" hash="ae06b70f8bb6aa4b3efd8e1e174aeabf"/></dir><dir name="var"><file name="addons.js" hash="d10f40d6a25b81ef9bb7351f65e44de6"/><file name="cmOptions.js" hash="9ab75f2ba06f1f6e4caec3bf0bb0539e"/><file name="deps.js" hash="26a6e08b8bd29982bdf757a92e79790d"/><file name="plugin.js" hash="cdaff0e3525fff98f35584f44e375d57"/><file name="targets.js" hash="6aed00abcab39cc1cf803881912eb498"/><file name="tinymcePopup.js" hash="ea543a1cfb4bc3525468ee853428de0f"/></dir></dir><file name="app.js" hash="e346b8c76f13377cbdb19194f5213bba"/><dir name="vendor"><dir name="codemirror"><dir name="addon"><dir name="comment"><file name="comment.js" hash="81c416b8cc05722bbbc9a7ddea97df17"/><file name="continuecomment.js" hash="2bad52d5a0b57d8f43e0e5b90bb25725"/></dir><dir name="dialog"><file name="dialog.css" hash="c89dce10b44d2882a024e7befc2b63f5"/><file name="dialog.js" hash="eb78922db190627d63be39f54b6ae864"/></dir><dir name="display"><file name="autorefresh.js" hash="5acf6d9221a489bbd0a1d5868eeeaa6f"/><file name="fullscreen.css" hash="1a278e72b51528270f8ce9ec991929a1"/><file name="fullscreen.js" hash="fb86184c4fb36398188f2199fd28f167"/><file name="panel.js" hash="56e9558f431d1dffd85bf18ff2c9cd8d"/><file name="placeholder.js" hash="d11008c6283fa41c5aab8cd99ac78975"/><file name="rulers.js" hash="b7b0336f541e6ac15dcb947747272649"/></dir><dir name="edit"><file name="closebrackets.js" hash="75d8bcca433c3b159b7a72e68dbfe77a"/><file name="closetag.js" hash="c85e0e28f335f2e00c993ae90cee18a2"/><file name="continuelist.js" hash="05853f99c7e4e876e088bdb324bfff05"/><file name="matchbrackets.js" hash="ff2cddd87704d84e74cf17ce4fd7412c"/><file name="matchtags.js" hash="545127ffedea5d77c0f68c809c75c5b6"/><file name="trailingspace.js" hash="650f095b187881451b0166d16ffd4091"/></dir><dir name="fold"><file name="brace-fold.js" hash="bd226b8d646b0f399cff4d6fe275def7"/><file name="comment-fold.js" hash="bb08b51b3815da3fba204c05b479adb9"/><file name="foldcode.js" hash="a945047e91e2fee0cf56c22a2267b962"/><file name="foldgutter.css" hash="38bb68770b6f7ebaa7adea770a68e0b1"/><file name="foldgutter.js" hash="8675f6ec5a5f2ebc9e883d3033d84c53"/><file name="indent-fold.js" hash="b17f35bdd388f737113271b9e9070ea3"/><file name="markdown-fold.js" hash="c8783b56c820030045a57f291660ea20"/><file name="xml-fold.js" hash="bdef52c25c01a17a9926b5f95b9af0a0"/></dir><dir name="hint"><file name="anyword-hint.js" hash="6b1df80699158516007e9172861f5ba3"/><file name="css-hint.js" hash="0331f17931864c79688b80c3a8fcf0bf"/><file name="html-hint.js" hash="6b398a6ef3473b9f889092495fcc1545"/><file name="javascript-hint.js" hash="d5eb02a2d03165940777908d255aa197"/><file name="show-hint.css" hash="49647712414ff96d5846de9736b5dbd3"/><file name="show-hint.js" hash="4e448e0421b3dc995b93d13f72aac699"/><file name="sql-hint.js" hash="a8755b5a6dc627d6cf3ef872feebc0f2"/><file name="xml-hint.js" hash="21d019d58516804262957d8879576908"/></dir><dir name="lint"><file name="coffeescript-lint.js" hash="a867c61ab04b4309206ba371bdde9fb7"/><file name="css-lint.js" hash="fd09f81d97cf3eb681cc5742d76ec47f"/><file name="html-lint.js" hash="ebc76e3d7446c73104fae7d143261a9e"/><file name="javascript-lint.js" hash="5576a5092afdae4e7990abcbc92d0425"/><file name="json-lint.js" hash="49afe4d1a791c115de21553c28f1a6cf"/><file name="lint.css" hash="80cbf240f7114fb23e506da29cced118"/><file name="lint.js" hash="449ffad2f31391d11da4c105d7e5d85b"/><file name="yaml-lint.js" hash="117815f724aa2c3d671801ccedaa86ac"/></dir><dir name="merge"><file name="merge.css" hash="5f8663128b0643bdca32ae2ad8867a8a"/><file name="merge.js" hash="d8715e01d09d5eaca98aefc17989a449"/></dir><dir name="mode"><file name="loadmode.js" hash="bc3c29fecceff0785b086b6e1c6f6b7c"/><file name="multiplex.js" hash="5bd0e78901200adb66a095501bffe61a"/><file name="multiplex_test.js" hash="f517110cde96b5b4356557a7792fdcf3"/><file name="overlay.js" hash="b2d7759410db36e8c1026885ebe8d049"/><file name="simple.js" hash="aebf64be9a16aa3dfe45ab91b5b0b588"/></dir><dir name="runmode"><file name="colorize.js" hash="b0d93d54ee9bf76b246ea7cae39d6e75"/><file name="runmode-standalone.js" hash="54b1bc5448bbdfb53fdb3cbdc6740ef7"/><file name="runmode.js" hash="44916ba81dd868098922bdb8e6874e80"/><file name="runmode.node.js" hash="c9af1698167e3de82a5e590e6ae23a73"/></dir><dir name="scroll"><file name="annotatescrollbar.js" hash="7206739f16151e2b54468fc9b8cea190"/><file name="scrollpastend.js" hash="dd498d1011533a64c7a261650f2353ad"/><file name="simplescrollbars.css" hash="0352ba51fd6a422fe6cc44925e33ad88"/><file name="simplescrollbars.js" hash="91e30237f38bae3be7e7fd7ba3811e73"/></dir><dir name="search"><file name="jump-to-line.js" hash="3299737b0d8205f1e67d112de17a9b2d"/><file name="match-highlighter.js" hash="df67b0f13a4a51bf2698bbd9db34932d"/><file name="matchesonscrollbar.css" hash="00ea2770c568a848190bcf52e4241276"/><file name="matchesonscrollbar.js" hash="2cece6de1e3ad73489c170c8f08dd561"/><file name="search.js" hash="47bb6b424f284d63de461aad385cdc10"/><file name="searchcursor.js" hash="a11e9186f471515209a5583f1af6421c"/></dir><dir name="selection"><file name="active-line.js" hash="0e6cca20bb8c12104de8ff1196a27c32"/><file name="mark-selection.js" hash="49df440e41a6f54264bce4f7ed7d7d05"/><file name="selection-pointer.js" hash="394ed7c792ed1954c6473d72e17156f9"/></dir><dir name="tern"><file name="tern.css" hash="4d57ced774b5f3fa9f00dfa398e74819"/><file name="tern.js" hash="6f74c41f96a1d701c0a3907301aa06ff"/><file name="worker.js" hash="d6b55f3e776aafc6b1d1cd5bdf148e1d"/></dir><dir name="wrap"><file name="hardwrap.js" hash="a1103add37b83a87beed7e758900e499"/></dir></dir><dir name="keymap"><file name="emacs.js" hash="3d9f0765769ccc81290932022245dd4b"/><file name="sublime.js" hash="99f5a3d9534c2b611cf7e4aa12dbef42"/><file name="vim.js" hash="168573c0aa4da46b9e41f035323e5b22"/></dir><dir name="lib"><file name="codemirror.css" hash="8f7b89ce4a081ff5cffb913419ca4ee6"/><file name="codemirror.js" hash="32159b543418abb9b9b287447979bd54"/></dir><dir name="mode"><dir name="css"><file name="css.js" hash="4426f88baf2cc524c78002bff31cd632"/></dir><dir name="handlebars"><file name="handlebars.js" hash="1e3a1d4cc25ce95190b4718ca12707c8"/></dir><dir name="htmlmixed"><file name="htmlmixed.js" hash="ed66680cecddc99b53e67d3e0a0d6348"/></dir><dir name="javascript"><file name="javascript.js" hash="8d71f6d147cc2651043cfa57265f6801"/></dir><dir name="xml"><file name="xml.js" hash="d79787a62c1a9dc8c9218a0ae330a682"/></dir></dir><dir name="theme"><file name="3024-day.css" hash="2b259ecd423f3ce94a722c1f5d46a31f"/><file name="3024-night.css" hash="ab94fd59ab96fb1aa3e81dfddb6987cb"/><file name="abcdef.css" hash="a8ccb14d4be49cf68affcf33b77fce3f"/><file name="ambiance-mobile.css" hash="75d6e3e84df3d2d0fd6263587900a9f2"/><file name="ambiance.css" hash="df554079ab89352e7b407f9db17d50fd"/><file name="base16-dark.css" hash="fdae4f313cca84cf7867d7695a809e97"/><file name="base16-light.css" hash="75b47de25ea8faf2f9dd6db40a579c35"/><file name="bespin.css" hash="0d4911d305080973de85c044584806aa"/><file name="blackboard.css" hash="022d790d189e391efa1fcb4e1ce4b7ca"/><file name="cobalt.css" hash="523b38d22f2e0c0ce166576a16ca0281"/><file name="colorforth.css" hash="ba27b85d9a988cdc24ddbe56bce9eb07"/><file name="dracula.css" hash="23de0c29e72670501af38b8c38316b3c"/><file name="duotone-dark.css" hash="707375e0fcfcb45d0e138f88836e6ef9"/><file name="duotone-light.css" hash="15d6b95a76b6be21e57436c5af187d92"/><file name="eclipse.css" hash="314ec24dd09cb97222a2535ed7715f0b"/><file name="elegant.css" hash="f0f6623f96dfbe7860b8d6afd44498a0"/><file name="erlang-dark.css" hash="3ff34e94c01ce38a26e3e174ad642001"/><file name="hopscotch.css" hash="e530e187dbe39f12c778029895175d93"/><file name="icecoder.css" hash="614dcba65fd0fb1844cca326530d71a9"/><file name="isotope.css" hash="22e3d07dc710ca1fc6809459623cd1bd"/><file name="lesser-dark.css" hash="b73404c4e3a2a3b9481157ebd2d76610"/><file name="liquibyte.css" hash="63a5489eb042bc4d8611cd88fa8acab1"/><file name="material.css" hash="3ae7b0981901f96974b874dba203bf23"/><file name="mbo.css" hash="dd64e520b08ca240cd316d34b0fb4954"/><file name="mdn-like.css" hash="ded52290c03f1c2e978e266d7d971178"/><file name="midnight.css" hash="bdce9536d0e57a463c54450600e48b13"/><file name="monokai.css" hash="cf7bc36167d46b635350c303b393505d"/><file name="neat.css" hash="23a5db706b96502df2c24d8114b47fe0"/><file name="neo.css" hash="e5206a0a0dd891c5fe3bccca068e47a7"/><file name="night.css" hash="d7ece6eff6e01835632b6ce8747c89ac"/><file name="panda-syntax.css" hash="979ba91dfb05cd500a32e03166863b3a"/><file name="paraiso-dark.css" hash="98ac9857e72bc2c18d1fb962e7234f03"/><file name="paraiso-light.css" hash="95830052862d184f7e4990608a9f4d61"/><file name="pastel-on-dark.css" hash="a027f9bd116ea8d167e90a5ad6b0b494"/><file name="railscasts.css" hash="51f1577ecaaae0cc532f1159eebfb564"/><file name="rubyblue.css" hash="86fe07d4c88d8e2c43a68120d5c148a8"/><file name="seti.css" hash="87435dbb891fa7b564c2342dbc201dd9"/><file name="solarized.css" hash="aba1610b405c6085511a4cb46e58462c"/><file name="the-matrix.css" hash="081300ef7d26e3ebdc986aeeab3df0f7"/><file name="tomorrow-night-bright.css" hash="c6a2d6679ec30cc81bdd7823a37639da"/><file name="tomorrow-night-eighties.css" hash="b9498f6b1a1c31f75b3f248a74b992df"/><file name="ttcn.css" hash="cbb49c6b4866a208097ab7ab38765495"/><file name="twilight.css" hash="75d129c0ba7b878c5322f8ba7f2f6009"/><file name="vibrant-ink.css" hash="95cb7e6fac9c22f53c08a071174606cc"/><file name="xq-dark.css" hash="8effe912f98ba011fad79d7d2d1e65ff"/><file name="xq-light.css" hash="ced9231fe2df68da3345089704488434"/><file name="yeti.css" hash="50184fc2a49072b496ddd54d68a7ed7b"/><file name="zenburn.css" hash="84fb6d3264fe6ebce7e76b3e916ea25a"/></dir></dir><dir name="emmet-codemirror"><dir name="dist"><file name="emmet.js" hash="834976e6840dc9bd82c4ab9bc15ccc37"/></dir></dir><dir name="gator"><file name="gator.min.js" hash="48fd3e7406621272562d640e1cf2c9c1"/></dir><dir name="htmlhint"><dir name="lib"><file name="htmlhint.js" hash="0d13ac516bd06a78e0aec51eacb28eba"/></dir></dir><dir name="js-beautify"><dir name="js"><dir name="lib"><file name="beautify-css.js" hash="f2ec042dabd1fadd31ad12d41df166ff"/><file name="beautify-html.js" hash="bc3a2710865321e5f53e11270b200a0e"/><file name="beautify.js" hash="4cc4dace80d2ef3677a1e89c69cb9322"/></dir></dir></dir><dir name="require-css"><file name="css.js" hash="ba3becc9467b6dbb264799be028a3d3c"/></dir><dir name="requirejs"><file name="require.js" hash="9b98df453659b401c2326720b72ae449"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Esites_Editor.csv" hash="8daece7277a99e5af1c72b591016c112"/></dir><dir name="nl_NL"><file name="Esites_Editor.csv" hash="817bd8de0a88b1223837dbc424ea9e6d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="esites_editor"><file name="standalone.phtml" hash="348c53ae9cd2c392d5fff02f212189b6"/></dir></dir><dir name="layout"><file name="esites_editor.xml" hash="e1dde00db3c7d436621a1b4ae21260f7"/></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="esites_editor"><file name="standalone.phtml" hash="4bb189f5a1f4e9ec368e7054f09c6d81"/></dir></dir><dir name="layout"><file name="esites_editor.xml" hash="ac7b19e4bd567a5ee551f918238a9666"/></dir></dir></dir></dir></target></contents>
24
  <compatible/>
25
  <dependencies><required><php><min>5.4.0</min><max>6.0.0</max></php></required></dependencies>
26
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Esites_Editor</name>
4
+ <version>0.6.2</version>
5
  <stability>stable</stability>
6
  <license>Open Software License (OSL)</license>
7
  <channel>community</channel>
8
  <extends/>
9
  <summary>An advanced code editor that'll make it much easier to write clean markup for CMS pages, static blocks, product pages and Transactional Emails.</summary>
10
+ <description>If you're familiar with Magento and you've spent some time working with CMS pages and static blocks, you'll know that producing clean semantic HTML markup with the TinyMCE editor can be quite a hassle. Especially when fiddling around in the "design view" it'll often result in invalid or unwanted HTML</description>
11
+ <notes>This release fixes two issues;&#xD;
12
  &#xD;
13
+ 1. not being able to resize/maximize the TinyMCE popup dialog;&#xD;
14
+ 2. the E-sites symbol in the System &gt; Configuration being served via http causing errors when using https&#xD;
 
 
 
 
15
  &#xD;
16
  The GitHub repo can be found at: https://github.com/e-sites/magento-advanced-code-editor</notes>
17
+ <authors><author><name>Boye Oomens</name><user>Boye</user><email>boomens@e-sites.net</email></author></authors>
18
+ <date>2017-04-10</date>
19
+ <time>18:18:10</time>
20
+ <contents><target name="magecommunity"><dir name="Esites"><dir name="Editor"><dir name="Block"><dir name="Adminhtml"><file name="Version.php" hash="3b6d54bb049419ef130c9bef2dc59f71"/></dir><file name="Standalone.php" hash="20626a0aa63add103a5b6c2c677068d3"/></dir><dir name="Helper"><file name="Data.php" hash="2c3c41e98ad792423858468cab4e72c8"/></dir><dir name="Model"><file name="Config.php" hash="1eaab7b9d466b2f5083e4590b208899e"/><file name="Observer.php" hash="e240c58023d2a803c0cda1c0f669ac81"/><dir name="Source"><file name="Status.php" hash="d39a6881e1dce9e85248414864ed81fc"/></dir><dir name="System"><dir name="Config"><dir name="Source"><dir name="Indentunit"><file name="Values.php" hash="6201a40c6cf6ff70a945d1f14e8a0c1c"/></dir><dir name="Keymap"><file name="Values.php" hash="439483ce69cbca9dd47265dcae8e14b2"/></dir><dir name="Scrollbars"><file name="Values.php" hash="7ebd442a08469b5a676a97692b93c96f"/></dir><dir name="Sections"><file name="Values.php" hash="ecc683806bfd751925df2adff0eec72c"/></dir><dir name="Theme"><file name="Values.php" hash="6fc5f56281d2a4f9a4b66b8ea46f745d"/></dir></dir><file name=".DS_Store" hash="59cf8488df94e391e3174fac8aa0a03b"/></dir><file name=".DS_Store" hash="4aac9e1db100b0a635d8555e76be07a3"/></dir><file name=".DS_Store" hash="135a71b4289e5b51db30444d77527f9c"/></dir><dir name="etc"><file name="config.xml" hash="b355a0a5d73e036be51e13f9b65cbf0c"/><file name="system.xml" hash="55d222404b78e100c06a2753a78336b1"/></dir><file name=".DS_Store" hash="da86d64fa85b9d77d1a6af384c6ffecd"/></dir><file name=".DS_Store" hash="b36473d33a70cb6c4b1876fa36a2199c"/></dir></target><target name="mageetc"><dir name="modules"><file name="Esites_Editor.xml" hash="71f3494666fd734e43eae430a4de79b5"/></dir></target><target name="mageweb"><dir name="js"><dir name="tiny_mce"><dir name="plugins"><dir name="esites_editor"><dir name="css"><file name="styles.min-5fc98613.css" hash="5fc98613fb5b2226de87dbfe407f5d7d"/></dir><file name="esites_editor.html" hash="2888b49d699d300293e959e2f1d00990"/><file name="esites_editor_plugin.js" hash="327298e7be6eb930048ad2f116ce9ade"/><file name="esites_editor_plugin_src.js" hash="473e9b408d4fa03ad841546c0c34f986"/><dir name="img"><file name="icon-esites-editor.png" hash="44c722d1cfa0465a94d0244583240812"/></dir><dir name="js"><file name="require.min-9b98df45.js" hash="9b98df453659b401c2326720b72ae449"/></dir><dir name="langs"><file name="en.js" hash="a2c57cb6a344c19bbcfc13e45bc97906"/></dir><file name=".DS_Store" hash="6fdd41b33eca613ee8c6559e0a7abf38"/></dir></dir></dir><dir name="esites_editor"><dir name="dist"><dir name="css"><file name="styles.css" hash="fc545b4567f76a222472e681b0caa272"/></dir><dir name="js"><dir name="app"><file name="main.js" hash="dbdc5766dda6d9d12ff83df0196f97e8"/><dir name="module"><file name="code.js" hash="78ee1d4ec78c46542e28ea7c6487a1f9"/><file name="dialog.js" hash="9909bc846a696fcd30fb31debc1c76ad"/><file name="editor.js" hash="3f24fc993276e677164d7a24b3a89e3f"/><file name="setup.js" hash="0965d950770ded3fa3f873f342ecd917"/><file name="standalone.js" hash="f459db33e92f130216effdfe67fe0ad5"/><file name="util.js" hash="ae06b70f8bb6aa4b3efd8e1e174aeabf"/></dir><dir name="var"><file name="addons.js" hash="d10f40d6a25b81ef9bb7351f65e44de6"/><file name="cmOptions.js" hash="9ab75f2ba06f1f6e4caec3bf0bb0539e"/><file name="deps.js" hash="26a6e08b8bd29982bdf757a92e79790d"/><file name="plugin.js" hash="cdaff0e3525fff98f35584f44e375d57"/><file name="targets.js" hash="c37ae509c420d526fd98d729a0c239d7"/><file name="tinymcePopup.js" hash="ea543a1cfb4bc3525468ee853428de0f"/></dir></dir><file name="app.js" hash="e346b8c76f13377cbdb19194f5213bba"/><dir name="vendor"><dir name="codemirror"><dir name="addon"><dir name="comment"><file name="comment.js" hash="81c416b8cc05722bbbc9a7ddea97df17"/><file name="continuecomment.js" hash="2bad52d5a0b57d8f43e0e5b90bb25725"/></dir><dir name="dialog"><file name="dialog.css" hash="c89dce10b44d2882a024e7befc2b63f5"/><file name="dialog.js" hash="eb78922db190627d63be39f54b6ae864"/></dir><dir name="display"><file name="autorefresh.js" hash="5acf6d9221a489bbd0a1d5868eeeaa6f"/><file name="fullscreen.css" hash="1a278e72b51528270f8ce9ec991929a1"/><file name="fullscreen.js" hash="fb86184c4fb36398188f2199fd28f167"/><file name="panel.js" hash="56e9558f431d1dffd85bf18ff2c9cd8d"/><file name="placeholder.js" hash="d11008c6283fa41c5aab8cd99ac78975"/><file name="rulers.js" hash="b7b0336f541e6ac15dcb947747272649"/></dir><dir name="edit"><file name="closebrackets.js" hash="75d8bcca433c3b159b7a72e68dbfe77a"/><file name="closetag.js" hash="c85e0e28f335f2e00c993ae90cee18a2"/><file name="continuelist.js" hash="05853f99c7e4e876e088bdb324bfff05"/><file name="matchbrackets.js" hash="ff2cddd87704d84e74cf17ce4fd7412c"/><file name="matchtags.js" hash="545127ffedea5d77c0f68c809c75c5b6"/><file name="trailingspace.js" hash="650f095b187881451b0166d16ffd4091"/></dir><dir name="fold"><file name="brace-fold.js" hash="bd226b8d646b0f399cff4d6fe275def7"/><file name="comment-fold.js" hash="bb08b51b3815da3fba204c05b479adb9"/><file name="foldcode.js" hash="a945047e91e2fee0cf56c22a2267b962"/><file name="foldgutter.css" hash="38bb68770b6f7ebaa7adea770a68e0b1"/><file name="foldgutter.js" hash="8675f6ec5a5f2ebc9e883d3033d84c53"/><file name="indent-fold.js" hash="b17f35bdd388f737113271b9e9070ea3"/><file name="markdown-fold.js" hash="c8783b56c820030045a57f291660ea20"/><file name="xml-fold.js" hash="bdef52c25c01a17a9926b5f95b9af0a0"/></dir><dir name="hint"><file name="anyword-hint.js" hash="6b1df80699158516007e9172861f5ba3"/><file name="css-hint.js" hash="0331f17931864c79688b80c3a8fcf0bf"/><file name="html-hint.js" hash="6b398a6ef3473b9f889092495fcc1545"/><file name="javascript-hint.js" hash="d5eb02a2d03165940777908d255aa197"/><file name="show-hint.css" hash="49647712414ff96d5846de9736b5dbd3"/><file name="show-hint.js" hash="4e448e0421b3dc995b93d13f72aac699"/><file name="sql-hint.js" hash="a8755b5a6dc627d6cf3ef872feebc0f2"/><file name="xml-hint.js" hash="21d019d58516804262957d8879576908"/></dir><dir name="lint"><file name="coffeescript-lint.js" hash="a867c61ab04b4309206ba371bdde9fb7"/><file name="css-lint.js" hash="fd09f81d97cf3eb681cc5742d76ec47f"/><file name="html-lint.js" hash="ebc76e3d7446c73104fae7d143261a9e"/><file name="javascript-lint.js" hash="5576a5092afdae4e7990abcbc92d0425"/><file name="json-lint.js" hash="49afe4d1a791c115de21553c28f1a6cf"/><file name="lint.css" hash="80cbf240f7114fb23e506da29cced118"/><file name="lint.js" hash="449ffad2f31391d11da4c105d7e5d85b"/><file name="yaml-lint.js" hash="117815f724aa2c3d671801ccedaa86ac"/></dir><dir name="merge"><file name="merge.css" hash="5f8663128b0643bdca32ae2ad8867a8a"/><file name="merge.js" hash="d8715e01d09d5eaca98aefc17989a449"/></dir><dir name="mode"><file name="loadmode.js" hash="bc3c29fecceff0785b086b6e1c6f6b7c"/><file name="multiplex.js" hash="5bd0e78901200adb66a095501bffe61a"/><file name="multiplex_test.js" hash="f517110cde96b5b4356557a7792fdcf3"/><file name="overlay.js" hash="b2d7759410db36e8c1026885ebe8d049"/><file name="simple.js" hash="aebf64be9a16aa3dfe45ab91b5b0b588"/></dir><dir name="runmode"><file name="colorize.js" hash="b0d93d54ee9bf76b246ea7cae39d6e75"/><file name="runmode-standalone.js" hash="54b1bc5448bbdfb53fdb3cbdc6740ef7"/><file name="runmode.js" hash="44916ba81dd868098922bdb8e6874e80"/><file name="runmode.node.js" hash="c9af1698167e3de82a5e590e6ae23a73"/></dir><dir name="scroll"><file name="annotatescrollbar.js" hash="7206739f16151e2b54468fc9b8cea190"/><file name="scrollpastend.js" hash="dd498d1011533a64c7a261650f2353ad"/><file name="simplescrollbars.css" hash="0352ba51fd6a422fe6cc44925e33ad88"/><file name="simplescrollbars.js" hash="91e30237f38bae3be7e7fd7ba3811e73"/></dir><dir name="search"><file name="jump-to-line.js" hash="3299737b0d8205f1e67d112de17a9b2d"/><file name="match-highlighter.js" hash="df67b0f13a4a51bf2698bbd9db34932d"/><file name="matchesonscrollbar.css" hash="00ea2770c568a848190bcf52e4241276"/><file name="matchesonscrollbar.js" hash="2cece6de1e3ad73489c170c8f08dd561"/><file name="search.js" hash="47bb6b424f284d63de461aad385cdc10"/><file name="searchcursor.js" hash="a11e9186f471515209a5583f1af6421c"/></dir><dir name="selection"><file name="active-line.js" hash="0e6cca20bb8c12104de8ff1196a27c32"/><file name="mark-selection.js" hash="49df440e41a6f54264bce4f7ed7d7d05"/><file name="selection-pointer.js" hash="394ed7c792ed1954c6473d72e17156f9"/></dir><dir name="tern"><file name="tern.css" hash="4d57ced774b5f3fa9f00dfa398e74819"/><file name="tern.js" hash="6f74c41f96a1d701c0a3907301aa06ff"/><file name="worker.js" hash="d6b55f3e776aafc6b1d1cd5bdf148e1d"/></dir><dir name="wrap"><file name="hardwrap.js" hash="a1103add37b83a87beed7e758900e499"/></dir></dir><dir name="keymap"><file name="emacs.js" hash="3d9f0765769ccc81290932022245dd4b"/><file name="sublime.js" hash="99f5a3d9534c2b611cf7e4aa12dbef42"/><file name="vim.js" hash="168573c0aa4da46b9e41f035323e5b22"/></dir><dir name="lib"><file name="codemirror.css" hash="8f7b89ce4a081ff5cffb913419ca4ee6"/><file name="codemirror.js" hash="32159b543418abb9b9b287447979bd54"/></dir><dir name="mode"><dir name="css"><file name="css.js" hash="4426f88baf2cc524c78002bff31cd632"/></dir><dir name="handlebars"><file name="handlebars.js" hash="1e3a1d4cc25ce95190b4718ca12707c8"/></dir><dir name="htmlmixed"><file name="htmlmixed.js" hash="ed66680cecddc99b53e67d3e0a0d6348"/></dir><dir name="javascript"><file name="javascript.js" hash="8d71f6d147cc2651043cfa57265f6801"/></dir><dir name="xml"><file name="xml.js" hash="d79787a62c1a9dc8c9218a0ae330a682"/></dir></dir><dir name="theme"><file name="3024-day.css" hash="2b259ecd423f3ce94a722c1f5d46a31f"/><file name="3024-night.css" hash="ab94fd59ab96fb1aa3e81dfddb6987cb"/><file name="abcdef.css" hash="a8ccb14d4be49cf68affcf33b77fce3f"/><file name="ambiance-mobile.css" hash="75d6e3e84df3d2d0fd6263587900a9f2"/><file name="ambiance.css" hash="df554079ab89352e7b407f9db17d50fd"/><file name="base16-dark.css" hash="fdae4f313cca84cf7867d7695a809e97"/><file name="base16-light.css" hash="75b47de25ea8faf2f9dd6db40a579c35"/><file name="bespin.css" hash="0d4911d305080973de85c044584806aa"/><file name="blackboard.css" hash="022d790d189e391efa1fcb4e1ce4b7ca"/><file name="cobalt.css" hash="523b38d22f2e0c0ce166576a16ca0281"/><file name="colorforth.css" hash="ba27b85d9a988cdc24ddbe56bce9eb07"/><file name="dracula.css" hash="23de0c29e72670501af38b8c38316b3c"/><file name="duotone-dark.css" hash="707375e0fcfcb45d0e138f88836e6ef9"/><file name="duotone-light.css" hash="15d6b95a76b6be21e57436c5af187d92"/><file name="eclipse.css" hash="314ec24dd09cb97222a2535ed7715f0b"/><file name="elegant.css" hash="f0f6623f96dfbe7860b8d6afd44498a0"/><file name="erlang-dark.css" hash="3ff34e94c01ce38a26e3e174ad642001"/><file name="hopscotch.css" hash="e530e187dbe39f12c778029895175d93"/><file name="icecoder.css" hash="614dcba65fd0fb1844cca326530d71a9"/><file name="isotope.css" hash="22e3d07dc710ca1fc6809459623cd1bd"/><file name="lesser-dark.css" hash="b73404c4e3a2a3b9481157ebd2d76610"/><file name="liquibyte.css" hash="63a5489eb042bc4d8611cd88fa8acab1"/><file name="material.css" hash="3ae7b0981901f96974b874dba203bf23"/><file name="mbo.css" hash="dd64e520b08ca240cd316d34b0fb4954"/><file name="mdn-like.css" hash="ded52290c03f1c2e978e266d7d971178"/><file name="midnight.css" hash="bdce9536d0e57a463c54450600e48b13"/><file name="monokai.css" hash="cf7bc36167d46b635350c303b393505d"/><file name="neat.css" hash="23a5db706b96502df2c24d8114b47fe0"/><file name="neo.css" hash="e5206a0a0dd891c5fe3bccca068e47a7"/><file name="night.css" hash="d7ece6eff6e01835632b6ce8747c89ac"/><file name="panda-syntax.css" hash="979ba91dfb05cd500a32e03166863b3a"/><file name="paraiso-dark.css" hash="98ac9857e72bc2c18d1fb962e7234f03"/><file name="paraiso-light.css" hash="95830052862d184f7e4990608a9f4d61"/><file name="pastel-on-dark.css" hash="a027f9bd116ea8d167e90a5ad6b0b494"/><file name="railscasts.css" hash="51f1577ecaaae0cc532f1159eebfb564"/><file name="rubyblue.css" hash="86fe07d4c88d8e2c43a68120d5c148a8"/><file name="seti.css" hash="87435dbb891fa7b564c2342dbc201dd9"/><file name="solarized.css" hash="aba1610b405c6085511a4cb46e58462c"/><file name="the-matrix.css" hash="081300ef7d26e3ebdc986aeeab3df0f7"/><file name="tomorrow-night-bright.css" hash="c6a2d6679ec30cc81bdd7823a37639da"/><file name="tomorrow-night-eighties.css" hash="b9498f6b1a1c31f75b3f248a74b992df"/><file name="ttcn.css" hash="cbb49c6b4866a208097ab7ab38765495"/><file name="twilight.css" hash="75d129c0ba7b878c5322f8ba7f2f6009"/><file name="vibrant-ink.css" hash="95cb7e6fac9c22f53c08a071174606cc"/><file name="xq-dark.css" hash="8effe912f98ba011fad79d7d2d1e65ff"/><file name="xq-light.css" hash="ced9231fe2df68da3345089704488434"/><file name="yeti.css" hash="50184fc2a49072b496ddd54d68a7ed7b"/><file name="zenburn.css" hash="84fb6d3264fe6ebce7e76b3e916ea25a"/></dir></dir><dir name="emmet-codemirror"><dir name="dist"><file name="emmet.js" hash="834976e6840dc9bd82c4ab9bc15ccc37"/></dir></dir><dir name="gator"><file name="gator.min.js" hash="48fd3e7406621272562d640e1cf2c9c1"/></dir><dir name="htmlhint"><dir name="lib"><file name="htmlhint.js" hash="0d13ac516bd06a78e0aec51eacb28eba"/></dir></dir><dir name="js-beautify"><dir name="js"><dir name="lib"><file name="beautify-css.js" hash="f2ec042dabd1fadd31ad12d41df166ff"/><file name="beautify-html.js" hash="bc3a2710865321e5f53e11270b200a0e"/><file name="beautify.js" hash="4cc4dace80d2ef3677a1e89c69cb9322"/></dir></dir></dir><dir name="require-css"><file name="css.js" hash="ba3becc9467b6dbb264799be028a3d3c"/></dir><dir name="requirejs"><file name="require.js" hash="9b98df453659b401c2326720b72ae449"/></dir></dir><file name=".DS_Store" hash="78d93ab610773819956c927913b8bf99"/></dir><file name=".DS_Store" hash="17bfb5aa35868b35f3ff468a80e14fb9"/></dir><file name=".DS_Store" hash="2d915cf33e54c1abbabe15debf025403"/></dir></dir></target><target name="magelocale"><dir name="en_US"><file name="Esites_Editor.csv" hash="8daece7277a99e5af1c72b591016c112"/></dir><dir name="nl_NL"><file name="Esites_Editor.csv" hash="817bd8de0a88b1223837dbc424ea9e6d"/></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="template"><dir name="esites_editor"><file name="standalone.phtml" hash="8bb314fd3f83beb7003971a20ba390a8"/></dir></dir><dir name="layout"><file name="esites_editor.xml" hash="e1dde00db3c7d436621a1b4ae21260f7"/></dir></dir></dir></dir></target><target name="magelocal"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="template"><dir name="esites_editor"><file name="standalone.phtml" hash=""/></dir></dir><dir name="layout"><file name="esites_editor.xml" hash=""/></dir></dir></dir></dir></target></contents>
21
  <compatible/>
22
  <dependencies><required><php><min>5.4.0</min><max>6.0.0</max></php></required></dependencies>
23
  </package>