Changeset 186230
- Timestamp:
- 12/22/2009 06:26:05 PM (16 years ago)
- Location:
- wp-urlcache
- Files:
-
- 2 edited
- 3 copied
-
tags/0.2 (copied) (copied from wp-urlcache/trunk)
-
tags/0.2/readme.txt (copied) (copied from wp-urlcache/trunk/readme.txt) (3 diffs)
-
tags/0.2/wp-urlcache.php (copied) (copied from wp-urlcache/trunk/wp-urlcache.php) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wp-urlcache.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-urlcache/tags/0.2/readme.txt
r184145 r186230 3 3 Tags: url, cache, archive, scrape 4 4 Requires at least: 2.7 5 Tested up to: 2.8. 66 Stable tag: 0. 15 Tested up to: 2.8.9 6 Stable tag: 0.2 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 17 17 18 18 * 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/`. 20 20 21 21 All you need to do after that is navigate to your blog’s administration panel, go in the plugins section and enable WP-URLCache. … … 26 26 27 27 == Frequently Asked Questions == 28 29 = How do I use it? = 30 31 Simply 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 28 36 29 37 = Any technical requirements? = -
wp-urlcache/tags/0.2/wp-urlcache.php
r184145 r186230 2 2 /* 3 3 Plugin Name: WP-URLCache 4 Plugin URI: http://blog.fusi0n.org /category/wp-urlcache4 Plugin URI: http://blog.fusi0n.org 5 5 Description: WP-URLCache allows you to use a shortcode to locally cache outgoing links in your posts and pages. 6 Version: 0. 16 Version: 0.2 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 205 205 curl_setopt($ch, CURLOPT_TIMEOUT, 4); 206 206 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/'); 208 208 $buffer = curl_exec($ch); 209 209 curl_close($ch); -
wp-urlcache/trunk/readme.txt
r184145 r186230 3 3 Tags: url, cache, archive, scrape 4 4 Requires at least: 2.7 5 Tested up to: 2.8. 66 Stable tag: 0. 15 Tested up to: 2.8.9 6 Stable tag: 0.2 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 17 17 18 18 * 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/`. 20 20 21 21 All you need to do after that is navigate to your blog’s administration panel, go in the plugins section and enable WP-URLCache. … … 26 26 27 27 == Frequently Asked Questions == 28 29 = How do I use it? = 30 31 Simply 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 28 36 29 37 = Any technical requirements? = -
wp-urlcache/trunk/wp-urlcache.php
r184145 r186230 2 2 /* 3 3 Plugin Name: WP-URLCache 4 Plugin URI: http://blog.fusi0n.org /category/wp-urlcache4 Plugin URI: http://blog.fusi0n.org 5 5 Description: WP-URLCache allows you to use a shortcode to locally cache outgoing links in your posts and pages. 6 Version: 0. 16 Version: 0.2 7 7 Author: Pier-Luc Petitclerc 8 8 Author URI: http://blog.fusi0n.org … … 205 205 curl_setopt($ch, CURLOPT_TIMEOUT, 4); 206 206 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/'); 208 208 $buffer = curl_exec($ch); 209 209 curl_close($ch);
Note: See TracChangeset
for help on using the changeset viewer.