Plugin Directory

Changeset 186230


Ignore:
Timestamp:
12/22/2009 06:26:05 PM (16 years ago)
Author:
plpetitclerc
Message:
 
Location:
wp-urlcache
Files:
2 edited
3 copied

Legend:

Unmodified
Added
Removed
  • wp-urlcache/tags/0.2/readme.txt

    r184145 r186230  
    33Tags: url, cache, archive, scrape
    44Requires at least: 2.7
    5 Tested up to: 2.8.6
    6 Stable tag: 0.1
     5Tested up to: 2.8.9
     6Stable tag: 0.2
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    1717
    1818* Use WordPress’ builtin plugin installation system located in your WordPress admin panel, labeled as the "Add New" options in the "Plugins" menu to upload the zip file you downloaded
    19 * Extract the zip file and upload the resulting "wp-prettyphoto" folder on your server under `wp-content/plugins/`.
     19* Extract the zip file and upload the resulting "wp-urlcache" folder on your server under `wp-content/plugins/`.
    2020
    2121All you need to do after that is navigate to your blog’s administration panel, go in the plugins section and enable WP-URLCache.
     
    2626
    2727== Frequently Asked Questions ==
     28
     29= How do I use it? =
     30
     31Simply use the [urlcache *url* *target* *alt* *cachetext*] shortcode in your posts where:
     32* URL is the URL you want to cache
     33* Target is the link target value
     34* Alt is the link alternate value
     35* CacheText is the text you want to display in lieu of the cached link
    2836
    2937= Any technical requirements? =
  • wp-urlcache/tags/0.2/wp-urlcache.php

    r184145 r186230  
    22/*
    33Plugin Name: WP-URLCache
    4 Plugin URI: http://blog.fusi0n.org/category/wp-urlcache
     4Plugin URI: http://blog.fusi0n.org
    55Description: WP-URLCache allows you to use a shortcode to locally cache outgoing links in your posts and pages.
    6 Version: 0.1
     6Version: 0.2
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    205205    curl_setopt($ch, CURLOPT_TIMEOUT, 4);
    206206    curl_setopt($ch, CURLOPT_HEADER, 0);
    207     curl_setopt($ch, CURLOPT_USERAGENT, 'WP-URLCache 0.1 - http://blog.fusi0n.org/category/wp-urlcache');
     207    curl_setopt($ch, CURLOPT_USERAGENT, 'WP-URLCache 0.1 - http://blog.fusi0n.org/');
    208208    $buffer = curl_exec($ch);
    209209    curl_close($ch);
  • wp-urlcache/trunk/readme.txt

    r184145 r186230  
    33Tags: url, cache, archive, scrape
    44Requires at least: 2.7
    5 Tested up to: 2.8.6
    6 Stable tag: 0.1
     5Tested up to: 2.8.9
     6Stable tag: 0.2
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    1717
    1818* Use WordPress’ builtin plugin installation system located in your WordPress admin panel, labeled as the "Add New" options in the "Plugins" menu to upload the zip file you downloaded
    19 * Extract the zip file and upload the resulting "wp-prettyphoto" folder on your server under `wp-content/plugins/`.
     19* Extract the zip file and upload the resulting "wp-urlcache" folder on your server under `wp-content/plugins/`.
    2020
    2121All you need to do after that is navigate to your blog’s administration panel, go in the plugins section and enable WP-URLCache.
     
    2626
    2727== Frequently Asked Questions ==
     28
     29= How do I use it? =
     30
     31Simply use the [urlcache *url* *target* *alt* *cachetext*] shortcode in your posts where:
     32* URL is the URL you want to cache
     33* Target is the link target value
     34* Alt is the link alternate value
     35* CacheText is the text you want to display in lieu of the cached link
    2836
    2937= Any technical requirements? =
  • wp-urlcache/trunk/wp-urlcache.php

    r184145 r186230  
    22/*
    33Plugin Name: WP-URLCache
    4 Plugin URI: http://blog.fusi0n.org/category/wp-urlcache
     4Plugin URI: http://blog.fusi0n.org
    55Description: WP-URLCache allows you to use a shortcode to locally cache outgoing links in your posts and pages.
    6 Version: 0.1
     6Version: 0.2
    77Author: Pier-Luc Petitclerc
    88Author URI: http://blog.fusi0n.org
     
    205205    curl_setopt($ch, CURLOPT_TIMEOUT, 4);
    206206    curl_setopt($ch, CURLOPT_HEADER, 0);
    207     curl_setopt($ch, CURLOPT_USERAGENT, 'WP-URLCache 0.1 - http://blog.fusi0n.org/category/wp-urlcache');
     207    curl_setopt($ch, CURLOPT_USERAGENT, 'WP-URLCache 0.1 - http://blog.fusi0n.org/');
    208208    $buffer = curl_exec($ch);
    209209    curl_close($ch);
Note: See TracChangeset for help on using the changeset viewer.