Changeset 2008486
- Timestamp:
- 01/08/2019 03:18:59 PM (7 years ago)
- Location:
- post-archival
- Files:
-
- 4 edited
-
tags/1.3.1/post-archival.php (modified) (3 diffs)
-
tags/1.3.1/readme.txt (modified) (3 diffs)
-
trunk/post-archival.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-archival/tags/1.3.1/post-archival.php
r1755565 r2008486 2 2 /* 3 3 Plugin Name: Post Archival in the Internet Archive 4 Plugin URI: https://www. geeky.software/wordpress-plugins/post-archival/4 Plugin URI: https://www.ctrl.blog/entry/wordpress-internet-archive-plugin 5 5 Description: Automatically save new blog posts to the Internet Archive. 6 6 Version: 1.3.1 7 7 Author: Geeky Software 8 Author URI: https://www. geeky.software/8 Author URI: https://www.ctrl.blog/topic/wordpress 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 17 17 18 18 /* wppaiapi_file_get_contents() and wppaiapi_file_get_intbound_contents() 19 are documented at https://www. slightfuture.com/devel/php-file-contents-dual-stack */19 are documented at https://www.ctrl.blog/entry/php-file-contents-dual-stack */ 20 20 function wppaiapi_file_get_contents( $url ) { 21 21 $hostname = parse_url( $url, PHP_URL_HOST ); … … 81 81 wppaiapi_archive_link( $url ); 82 82 83 // Archive any linked resources in the post (only on publish) 83 // Archive any linked resources in the post (only on publish) 84 84 if ( $on_publish ) { 85 85 $post = get_post( $ID ); -
post-archival/tags/1.3.1/readme.txt
r1834875 r2008486 3 3 Tags: Internet Archive, Wayback Machine 4 4 Requires at least: 4.5.2 5 Tested up to: 4.9.45 Tested up to: 5.0.2 6 6 Stable tag: 1.3.1 7 7 License: GPLv3 … … 12 12 == Description == 13 13 14 The Internet Archive saves snapshots of web pages and makes them available for p rosperity. Now you can have your blog posts included in this internet-wide archive of knowledge!14 The Internet Archive saves snapshots of web pages and makes them available for posterity. Now you can have your blog posts included in this internet-wide archive of knowledge! 15 15 16 16 Install and enable this plugin and it will silently take care of the rest. There is no configuration or anything else required from you than to keep writing great blog posts. New posts will be submitted to the archive 12 hours after you publish them on your website. … … 92 92 * Archive the home page as a one-off when activating the plugin 93 93 * Shortened timeout when archiving posts 94 * More [fault-tolerant use of `file_get_contents()`](https://www. slightfuture.com/devel/php-file-contents-dual-stack) (IPv6)94 * More [fault-tolerant use of `file_get_contents()`](https://www.ctrl.blog/entry/php-file-contents-dual-stack) (IPv6) 95 95 * Resolved a problem leading to all edits incorrectly triggering new archival requests 96 96 * Stop send separate archive requests for shortlinks. -
post-archival/trunk/post-archival.php
r1755565 r2008486 2 2 /* 3 3 Plugin Name: Post Archival in the Internet Archive 4 Plugin URI: https://www. geeky.software/wordpress-plugins/post-archival/4 Plugin URI: https://www.ctrl.blog/entry/wordpress-internet-archive-plugin 5 5 Description: Automatically save new blog posts to the Internet Archive. 6 6 Version: 1.3.1 7 7 Author: Geeky Software 8 Author URI: https://www. geeky.software/8 Author URI: https://www.ctrl.blog/topic/wordpress 9 9 License: GPLv3 10 10 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 17 17 18 18 /* wppaiapi_file_get_contents() and wppaiapi_file_get_intbound_contents() 19 are documented at https://www. slightfuture.com/devel/php-file-contents-dual-stack */19 are documented at https://www.ctrl.blog/entry/php-file-contents-dual-stack */ 20 20 function wppaiapi_file_get_contents( $url ) { 21 21 $hostname = parse_url( $url, PHP_URL_HOST ); … … 81 81 wppaiapi_archive_link( $url ); 82 82 83 // Archive any linked resources in the post (only on publish) 83 // Archive any linked resources in the post (only on publish) 84 84 if ( $on_publish ) { 85 85 $post = get_post( $ID ); -
post-archival/trunk/readme.txt
r1885146 r2008486 3 3 Tags: Internet Archive, Wayback Machine 4 4 Requires at least: 4.5.2 5 Tested up to: 4.9.45 Tested up to: 5.0.2 6 6 Stable tag: 1.3.1 7 7 License: GPLv3 … … 92 92 * Archive the home page as a one-off when activating the plugin 93 93 * Shortened timeout when archiving posts 94 * More [fault-tolerant use of `file_get_contents()`](https://www. slightfuture.com/devel/php-file-contents-dual-stack) (IPv6)94 * More [fault-tolerant use of `file_get_contents()`](https://www.ctrl.blog/entry/php-file-contents-dual-stack) (IPv6) 95 95 * Resolved a problem leading to all edits incorrectly triggering new archival requests 96 96 * Stop send separate archive requests for shortlinks.
Note: See TracChangeset
for help on using the changeset viewer.