WebSub/PubSubHubbub - Version 2.2.2

Version Description

  • temporarily remove comment-feed support to be more GDPR compliant
Download this release

Release Info

Developer pfefferle
Plugin Icon 128x128 WebSub/PubSubHubbub
Version 2.2.2
Comparing to
See all releases

Code changes from version 2.2.1 to 2.2.2

Files changed (4) hide show
  1. LICENSE +21 -0
  2. includes/functions.php +2 -2
  3. pubsubhubbub.php +2 -2
  4. readme.txt +6 -2
LICENSE ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ MIT License
2
+
3
+ Copyright (c) 2018 Matthias Pfefferle, Josh Fraser
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
includes/functions.php CHANGED
@@ -81,8 +81,8 @@ function pubsubhubbub_get_topic_urls() {
81
  get_bloginfo( 'atom_url' ),
82
  get_bloginfo( 'rdf_url' ),
83
  get_bloginfo( 'rss2_url' ),
84
- get_bloginfo( 'comments_atom_url' ),
85
- get_bloginfo( 'comments_rss2_url' ),
86
  );
87
 
88
  $feeds = get_option( 'pubsubhubbub_topic_urls', $default_feeds );
81
  get_bloginfo( 'atom_url' ),
82
  get_bloginfo( 'rdf_url' ),
83
  get_bloginfo( 'rss2_url' ),
84
+ //get_bloginfo( 'comments_atom_url' ),
85
+ //get_bloginfo( 'comments_rss2_url' ),
86
  );
87
 
88
  $feeds = get_option( 'pubsubhubbub_topic_urls', $default_feeds );
pubsubhubbub.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: WebSub/PubSubHubbub
4
  * Plugin URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub/
5
  * Description: A better way to tell the world when your blog is updated.
6
- * Version: 2.2.1
7
  * Author: Matthias Pfefferle
8
  * Author URI: https://notiz.blog/
9
  * License: MIT
@@ -24,7 +24,7 @@ class PubSubHubbub_Plugin {
24
  require_once( dirname( __FILE__ ) . '/includes/functions.php' );
25
 
26
  add_action( 'publish_post', array( 'PubSubHubbub_Plugin', 'publish_post' ) );
27
- add_action( 'comment_post', array( 'PubSubHubbub_Plugin', 'publish_comment' ) );
28
 
29
  add_action( 'atom_head', array( 'PubSubHubbub_Plugin', 'add_atom_link_tag' ) );
30
  add_action( 'comments_atom_head', array( 'PubSubHubbub_Plugin', 'add_atom_link_tag' ) );
3
  * Plugin Name: WebSub/PubSubHubbub
4
  * Plugin URI: https://github.com/pubsubhubbub/wordpress-pubsubhubbub/
5
  * Description: A better way to tell the world when your blog is updated.
6
+ * Version: 2.2.2
7
  * Author: Matthias Pfefferle
8
  * Author URI: https://notiz.blog/
9
  * License: MIT
24
  require_once( dirname( __FILE__ ) . '/includes/functions.php' );
25
 
26
  add_action( 'publish_post', array( 'PubSubHubbub_Plugin', 'publish_post' ) );
27
+ //add_action( 'comment_post', array( 'PubSubHubbub_Plugin', 'publish_comment' ) );
28
 
29
  add_action( 'atom_head', array( 'PubSubHubbub_Plugin', 'add_atom_link_tag' ) );
30
  add_action( 'comments_atom_head', array( 'PubSubHubbub_Plugin', 'add_atom_link_tag' ) );
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: pfefferle, joshfraz
3
  Donate link: https://notiz.blog/donate/
4
  Tags: webhooks, websub, puhsubhubbub, pubsub, ping, push, indieweb, openweb, ostatus
5
  Requires at least: 4.5
6
- Tested up to: 4.9.3
7
- Stable tag: 2.2.1
8
 
9
  A better way to tell the world when your blog is updated.
10
 
@@ -55,6 +55,10 @@ You can visit [PubsSubHubbub on Github](https://github.com/pubsubhubbub "PubsSub
55
 
56
  Project maintained on github at [pubsubhubbub/wordpress-pubsubhubbub](https://github.com/pubsubhubbub/wordpress-pubsubhubbub).
57
 
 
 
 
 
58
  = 2.2.1 =
59
 
60
  * display topic URLs on the settings page
3
  Donate link: https://notiz.blog/donate/
4
  Tags: webhooks, websub, puhsubhubbub, pubsub, ping, push, indieweb, openweb, ostatus
5
  Requires at least: 4.5
6
+ Tested up to: 4.9.6
7
+ Stable tag: 2.2.2
8
 
9
  A better way to tell the world when your blog is updated.
10
 
55
 
56
  Project maintained on github at [pubsubhubbub/wordpress-pubsubhubbub](https://github.com/pubsubhubbub/wordpress-pubsubhubbub).
57
 
58
+ = 2.2.2 =
59
+
60
+ * temporarily remove comment-feed support to be more GDPR compliant
61
+
62
  = 2.2.1 =
63
 
64
  * display topic URLs on the settings page