Changeset 2026550
- Timestamp:
- 02/07/2019 12:59:45 PM (7 years ago)
- Location:
- rich-meta-in-rdfa
- Files:
-
- 5 edited
- 22 copied
-
tags/1.2.1 (copied) (copied from rich-meta-in-rdfa/trunk)
-
tags/1.2.1/.editorconfig (copied) (copied from rich-meta-in-rdfa/trunk/.editorconfig)
-
tags/1.2.1/.travis.yml (copied) (copied from rich-meta-in-rdfa/trunk/.travis.yml)
-
tags/1.2.1/AUTHORS (copied) (copied from rich-meta-in-rdfa/trunk/AUTHORS)
-
tags/1.2.1/CHANGELOG.md (copied) (copied from rich-meta-in-rdfa/trunk/CHANGELOG.md) (1 diff)
-
tags/1.2.1/LICENSE (copied) (copied from rich-meta-in-rdfa/trunk/LICENSE)
-
tags/1.2.1/LICENSE.txt (copied) (copied from rich-meta-in-rdfa/trunk/LICENSE.txt)
-
tags/1.2.1/README.txt (copied) (copied from rich-meta-in-rdfa/trunk/README.txt) (2 diffs)
-
tags/1.2.1/admin (copied) (copied from rich-meta-in-rdfa/trunk/admin)
-
tags/1.2.1/admin/class-rich-meta-in-rdfa-admin.php (copied) (copied from rich-meta-in-rdfa/trunk/admin/class-rich-meta-in-rdfa-admin.php)
-
tags/1.2.1/admin/partials/rich-meta-in-rdfa-admin-display.php (copied) (copied from rich-meta-in-rdfa/trunk/admin/partials/rich-meta-in-rdfa-admin-display.php)
-
tags/1.2.1/bin (copied) (copied from rich-meta-in-rdfa/trunk/bin)
-
tags/1.2.1/includes (copied) (copied from rich-meta-in-rdfa/trunk/includes)
-
tags/1.2.1/includes/class-rich-meta-in-rdfa.php (copied) (copied from rich-meta-in-rdfa/trunk/includes/class-rich-meta-in-rdfa.php) (1 diff)
-
tags/1.2.1/phpcs.xml.dist (copied) (copied from rich-meta-in-rdfa/trunk/phpcs.xml.dist)
-
tags/1.2.1/phpunit.xml.dist (copied) (copied from rich-meta-in-rdfa/trunk/phpunit.xml.dist)
-
tags/1.2.1/public (copied) (copied from rich-meta-in-rdfa/trunk/public)
-
tags/1.2.1/public/class-rich-meta-in-rdfa-public.php (copied) (copied from rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php) (1 diff)
-
tags/1.2.1/rich-meta-in-rdfa.php (copied) (copied from rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php) (1 diff)
-
tags/1.2.1/tests (copied) (copied from rich-meta-in-rdfa/trunk/tests)
-
tags/1.2.1/tests/test-class-rich-meta-in-rdfa-public.php (copied) (copied from rich-meta-in-rdfa/trunk/tests/test-class-rich-meta-in-rdfa-public.php)
-
tags/1.2.1/uninstall.php (copied) (copied from rich-meta-in-rdfa/trunk/uninstall.php)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-rich-meta-in-rdfa.php (modified) (1 diff)
-
trunk/public/class-rich-meta-in-rdfa-public.php (modified) (1 diff)
-
trunk/rich-meta-in-rdfa.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rich-meta-in-rdfa/tags/1.2.1/CHANGELOG.md
r2022535 r2026550 4 4 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) 5 5 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 6 7 ## [1.2.1] - 2019-02-07 8 - The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones 9 with identifiers 6 10 7 11 ## [1.2.0] - 2019-01-31 -
rich-meta-in-rdfa/tags/1.2.1/README.txt
r2022535 r2026550 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.2. 08 Stable tag: 1.2.1 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 48 48 == Changelog == 49 49 50 = 1.2.1 = 51 * The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones 52 with identifiers 53 50 54 = 1.2.0 = 51 55 * A special sitemap can now be created to provide all posts of WP, their URL and Last modification date, this is -
rich-meta-in-rdfa/tags/1.2.1/includes/class-rich-meta-in-rdfa.php
r2022535 r2026550 65 65 $this->version = RICH_META_IN_RDFA_VERSION; 66 66 } else { 67 $this->version = '1.2. 0';67 $this->version = '1.2.1'; 68 68 } 69 69 $this->plugin_name = 'rich-meta-in-rdfa'; -
rich-meta-in-rdfa/tags/1.2.1/public/class-rich-meta-in-rdfa-public.php
r2022535 r2026550 184 184 global $wpdb; 185 185 $p = $wpdb->posts; 186 return "$p.ID, $p.post_date, $p.post_title, $p.post_ status, $p.post_modified, $p.post_type";186 return "$p.ID, $p.post_date, $p.post_title, $p.post_name, $p.post_status, $p.post_modified, $p.post_type"; 187 187 } 188 188 -
rich-meta-in-rdfa/tags/1.2.1/rich-meta-in-rdfa.php
r2022535 r2026550 17 17 * Plugin URI: https://github.com/dariah-eric/rich-meta-in-rdfa 18 18 * Description: This plugin allows user to add RDFa into their posts. 19 * Version: 1.2. 019 * Version: 1.2.1 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu -
rich-meta-in-rdfa/trunk/CHANGELOG.md
r2022535 r2026550 4 4 The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) 5 5 and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). 6 7 ## [1.2.1] - 2019-02-07 8 - The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones 9 with identifiers 6 10 7 11 ## [1.2.0] - 2019-01-31 -
rich-meta-in-rdfa/trunk/README.txt
r2022535 r2026550 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.2. 08 Stable tag: 1.2.1 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 48 48 == Changelog == 49 49 50 = 1.2.1 = 51 * The sitemap rich-meta-in-rdfa.xml was wrong on websites using permalink with full name of the post6, instead of ones 52 with identifiers 53 50 54 = 1.2.0 = 51 55 * A special sitemap can now be created to provide all posts of WP, their URL and Last modification date, this is -
rich-meta-in-rdfa/trunk/includes/class-rich-meta-in-rdfa.php
r2022535 r2026550 65 65 $this->version = RICH_META_IN_RDFA_VERSION; 66 66 } else { 67 $this->version = '1.2. 0';67 $this->version = '1.2.1'; 68 68 } 69 69 $this->plugin_name = 'rich-meta-in-rdfa'; -
rich-meta-in-rdfa/trunk/public/class-rich-meta-in-rdfa-public.php
r2022535 r2026550 184 184 global $wpdb; 185 185 $p = $wpdb->posts; 186 return "$p.ID, $p.post_date, $p.post_title, $p.post_ status, $p.post_modified, $p.post_type";186 return "$p.ID, $p.post_date, $p.post_title, $p.post_name, $p.post_status, $p.post_modified, $p.post_type"; 187 187 } 188 188 -
rich-meta-in-rdfa/trunk/rich-meta-in-rdfa.php
r2022535 r2026550 17 17 * Plugin URI: https://github.com/dariah-eric/rich-meta-in-rdfa 18 18 * Description: This plugin allows user to add RDFa into their posts. 19 * Version: 1.2. 019 * Version: 1.2.1 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu
Note: See TracChangeset
for help on using the changeset viewer.