Skip to content
This repository has been archived by the owner on Apr 4, 2023. It is now read-only.

Mf2 Improvements #85

Closed
wants to merge 13 commits into from
Closed
Show file tree
Hide file tree
Changes from 8 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
**Donate link:** http://14101978.de
**Tags:** webmention, pingback, trackback, linkback, microformats, comments, indieweb
**Requires at least:** 4.7
**Tested up to:** 4.7.2
**Stable tag:** 3.3.0
**Tested up to:** 4.7.4
**Stable tag:** 3.4.0

Richer Comments and Linkbacks for WordPress!

Expand All @@ -29,14 +29,16 @@ to enhance linkbacks. The plugin is most useful with webmention support(separate

### What about the semantic "comment" types? ###

The IndieWeb community defines several types of feedback:
The IndieWeb community defines several types of feedback supported by this plugin:

* Replies: <http://indieweb.org/replies>
* Reposts: <http://indieweb.org/repost>
* Likes: <http://indieweb.org/likes>
* Favorites: <http://indieweb.org/favorite>
* RSVPs: <http://indieweb.org/rsvp>
* Tagging: <http://indieweb.org/tag>
* Bookmarks: <http://indieweb.org/bookmark>
* Quote: <http://indieweb.org/quotation>
* Classic "Mentions": <http://indieweb.org/mentions>

### How do I extend this plugin? ###
Expand All @@ -51,6 +53,15 @@ The Webmention and Pingback logos are made by [Aaron Parecki](http://aaronpareck

Project actively developed on Github at [pfefferle/wordpress-semantic-linkbacks](https://github.com/pfefferle/wordpress-semantic-linkbacks). Please file support issues there.


### 3.4.0 ###
* fixed misclassification of types as mention
* rewrote interpreter code to expand beyond h-entry parsing
* mf2 properties now stored in comment meta
* location parameters set per Geodata guidelines
* blacklist filter created `semantic_linkbacks_mf2_props_blacklist` which filters a blacklist of parameters not saved to meta
* add quote type for future enhancement

### 3.3.1 ###

* fixed https://github.com/pfefferle/wordpress-semantic-linkbacks/issues/68
Expand Down
2 changes: 2 additions & 0 deletions includes/class-linkbacks-handler.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,7 @@ public static function get_comment_type_excerpts() {
'like' => __( '%1$s liked %2$s on <a href="%3$s">%4$s</a>.', 'semantic-linkbacks' ),
'favorite' => __( '%1$s favorited %2$s on <a href="%3$s">%4$s</a>.', 'semantic-linkbacks' ),
'tag' => __( '%1$s tagged %2$s on <a href="%3$s">%4$s</a>.', 'semantic-linkbacks' ),
'quote' => __( '%1$s quoted %2$s <a href="%3$s">%4$s</a>.', 'semantic-linkbacks' ),
'bookmark' => __( '%1$s bookmarked %2$s on <a href="%3$s">%4$s</a>.', 'semantic-linkbacks' ),
'rsvp:yes' => __( '%1$s is <strong>attending</strong>.', 'semantic-linkbacks' ),
'rsvp:no' => __( '%1$s is <strong>not attending</strong>.', 'semantic-linkbacks' ),
Expand Down Expand Up @@ -202,6 +203,7 @@ public static function get_comment_type_strings() {
'favorite' => __( 'Favorite', 'semantic-linkbacks' ),
'tag' => __( 'Tag', 'semantic-linkbacks' ),
'bookmark' => __( 'Bookmark', 'semantic-linkbacks' ),
'quote' => __( 'Quote', 'semantic-linkbacks' ),
'rsvp:yes' => __( 'RSVP', 'semantic-linkbacks' ),
'rsvp:no' => __( 'RSVP', 'semantic-linkbacks' ),
'rsvp:invited' => __( 'RSVP', 'semantic-linkbacks' ),
Expand Down
Loading