Changeset 1957411
- Timestamp:
- 10/16/2018 10:30:34 AM (7 years ago)
- Location:
- nerd-wp
- Files:
-
- 7 edited
- 24 copied
-
tags/1.1.4 (copied) (copied from nerd-wp/trunk)
-
tags/1.1.4/.editorconfig (copied) (copied from nerd-wp/trunk/.editorconfig)
-
tags/1.1.4/.travis.yml (copied) (copied from nerd-wp/trunk/.travis.yml)
-
tags/1.1.4/AUTHORS (copied) (copied from nerd-wp/trunk/AUTHORS)
-
tags/1.1.4/CHANGELOG.md (copied) (copied from nerd-wp/trunk/CHANGELOG.md) (1 diff)
-
tags/1.1.4/LICENSE.txt (copied) (copied from nerd-wp/trunk/LICENSE.txt)
-
tags/1.1.4/README.txt (copied) (copied from nerd-wp/trunk/README.txt) (2 diffs)
-
tags/1.1.4/admin (copied) (copied from nerd-wp/trunk/admin)
-
tags/1.1.4/admin/class-nerd-wp-admin.php (copied) (copied from nerd-wp/trunk/admin/class-nerd-wp-admin.php)
-
tags/1.1.4/bin (copied) (copied from nerd-wp/trunk/bin)
-
tags/1.1.4/includes (copied) (copied from nerd-wp/trunk/includes)
-
tags/1.1.4/includes/class-nerd-wp.php (copied) (copied from nerd-wp/trunk/includes/class-nerd-wp.php) (1 diff)
-
tags/1.1.4/libraries (copied) (copied from nerd-wp/trunk/libraries)
-
tags/1.1.4/libraries/readability/Utils/OpenGraphForNerd.php (modified) (1 diff)
-
tags/1.1.4/libraries/readability/Utils/ReadabilityForNerd.php (copied) (copied from nerd-wp/trunk/libraries/readability/Utils/ReadabilityForNerd.php) (1 diff)
-
tags/1.1.4/libraries/readability/autoloader.php (copied) (copied from nerd-wp/trunk/libraries/readability/autoloader.php)
-
tags/1.1.4/nerd-wp.php (copied) (copied from nerd-wp/trunk/nerd-wp.php) (1 diff)
-
tags/1.1.4/phpcs.xml.dist (copied) (copied from nerd-wp/trunk/phpcs.xml.dist)
-
tags/1.1.4/phpunit.xml.dist (copied) (copied from nerd-wp/trunk/phpunit.xml.dist)
-
tags/1.1.4/public (copied) (copied from nerd-wp/trunk/public)
-
tags/1.1.4/public/class-nerd-wp-public.php (copied) (copied from nerd-wp/trunk/public/class-nerd-wp-public.php)
-
tags/1.1.4/public/class-nerd-wp-widget.php (copied) (copied from nerd-wp/trunk/public/class-nerd-wp-widget.php)
-
tags/1.1.4/public/js/nerd-wp-public.js (copied) (copied from nerd-wp/trunk/public/js/nerd-wp-public.js)
-
tags/1.1.4/tests (copied) (copied from nerd-wp/trunk/tests)
-
tags/1.1.4/uninstall.php (copied) (copied from nerd-wp/trunk/uninstall.php)
-
trunk/CHANGELOG.md (modified) (1 diff)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/class-nerd-wp.php (modified) (1 diff)
-
trunk/libraries/readability/Utils/OpenGraphForNerd.php (modified) (1 diff)
-
trunk/libraries/readability/Utils/ReadabilityForNerd.php (modified) (1 diff)
-
trunk/nerd-wp.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
nerd-wp/tags/1.1.4/CHANGELOG.md
r1955821 r1957411 6 6 7 7 ## Unreleased 8 9 ## [1.1.4] - 2018-10-16 10 ### Changed 11 - Add missing namespace for the HTML parser 8 12 9 13 ## [1.1.3] - 2018-10-12 -
nerd-wp/tags/1.1.4/README.txt
r1955821 r1957411 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.1. 38 Stable tag: 1.1.4 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 38 38 == Changelog == 39 39 40 = 1.1.4 = 41 * Add missing namespace for the HTML parser 42 40 43 = 1.1.3 = 41 44 * Add missing imports, was not important for most usage -
nerd-wp/tags/1.1.4/includes/class-nerd-wp.php
r1955821 r1957411 65 65 $this->version = NERD_WP_VERSION; 66 66 } else { 67 $this->version = '1.1. 3';67 $this->version = '1.1.4'; 68 68 } 69 69 $this->plugin_name = 'nerd-wp'; -
nerd-wp/tags/1.1.4/libraries/readability/Utils/OpenGraphForNerd.php
r1925226 r1957411 25 25 26 26 use DOMDocument; 27 use DOMXPath; 27 28 use Iterator; 28 29 -
nerd-wp/tags/1.1.4/libraries/readability/Utils/ReadabilityForNerd.php
r1955821 r1957411 146 146 @$this->dom->loadHTML( $html ); 147 147 } 148 $this->dom->registerNodeClass( 'DOMElement', ' JSLikeHTMLElementForNerd' );148 $this->dom->registerNodeClass( 'DOMElement', 'Nerd_Wp_Lib\Utils\JSLikeHTMLElementForNerd' ); 149 149 } 150 150 -
nerd-wp/tags/1.1.4/nerd-wp.php
r1955821 r1957411 17 17 * Plugin URI: https://github.com/dariah-eric/nerd-wp 18 18 * Description: NERD (Named Entity Recognition and Disambiguation: https://github.com/kermitt2/entity-fishing) is an application that allows to recognize and disambiguate named entities. This plugin allows integration of this with Wordpress. 19 * Version: 1.1. 319 * Version: 1.1.4 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu -
nerd-wp/trunk/CHANGELOG.md
r1955821 r1957411 6 6 7 7 ## Unreleased 8 9 ## [1.1.4] - 2018-10-16 10 ### Changed 11 - Add missing namespace for the HTML parser 8 12 9 13 ## [1.1.3] - 2018-10-12 -
nerd-wp/trunk/README.txt
r1955821 r1957411 6 6 Tested up to: 4.9.1 7 7 Requires PHP: 5.6.35 8 Stable tag: 1.1. 38 Stable tag: 1.1.4 9 9 License: Apache License - 2.0 10 10 License URI: http://www.apache.org/licenses/LICENSE-2.0 … … 38 38 == Changelog == 39 39 40 = 1.1.4 = 41 * Add missing namespace for the HTML parser 42 40 43 = 1.1.3 = 41 44 * Add missing imports, was not important for most usage -
nerd-wp/trunk/includes/class-nerd-wp.php
r1955821 r1957411 65 65 $this->version = NERD_WP_VERSION; 66 66 } else { 67 $this->version = '1.1. 3';67 $this->version = '1.1.4'; 68 68 } 69 69 $this->plugin_name = 'nerd-wp'; -
nerd-wp/trunk/libraries/readability/Utils/OpenGraphForNerd.php
r1925226 r1957411 25 25 26 26 use DOMDocument; 27 use DOMXPath; 27 28 use Iterator; 28 29 -
nerd-wp/trunk/libraries/readability/Utils/ReadabilityForNerd.php
r1955821 r1957411 146 146 @$this->dom->loadHTML( $html ); 147 147 } 148 $this->dom->registerNodeClass( 'DOMElement', ' JSLikeHTMLElementForNerd' );148 $this->dom->registerNodeClass( 'DOMElement', 'Nerd_Wp_Lib\Utils\JSLikeHTMLElementForNerd' ); 149 149 } 150 150 -
nerd-wp/trunk/nerd-wp.php
r1955821 r1957411 17 17 * Plugin URI: https://github.com/dariah-eric/nerd-wp 18 18 * Description: NERD (Named Entity Recognition and Disambiguation: https://github.com/kermitt2/entity-fishing) is an application that allows to recognize and disambiguate named entities. This plugin allows integration of this with Wordpress. 19 * Version: 1.1. 319 * Version: 1.1.4 20 20 * Author: Yoann 21 21 * Author URI: https://www.dariah.eu
Note: See TracChangeset
for help on using the changeset viewer.