Compressor - Version 1.2.1

Version Notes

- Correcting the list of CSS and JS files

Download this release

Release Info

Developer Fabrice Creuzot
Extension Compressor
Version 1.2.1
Comparing to
See all releases


Code changes from version 1.2.0 to 1.2.1

app/code/community/Luigifab/Compressor/Block/Rapport/Css.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Created M/09/08/2011
4
- * Updated V/21/10/2011
5
- * Version 10
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -27,10 +27,10 @@ class Luigifab_Compressor_Block_Rapport_Css extends Mage_Adminhtml_Block_Abstrac
27
  $url = str_replace('index.php/', '', Mage::getBaseUrl()).'skin/frontend/'.Mage::getStoreConfig('css/generate/template');
28
 
29
  if (!is_dir($dir.'/css'))
30
- return '<p>'.$this->__('Warning : %s directory does not exist.', 'CSS').'<br />'.$dir.'/css/</p>';
31
 
32
  if (!is_readable($dir.'/css'))
33
- return '<p>'.$this->__('Warning : %s directory is not readable.', 'CSS').'<br />'.$dir.'/css/</p>';
34
 
35
  if (!is_dir($dir.'/zip'))
36
  mkdir($dir.'/zip', 0755);
@@ -39,7 +39,7 @@ class Luigifab_Compressor_Block_Rapport_Css extends Mage_Adminhtml_Block_Abstrac
39
  chmod($dir.'/zip', 0755);
40
 
41
  if (!is_writable($dir.'/zip'))
42
- return '<p>'.$this->__('Warning : %s directory is not writable.', 'ZIP').'<br />'.$dir.'/zip/</p>';
43
 
44
  // préparation
45
  $config = array();
1
  <?php
2
  /**
3
  * Created M/09/08/2011
4
+ * Updated W/26/10/2011
5
+ * Version 11
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
27
  $url = str_replace('index.php/', '', Mage::getBaseUrl()).'skin/frontend/'.Mage::getStoreConfig('css/generate/template');
28
 
29
  if (!is_dir($dir.'/css'))
30
+ return '<p>'.$this->__('[Warning] %s directory does not exist.', 'CSS').'<br />'.$dir.'/css/</p>';
31
 
32
  if (!is_readable($dir.'/css'))
33
+ return '<p>'.$this->__('[Warning] %s directory is not readable.', 'CSS').'<br />'.$dir.'/css/</p>';
34
 
35
  if (!is_dir($dir.'/zip'))
36
  mkdir($dir.'/zip', 0755);
39
  chmod($dir.'/zip', 0755);
40
 
41
  if (!is_writable($dir.'/zip'))
42
+ return '<p>'.$this->__('[Warning] %s directory is not writable.', 'ZIP').'<br />'.$dir.'/zip/</p>';
43
 
44
  // préparation
45
  $config = array();
app/code/community/Luigifab/Compressor/Block/Rapport/Js.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Created M/09/08/2011
4
- * Updated V/21/10/2011
5
- * Version 10
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -33,7 +33,7 @@ class Luigifab_Compressor_Block_Rapport_Js extends Mage_Adminhtml_Block_Abstract
33
  chmod($dir.'/zip', 0755);
34
 
35
  if (!is_writable($dir.'/zip'))
36
- return '<p>'.$this->__('Warning : %s directory is not writable.', 'ZIP').'<br />'.$dir.'/zip/</p>';
37
 
38
  // préparation
39
  $config = array();
@@ -176,9 +176,9 @@ class Luigifab_Compressor_Block_Rapport_Js extends Mage_Adminhtml_Block_Abstract
176
  $html = ($tablo->getSize() > 1) ? $tablo->getHtml() : '';
177
 
178
  if (!is_dir($dir.'/js'))
179
- $html .= '<p class="jswarning">'.$this->__('Notice : %s directory does not exist.', 'JS').'<br />'.$dir.'/js/</p>';
180
  else if (!is_readable($dir.'/js'))
181
- $html .= '<p class="jswarning">'.$this->__('Warning : %s directory is not readable.', 'JS').'<br />'.$dir.'/js/</p>';
182
 
183
  $html = '<tr><td>'.$html.'</td></tr>';
184
  return $html;
1
  <?php
2
  /**
3
  * Created M/09/08/2011
4
+ * Updated W/26/10/2011
5
+ * Version 11
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
33
  chmod($dir.'/zip', 0755);
34
 
35
  if (!is_writable($dir.'/zip'))
36
+ return '<p>'.$this->__('[Warning] %s directory is not writable.', 'ZIP').'<br />'.$dir.'/zip/</p>';
37
 
38
  // préparation
39
  $config = array();
176
  $html = ($tablo->getSize() > 1) ? $tablo->getHtml() : '';
177
 
178
  if (!is_dir($dir.'/js'))
179
+ $html .= '<p class="jswarning">'.$this->__('[Notice] %s directory does not exist.', 'JS').'<br />'.$dir.'/js/</p>';
180
  else if (!is_readable($dir.'/js'))
181
+ $html .= '<p class="jswarning">'.$this->__('[Warning] %s directory is not readable.', 'JS').'<br />'.$dir.'/js/</p>';
182
 
183
  $html = '<tr><td>'.$html.'</td></tr>';
184
  return $html;
app/code/community/Luigifab/Compressor/Model/Source/Files/Css.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
- * Updated V/21/10/2011
5
- * Version 7
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -32,7 +32,7 @@ class Luigifab_Compressor_Model_Source_Files_Css {
32
 
33
  $source = Mage::getBaseDir().'/skin/frontend/'.Mage::getStoreConfig('css/generate/template').'/css';
34
 
35
- $files = array(array('value' => 'none', 'label' => '--'));
36
  $ignore = array('.', '..');
37
 
38
  if (is_dir($source) && ($dir = opendir($source))) {
@@ -47,6 +47,8 @@ class Luigifab_Compressor_Model_Source_Files_Css {
47
  }
48
 
49
  array_multisort($files, SORT_ASC);
 
 
50
  return $files;
51
  }
52
  }
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
+ * Updated W/26/10/2011
5
+ * Version 8
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
32
 
33
  $source = Mage::getBaseDir().'/skin/frontend/'.Mage::getStoreConfig('css/generate/template').'/css';
34
 
35
+ $files = array();
36
  $ignore = array('.', '..');
37
 
38
  if (is_dir($source) && ($dir = opendir($source))) {
47
  }
48
 
49
  array_multisort($files, SORT_ASC);
50
+ array_unshift($files, array('value' => 'none', 'label' => '--'));
51
+
52
  return $files;
53
  }
54
  }
app/code/community/Luigifab/Compressor/Model/Source/Files/Js.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
- * Updated V/21/10/2011
5
- * Version 7
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -32,7 +32,7 @@ class Luigifab_Compressor_Model_Source_Files_Js {
32
 
33
  $source = Mage::getBaseDir().'/skin/frontend/'.Mage::getStoreConfig('js/generate/template').'/js';
34
 
35
- $files = array(array('value' => 'none', 'label' => '--'));
36
  $ignore = array('.', '..');
37
 
38
  if (is_dir($source) && ($dir = opendir($source))) {
@@ -47,6 +47,8 @@ class Luigifab_Compressor_Model_Source_Files_Js {
47
  }
48
 
49
  array_multisort($files, SORT_ASC);
 
 
50
  return $files;
51
  }
52
  }
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
+ * Updated W/26/10/2011
5
+ * Version 8
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
32
 
33
  $source = Mage::getBaseDir().'/skin/frontend/'.Mage::getStoreConfig('js/generate/template').'/js';
34
 
35
+ $files = array();
36
  $ignore = array('.', '..');
37
 
38
  if (is_dir($source) && ($dir = opendir($source))) {
47
  }
48
 
49
  array_multisort($files, SORT_ASC);
50
+ array_unshift($files, array('value' => 'none', 'label' => '--'));
51
+
52
  return $files;
53
  }
54
  }
app/code/community/Luigifab/Compressor/Model/Source/Template.php CHANGED
@@ -1,8 +1,8 @@
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
- * Updated M/16/08/2011
5
- * Version 5
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -28,8 +28,8 @@ class Luigifab_Compressor_Model_Source_Template {
28
 
29
  $source = Mage::getBaseDir().'/skin/frontend';
30
 
31
- $ignore = array('.', '..');
32
  $directories = array();
 
33
 
34
  if (is_dir($source) && ($dir = opendir($source))) {
35
 
1
  <?php
2
  /**
3
  * Created L/27/06/2011
4
+ * Updated W/26/10/2011
5
+ * Version 6
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
28
 
29
  $source = Mage::getBaseDir().'/skin/frontend';
30
 
 
31
  $directories = array();
32
+ $ignore = array('.', '..');
33
 
34
  if (is_dir($source) && ($dir = opendir($source))) {
35
 
app/code/community/Luigifab/Compressor/changelog CHANGED
@@ -1,3 +1,7 @@
 
 
 
 
1
  21/10/2011 | 1.2.0
2
 
3
  * Compressing CSS or JS files when saving configuration
1
+ 26/10/2011 | 1.2.1
2
+
3
+ * Correcting the list of CSS and JS files
4
+
5
  21/10/2011 | 1.2.0
6
 
7
  * Compressing CSS or JS files when saving configuration
app/code/community/Luigifab/Compressor/etc/config.xml CHANGED
@@ -2,7 +2,7 @@
2
  <!--
3
  /**
4
  * Created L/27/06/2011
5
- * Updated V/21/10/2011
6
  * Version 17
7
  *
8
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
@@ -23,7 +23,7 @@
23
  <config>
24
  <modules>
25
  <Luigifab_Compressor>
26
- <version>1.2.0</version>
27
  </Luigifab_Compressor>
28
  </modules>
29
 
2
  <!--
3
  /**
4
  * Created L/27/06/2011
5
+ * Updated W/26/10/2011
6
  * Version 17
7
  *
8
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
23
  <config>
24
  <modules>
25
  <Luigifab_Compressor>
26
+ <version>1.2.1</version>
27
  </Luigifab_Compressor>
28
  </modules>
29
 
app/code/community/Luigifab/Compressor/readme CHANGED
@@ -9,12 +9,12 @@ Rewrites
9
  - Mage_Adminhtml_Block_Page
10
  - Mage_Core_Model_Design_Package
11
 
12
- Files
 
13
  - app/code/community/Luigifab/Compressor/
 
14
  - app/design/adminhtml/default/default/layout/compressor.xml
15
  - app/design/adminhtml/default/default/template/compressor/
16
  - app/design/frontend/default/default/template/compressor/
17
- - app/etc/modules/Luigifab_Compressor.xml
18
- - app/locale/fr_FR/Luigifab_Compressor.csv
19
  - skin/adminhtml/default/default/css/compressor.css
20
  - skin/adminhtml/default/default/js/compressor.js
9
  - Mage_Adminhtml_Block_Page
10
  - Mage_Core_Model_Design_Package
11
 
12
+ Files and directories
13
+ - app/etc/modules/Luigifab_Compressor.xml
14
  - app/code/community/Luigifab/Compressor/
15
+ - app/locale/fr_FR/Luigifab_Compressor.csv
16
  - app/design/adminhtml/default/default/layout/compressor.xml
17
  - app/design/adminhtml/default/default/template/compressor/
18
  - app/design/frontend/default/default/template/compressor/
 
 
19
  - skin/adminhtml/default/default/css/compressor.css
20
  - skin/adminhtml/default/default/js/compressor.js
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Compressor</name>
4
- <version>1.2.0</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/GPL-2.0">GPL</license>
7
  <channel>community</channel>
@@ -15,11 +15,11 @@ Compatible with the merging files function of Magento.&#xD;
15
  No modification of your layout files are required.&#xD;
16
  Secure or unsecure website.&#xD;
17
  </description>
18
- <notes>- Compressing CSS or JS files when saving configuration</notes>
19
  <authors><author><name>Fabrice Creuzot</name><user>luigifab</user><email>code@luigifab.info</email></author></authors>
20
- <date>2011-10-21</date>
21
- <time>21:07:07</time>
22
- <contents><target name="magecommunity"><dir name="Luigifab"><dir name="Compressor"><dir name="Block"><file name="Adminhtml.php" hash="187366d3122f8a8010abe4e3d64b95e6"/><file name="Head.php" hash="856e235dd903342be4972c58e412097e"/><file name="Html.php" hash="c87ed56bf7bf6d6245cef4065beaeecc"/><dir name="Notice"><file name="Css.php" hash="7a97a7e281f0284661abe3b4d0d425e6"/><file name="Htaccess.php" hash="f2e2b712c46068cb8895d0ca5ffa7953"/><file name="Html.php" hash="2fa3a2e587a5f965858aeebe85fae11b"/><file name="Js.php" hash="894da0a498afd9dcbb38a676f83942af"/></dir><dir name="Rapport"><file name="Css.php" hash="a8f19da298128134532c7807dbd77316"/><file name="Htaccess.php" hash="6c29990e782046f5194d8ee03e185217"/><file name="Js.php" hash="107990ac7310dd73c374cf00aeb0beae"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8e8ab2e4d669ba797b9b67a934e45e1"/></dir><dir name="Model"><file name="IhmArray.php" hash="f56a7277ae954b714ccccd7e9d984364"/><file name="Log.php" hash="c13c178e54584d505310cecf022d41e9"/><file name="Observer.php" hash="2568ce55feb80cb191f796add5ccb0c6"/><file name="Package.php" hash="373a90d697dbe5f75f5d1093273e18f9"/><dir name="Source"><file name="Copyright.php" hash="b0e10b61cea19c97034f8ccc5124dbdb"/><file name="Doctype.php" hash="42852f90826a7c57d33481d18d7b5989"/><file name="Encoding.php" hash="cc2586e60e659d0a9217d7e1766b704a"/><dir name="Files"><file name="Css.php" hash="e3b23d041036c6acd2069781d788dbc9"/><file name="Js.php" hash="f7161fe04f343ee6ea0fd61890d6b3dd"/></dir><dir name="Media"><file name="Css.php" hash="899f98ca577b24474b44983233ee98e2"/><file name="Js.php" hash="cb5f7c9d2217d347bf75300f4c046bf3"/></dir><file name="Memory.php" hash="e3744d34f13645c239203e38a091fffd"/><file name="Template.php" hash="d4fb4a8f4b557c0ac2c35c5e89463947"/><file name="Yesnoauto.php" hash="eb10791746d7219dfbe510d743710821"/></dir></dir><file name="changelog" hash="97d722c102e77b59a5a1c32c8fdf05a5"/><dir name="etc"><file name="config.xml" hash="c2d3d4670deed1226a3afd63a9349fb9"/><file name="system.xml" hash="80ecad6eab0e2f9845ee7105334ded21"/></dir><file name="license" hash="b819c62bf1b7f2d249241db9a4ab3c99"/><file name="readme" hash="81ee6f9234bf19030354c48d5042c7f7"/></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Luigifab_Compressor.csv" hash="803a048a5b1761c77bbe97b0dcba7cfc"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="compressor.xml" hash="c410c9f9ac76ac10d78af833c1d9f2df"/></dir><dir name="template"><dir name="compressor"><dir name="notice"><file name="css.phtml" hash="107514fd7069098dced4fbec8115f45e"/><file name="htaccess.phtml" hash="2b46468eef2fb19d2e6831c57cca882b"/><file name="html.phtml" hash="d5918d817f2a8ea1ee6833e58a7d9caa"/><file name="js.phtml" hash="b8b5deb998a5cabe185fce6defe031db"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="compressor"><file name="head.phtml" hash="9e640492cb8b81aa71ab8b841a97c178"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="compressor.css" hash="59ee5501ee71fffc5febbf3eebdf88c6"/></dir><dir name="js"><file name="compressor.js" hash="d1ceef0f7ade027ab4efef0ddab488a0"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Luigifab_Compressor.xml" hash="7f04420fe4094092d5409ebdd0f283ae"/></dir></target></contents>
23
  <compatible/>
24
  <dependencies><required><php><min>5.2.0</min><max>5.9.9</max></php></required></dependencies>
25
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>Compressor</name>
4
+ <version>1.2.1</version>
5
  <stability>stable</stability>
6
  <license uri="http://www.opensource.org/licenses/GPL-2.0">GPL</license>
7
  <channel>community</channel>
15
  No modification of your layout files are required.&#xD;
16
  Secure or unsecure website.&#xD;
17
  </description>
18
+ <notes>- Correcting the list of CSS and JS files</notes>
19
  <authors><author><name>Fabrice Creuzot</name><user>luigifab</user><email>code@luigifab.info</email></author></authors>
20
+ <date>2011-10-26</date>
21
+ <time>17:41:42</time>
22
+ <contents><target name="magecommunity"><dir name="Luigifab"><dir name="Compressor"><dir name="Block"><file name="Adminhtml.php" hash="187366d3122f8a8010abe4e3d64b95e6"/><file name="Head.php" hash="856e235dd903342be4972c58e412097e"/><file name="Html.php" hash="c87ed56bf7bf6d6245cef4065beaeecc"/><dir name="Notice"><file name="Css.php" hash="7a97a7e281f0284661abe3b4d0d425e6"/><file name="Htaccess.php" hash="f2e2b712c46068cb8895d0ca5ffa7953"/><file name="Html.php" hash="2fa3a2e587a5f965858aeebe85fae11b"/><file name="Js.php" hash="894da0a498afd9dcbb38a676f83942af"/></dir><dir name="Rapport"><file name="Css.php" hash="494d1ca013a068694fbe7ce625e57560"/><file name="Htaccess.php" hash="6c29990e782046f5194d8ee03e185217"/><file name="Js.php" hash="3f2bde6a75ed403b347735baedd2e0ab"/></dir></dir><dir name="Helper"><file name="Data.php" hash="c8e8ab2e4d669ba797b9b67a934e45e1"/></dir><dir name="Model"><file name="IhmArray.php" hash="f56a7277ae954b714ccccd7e9d984364"/><file name="Log.php" hash="c13c178e54584d505310cecf022d41e9"/><file name="Observer.php" hash="2568ce55feb80cb191f796add5ccb0c6"/><file name="Package.php" hash="373a90d697dbe5f75f5d1093273e18f9"/><dir name="Source"><file name="Copyright.php" hash="b0e10b61cea19c97034f8ccc5124dbdb"/><file name="Doctype.php" hash="42852f90826a7c57d33481d18d7b5989"/><file name="Encoding.php" hash="cc2586e60e659d0a9217d7e1766b704a"/><dir name="Files"><file name="Css.php" hash="76ed5171c247fc808bf7b84d807c9a2a"/><file name="Js.php" hash="f1aa2c0dfa5d8074a0a35020e05e3e56"/></dir><dir name="Media"><file name="Css.php" hash="899f98ca577b24474b44983233ee98e2"/><file name="Js.php" hash="cb5f7c9d2217d347bf75300f4c046bf3"/></dir><file name="Memory.php" hash="e3744d34f13645c239203e38a091fffd"/><file name="Template.php" hash="0815e04bf90905195e11fc9c8478838d"/><file name="Yesnoauto.php" hash="eb10791746d7219dfbe510d743710821"/></dir></dir><file name="changelog" hash="f7120736dba2b6ace350fbaa9f1b3a7d"/><dir name="etc"><file name="config.xml" hash="6384d756aa17b92dc1a55e2d3ca2bbd2"/><file name="system.xml" hash="80ecad6eab0e2f9845ee7105334ded21"/></dir><file name="license" hash="b819c62bf1b7f2d249241db9a4ab3c99"/><file name="readme" hash="51580d6765e250b3a4b2e5c96d2f3b40"/></dir></dir></target><target name="magelocale"><dir name="fr_FR"><file name="Luigifab_Compressor.csv" hash="803a048a5b1761c77bbe97b0dcba7cfc"/></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="compressor.xml" hash="c410c9f9ac76ac10d78af833c1d9f2df"/></dir><dir name="template"><dir name="compressor"><dir name="notice"><file name="css.phtml" hash="107514fd7069098dced4fbec8115f45e"/><file name="htaccess.phtml" hash="2b46468eef2fb19d2e6831c57cca882b"/><file name="html.phtml" hash="d5918d817f2a8ea1ee6833e58a7d9caa"/><file name="js.phtml" hash="b8b5deb998a5cabe185fce6defe031db"/></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="default"><dir name="default"><dir name="template"><dir name="compressor"><file name="head.phtml" hash="9e640492cb8b81aa71ab8b841a97c178"/></dir></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="css"><file name="compressor.css" hash="343a9405116ec009759d30d649e2205a"/></dir><dir name="js"><file name="compressor.js" hash="d1ceef0f7ade027ab4efef0ddab488a0"/></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Luigifab_Compressor.xml" hash="7f04420fe4094092d5409ebdd0f283ae"/></dir></target></contents>
23
  <compatible/>
24
  <dependencies><required><php><min>5.2.0</min><max>5.9.9</max></php></required></dependencies>
25
  </package>
skin/adminhtml/default/default/css/compressor.css CHANGED
@@ -1,8 +1,8 @@
1
  @charset "utf-8";
2
  /**
3
  * Created S/06/08/2011
4
- * Updated D/16/10/2011
5
- * Version 7
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
@@ -28,7 +28,7 @@ div.compressor-notice p.note span.success { font-weight:normal !important; color
28
  div.compressor-notice p.note span.error { font-weight:normal !important; color:red !important; }
29
 
30
  div.comment { padding:0 5px 9px; }
31
- p.jswarning { margin-top:1em; }
32
 
33
  #htaccess_informations pre { font-size:10px; line-height:13px; }
34
  #htaccess_user textarea { width:550px; }
1
  @charset "utf-8";
2
  /**
3
  * Created S/06/08/2011
4
+ * Updated W/26/10/2011
5
+ * Version 8
6
  *
7
  * Copyright 2011 | Fabrice Creuzot (luigifab) <code~luigifab~info>
8
  * http://www.luigifab.info/magento/compressor.php
28
  div.compressor-notice p.note span.error { font-weight:normal !important; color:red !important; }
29
 
30
  div.comment { padding:0 5px 9px; }
31
+ p.jswarning { margin-top:1em; font-size:0.9em; line-height:1.4em; }
32
 
33
  #htaccess_informations pre { font-size:10px; line-height:13px; }
34
  #htaccess_user textarea { width:550px; }