Plugin Directory

Changeset 601832


Ignore:
Timestamp:
09/21/2012 01:20:35 AM (14 years ago)
Author:
prometh
Message:

v0.5.3

Location:
wp-html-compression/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • wp-html-compression/trunk/external/absolute-to-relative-urls.php

    r583135 r601832  
    11<?php
    2 /*
    3 Plugin Name: Absolute-to-Relative URLs
    4 Plugin URI: http://www.svachon.com/
    5 Description: A <strong>function</strong> for use in shortening URL links. Just use <code><strong>absolute_to_relative_url</strong>( string <em>$url</em> [, bool <em>$ignore_www</em> = <em>true</em> [, bool <em>$choose_shortest</em> = <em>true</em>]] )</code>.
    6 Version: 0.3.1
    7 Author: Steven Vachon
    8 Author URI: http://www.svachon.com/
    9 Author Email: prometh@gmail.com
    10 */
    11 
    122
    133class Absolute_to_Relative_URLs
  • wp-html-compression/trunk/readme.txt

    r584119 r601832  
    22Author: Steven Vachon
    33URL: http://www.svachon.com/
    4 Contact: prometh@gmail.com
     4Contact: contact@svachon.com
    55Contributors: prometh
    66Tags: absolute, bandwidth, comment, comments, compress, compressed, compression, faster, google, html, link, links, loading, optimize, optimization, minification, minified, minify, performance, plugin, reduction, relative, seo, shorten, speed, space, template, url, urls, whitespace
    77Requires at least: 3.2
    8 Tested up to: 3.4.1
     8Tested up to: 3.4.2
    99Stable tag: trunk
    1010
     
    1616Combining HTML "minification" with cache and HTTP compression (**[WP Super Cache](http://wordpress.org/extend/plugins/wp-super-cache/)**, or similar) will cut down your bandwidth and ensure near-immediate content delivery while increasing your Google rankings.
    1717
    18 This plugin will compress your HTML by shortening **URLs** and removing **standard comments** and **whitespace**; including new lines, carriage returns, tabs and excess spaces. Most importantly, by ignoring `<pre>`, `<textarea>`, `<script>` and Explorer® `conditional comment` tags, ***presentation will not be affected***.
     18This plugin will compress your HTML by shortening **URLs** and removing **standard comments** and **whitespace**; including new lines, carriage returns, tabs and excess spaces. Most importantly, by ignoring `<pre>`, `<textarea>`, `<script>` and Explorer `conditional comment` tags, ***presentation will not be affected***.
    1919
    2020
     
    3131Yes, slightly. While you should be using **[WP Super Cache](http://wordpress.org/extend/plugins/wp-super-cache/)** anyway, it will correct the issue.
    3232
    33 = Will Internet Explorer® conditional comments be removed? =
     33= Will Internet Explorer conditional comments be removed? =
    3434
    3535No.
     
    4242
    4343If the links in your HTML are *not* hard-coded as hashes without the use of a script, an issue could occur with URL shortening. If so, setting `$shorten_urls` (on line `26`) to `false` will fix that.
    44 
    45 = Does this plugin use URL shortening services like TinyURL? =
    46 
    47 No, it comes with one of my other plugins, **[Absolute-to-Relative URLs](http://wordpress.org/extend/plugins/absolute-to-relative-urls/)**. Check it out for some examples.
    4844
    4945= How do I mark areas that should not be compressed? =
     
    7268
    7369== Changelog ==
     70
     71= 0.5.3 =
     72* Bypasses compression for robots.txt
     73* Corrected "invalid plugin header" issue when activating from install screen
    7474
    7575= 0.5.2 =
  • wp-html-compression/trunk/wp-html-compression.php

    r583135 r601832  
    22/*
    33Plugin Name: WP-HTML-Compression
    4 Plugin URI: http://www.svachon.com/wp-html-compression/
     4Plugin URI: http://www.svachon.com/blog/wp-html-compression/
    55Description: Reduce file size by shortening URLs and safely removing all standard comments and unnecessary whitespace from an HTML document.
    6 Version: 0.5.2
     6Version: 0.5.3
    77Author: Steven Vachon
    88Author URI: http://www.svachon.com/
    9 Author Email: prometh@gmail.com
     9Author Email: contact@svachon.com
    1010*/
    1111
     
    241241function wp_html_compression_start()
    242242{
    243     if (!is_feed())
     243    if (!is_feed() && !is_robots())
    244244    {
    245245        ob_start('wp_html_compression_finish');
Note: See TracChangeset for help on using the changeset viewer.