Changeset 892499
- Timestamp:
- 04/13/2014 11:30:37 PM (12 years ago)
- Location:
- wp-minify-fix
- Files:
-
- 4 edited
- 12 copied
-
tags/1.3.2 (copied) (copied from wp-minify-fix/trunk)
-
tags/1.3.2/min/config.php (modified) (3 diffs)
-
tags/1.3.2/min/lib/CSSmin.php (copied) (copied from wp-minify-fix/trunk/min/lib/CSSmin.php)
-
tags/1.3.2/min/lib/DooDigestAuth.php (copied) (copied from wp-minify-fix/trunk/min/lib/DooDigestAuth.php)
-
tags/1.3.2/min/lib/Minify/ClosureCompiler.php (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/ClosureCompiler.php)
-
tags/1.3.2/min/lib/Minify/DebugDetector.php (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/DebugDetector.php)
-
tags/1.3.2/min/lib/Minify/HTML (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/HTML)
-
tags/1.3.2/min/lib/Minify/JS (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/JS)
-
tags/1.3.2/min/lib/Minify/Loader.php (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/Loader.php)
-
tags/1.3.2/min/lib/Minify/YUI (copied) (copied from wp-minify-fix/trunk/min/lib/Minify/YUI)
-
tags/1.3.2/min/lib/MrClay (copied) (copied from wp-minify-fix/trunk/min/lib/MrClay)
-
tags/1.3.2/readme.txt (copied) (copied from wp-minify-fix/trunk/readme.txt) (3 diffs)
-
tags/1.3.2/wp-minify.php (copied) (copied from wp-minify-fix/trunk/wp-minify.php) (2 diffs)
-
trunk/min/config.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-minify.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-minify-fix/tags/1.3.2/min/config.php
r889074 r892499 50 50 //$min_cachePath = preg_replace('/^\\d+;/', '', session_save_path()); 51 51 //###WPM-CACHE-PATH-BEFORE### 52 $min_cachePath = '/Users/benutzer/localhost2/nodecode/wp-content/plugins/wp-minify-fix/cache/';53 52 //###WPM-CACHE-PATH-AFTER### 54 53 … … 83 82 * affect CSS values (which is why this option is disabled by default). 84 83 */ 85 $min_serveOptions['bubbleCssImports'] = false;84 $min_serveOptions['bubbleCssImports'] = true; 86 85 87 86 … … 97 96 $min_serveOptions['maxAge'] = 1800; 98 97 //###WPM-CACHE-AGE-BEFORE### 99 $min_serveOptions['maxAge'] = 2592000;100 98 //###WPM-CACHE-AGE-AFTER### 101 99 -
wp-minify-fix/tags/1.3.2/readme.txt
r891292 r892499 1 1 === WP Minify Fix === 2 Tags: minify, js, css, html, javascript, cascading style sheets, optimize, performance, speed, http request, phpspeedy, fix, compress, performance 2 Tags: minify, js, css, html, javascript, cascading style sheets, optimize, performance, speed, http request, phpspeedy, fix, compress, performance, import 3 3 Contributors: NodeCode, madeinthayaland 4 4 Requires at least: 2.7 5 5 Tested up to: 3.8.1 6 Stable Tag: 1.3. 1.16 Stable Tag: 1.3.2 7 7 8 8 [Fixed] This plugin uses the Minify engine to combine and compress JS and CSS files … … 20 20 * Minify engine 2.1.7 updated 21 21 * cache interval option fixed 22 * move CSS-@imports to the top of the output 22 23 23 24 = How Does it Work? = … … 43 44 44 45 == Changelog == 46 = 1.3.2 = 47 * move CSS-@imports to the top of the output 45 48 46 49 = 1.3.1 = -
wp-minify-fix/tags/1.3.2/wp-minify.php
r891290 r892499 2 2 /* 3 3 Plugin Name: WP Minify Fix 4 Plugin URI: http:// omninoggin.com/wordpress-plugins/wp-minify-wordpress-plugin/4 Plugin URI: http://wordpress.org/plugins/wp-minify-fixed/ 5 5 Description: [Fixed] This plugin uses the Minify engine to combine and compress JS and CSS files to improve page load time. 6 Version: 1.3. 1.16 Version: 1.3.2 7 7 Author: NodeCode 8 8 Author URI: http://nodecode.de … … 35 35 var $name_proper = 'WP Minify Fix'; 36 36 var $required_wp_version = '2.7'; 37 var $version = '1.3. 1';37 var $version = '1.3.2'; 38 38 39 39 var $c = null; -
wp-minify-fix/trunk/min/config.php
r889074 r892499 50 50 //$min_cachePath = preg_replace('/^\\d+;/', '', session_save_path()); 51 51 //###WPM-CACHE-PATH-BEFORE### 52 $min_cachePath = '/Users/benutzer/localhost2/nodecode/wp-content/plugins/wp-minify-fix/cache/';53 52 //###WPM-CACHE-PATH-AFTER### 54 53 … … 83 82 * affect CSS values (which is why this option is disabled by default). 84 83 */ 85 $min_serveOptions['bubbleCssImports'] = false;84 $min_serveOptions['bubbleCssImports'] = true; 86 85 87 86 … … 97 96 $min_serveOptions['maxAge'] = 1800; 98 97 //###WPM-CACHE-AGE-BEFORE### 99 $min_serveOptions['maxAge'] = 2592000;100 98 //###WPM-CACHE-AGE-AFTER### 101 99 -
wp-minify-fix/trunk/readme.txt
r891292 r892499 1 1 === WP Minify Fix === 2 Tags: minify, js, css, html, javascript, cascading style sheets, optimize, performance, speed, http request, phpspeedy, fix, compress, performance 2 Tags: minify, js, css, html, javascript, cascading style sheets, optimize, performance, speed, http request, phpspeedy, fix, compress, performance, import 3 3 Contributors: NodeCode, madeinthayaland 4 4 Requires at least: 2.7 5 5 Tested up to: 3.8.1 6 Stable Tag: 1.3. 1.16 Stable Tag: 1.3.2 7 7 8 8 [Fixed] This plugin uses the Minify engine to combine and compress JS and CSS files … … 20 20 * Minify engine 2.1.7 updated 21 21 * cache interval option fixed 22 * move CSS-@imports to the top of the output 22 23 23 24 = How Does it Work? = … … 43 44 44 45 == Changelog == 46 = 1.3.2 = 47 * move CSS-@imports to the top of the output 45 48 46 49 = 1.3.1 = -
wp-minify-fix/trunk/wp-minify.php
r891290 r892499 2 2 /* 3 3 Plugin Name: WP Minify Fix 4 Plugin URI: http:// omninoggin.com/wordpress-plugins/wp-minify-wordpress-plugin/4 Plugin URI: http://wordpress.org/plugins/wp-minify-fixed/ 5 5 Description: [Fixed] This plugin uses the Minify engine to combine and compress JS and CSS files to improve page load time. 6 Version: 1.3. 1.16 Version: 1.3.2 7 7 Author: NodeCode 8 8 Author URI: http://nodecode.de … … 35 35 var $name_proper = 'WP Minify Fix'; 36 36 var $required_wp_version = '2.7'; 37 var $version = '1.3. 1';37 var $version = '1.3.2'; 38 38 39 39 var $c = null;
Note: See TracChangeset
for help on using the changeset viewer.