Changeset 1994765
- Timestamp:
- 12/14/2018 12:22:07 PM (7 years ago)
- Location:
- wp-auto-links
- Files:
-
- 1 added
- 8 edited
- 8 copied
-
tags/1.1.0 (added)
-
tags/1.1.0/LICENSE (copied) (copied from wp-auto-links/trunk/LICENSE)
-
tags/1.1.0/composer.json (copied) (copied from wp-auto-links/trunk/composer.json)
-
tags/1.1.0/composer.lock (copied) (copied from wp-auto-links/trunk/composer.lock)
-
tags/1.1.0/readme.txt (copied) (copied from wp-auto-links/trunk/readme.txt) (5 diffs)
-
tags/1.1.0/src (copied) (copied from wp-auto-links/trunk/src)
-
tags/1.1.0/templates (copied) (copied from wp-auto-links/trunk/templates)
-
tags/1.1.0/vendor (copied) (copied from wp-auto-links/trunk/vendor)
-
tags/1.1.0/vendor/autoload.php (modified) (1 diff)
-
tags/1.1.0/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.1.0/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.1.0/wp-auto-links.php (copied) (copied from wp-auto-links/trunk/wp-auto-links.php) (1 diff)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/wp-auto-links.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-auto-links/tags/1.1.0/readme.txt
r1994764 r1994765 15 15 16 16 This plugin adds internal and external links into post and page, based on different sources: 17 - Your custom keywords 18 - Posts 19 - Pages 20 - Categories 21 - Tags 17 18 * Custom keywords 19 * Posts 20 * Pages 21 * Categories 22 * Tags 22 23 23 24 The plugin provides simple and standard interfaces: 24 - Clean & clear admin page that allow highly customizable usage 25 - Useful CLI commands 26 - Respect web standards 25 26 * Clean & clear admin page that allow highly customizable usage 27 * Useful CLI commands 28 * Respect PHP, web and basic security standards 27 29 28 30 Low load impact in mind, some hard requirements are requested: 29 - PHP 7.2+ (⚠ requirement) 30 - WordPress 5.0+ (⚠ requirement) 31 - Object Cache handler (⚠ requirement) 31 32 * PHP 7.2+ (⚠ requirement) 33 * WordPress 5.0+ (⚠ requirement) 34 * Object Cache handler (⚠ requirement) 32 35 33 36 == Installation == … … 35 38 = Requirements = 36 39 37 - PHP 7.2+ (⚠ requirement) 38 - WordPress 5.0+ (⚠ requirement) 39 - Object Cache handler (⚠ requirement) 40 * PHP 7.2+ 41 * WordPress 5.0+ 42 * Object Cache handler 40 43 41 44 = Manual = … … 57 60 58 61 Thanks! 59 First of all you can contribute on the GitHub repository: https://github.com/LeoColomb/wp-auto-links60 If you prefer make a donation : https://www.patreon.com/LeoColomb62 First of all you can contribute on [the GitHub repository]https://github.com/LeoColomb/wp-auto-links). 63 If you prefer make a donation, [please see my Patreon page](https://www.patreon.com/LeoColomb)! 61 64 62 65 = My system runs an older version of a software specified in the plugin requirements. = … … 76 79 == Changelog == 77 80 78 The changelog is available on GitHub: https://github.com/LeoColomb/wp-auto-links/releases 81 [The changelog is available on GitHub](https://github.com/LeoColomb/wp-auto-links/releases). 79 82 80 83 == Upgrade Notice == … … 85 88 == Contributors == 86 89 87 Léo Colombaro(https://colombaro.fr)90 [Léo Colombaro](https://colombaro.fr) -
wp-auto-links/tags/1.1.0/vendor/autoload.php
r1994755 r1994765 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4::getLoader();7 return ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21::getLoader(); -
wp-auto-links/tags/1.1.0/vendor/composer/autoload_real.php
r1994755 r1994765 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab45 class ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
wp-auto-links/tags/1.1.0/vendor/composer/autoload_static.php
r1994755 r1994765 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab47 class ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 122 122 { 123 123 return \Closure::bind(function () use ($loader) { 124 $loader->prefixLengthsPsr4 = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$prefixLengthsPsr4;125 $loader->prefixDirsPsr4 = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$prefixDirsPsr4;126 $loader->classMap = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$classMap;124 $loader->prefixLengthsPsr4 = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$prefixLengthsPsr4; 125 $loader->prefixDirsPsr4 = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$prefixDirsPsr4; 126 $loader->classMap = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$classMap; 127 127 128 128 }, null, ClassLoader::class); -
wp-auto-links/tags/1.1.0/wp-auto-links.php
r1994764 r1994765 3 3 Plugin Name: WP Auto Links 4 4 Plugin URI: https://github.com/LeoColomb/wp-auto-links 5 Description: A dds automatically internal and external links to list of keywords.6 Version: 1. 0.05 Description: An inner links generator for WordPress 6 Version: 1.1.0 7 7 Author: Léo Colombaro 8 8 Author URI: https://colombaro.fr/ 9 9 10 License: MITLicense11 License URI: https://opensource.org/licenses/ MIT10 License: ISC License 11 License URI: https://opensource.org/licenses/ISC 12 12 */ 13 13 -
wp-auto-links/trunk/readme.txt
r1994755 r1994765 15 15 16 16 This plugin adds internal and external links into post and page, based on different sources: 17 - Your custom keywords 18 - Posts 19 - Pages 20 - Categories 21 - Tags 17 18 * Custom keywords 19 * Posts 20 * Pages 21 * Categories 22 * Tags 22 23 23 24 The plugin provides simple and standard interfaces: 24 - Clean & clear admin page that allow highly customizable usage 25 - Useful CLI commands 26 - Respect web standards 25 26 * Clean & clear admin page that allow highly customizable usage 27 * Useful CLI commands 28 * Respect PHP, web and basic security standards 27 29 28 30 Low load impact in mind, some hard requirements are requested: 29 - PHP 7.2+ (⚠ requirement) 30 - WordPress 5.0+ (⚠ requirement) 31 - Object Cache handler (⚠ requirement) 31 32 * PHP 7.2+ (⚠ requirement) 33 * WordPress 5.0+ (⚠ requirement) 34 * Object Cache handler (⚠ requirement) 32 35 33 36 == Installation == … … 35 38 = Requirements = 36 39 37 - PHP 7.2+ (⚠ requirement) 38 - WordPress 5.0+ (⚠ requirement) 39 - Object Cache handler (⚠ requirement) 40 * PHP 7.2+ 41 * WordPress 5.0+ 42 * Object Cache handler 40 43 41 44 = Manual = … … 57 60 58 61 Thanks! 59 First of all you can contribute on the GitHub repository: https://github.com/LeoColomb/wp-auto-links60 If you prefer make a donation : https://www.patreon.com/LeoColomb62 First of all you can contribute on [the GitHub repository]https://github.com/LeoColomb/wp-auto-links). 63 If you prefer make a donation, [please see my Patreon page](https://www.patreon.com/LeoColomb)! 61 64 62 65 = My system runs an older version of a software specified in the plugin requirements. = … … 76 79 == Changelog == 77 80 78 The changelog is available on GitHub: https://github.com/LeoColomb/wp-auto-links/releases 81 [The changelog is available on GitHub](https://github.com/LeoColomb/wp-auto-links/releases). 79 82 80 83 == Upgrade Notice == … … 85 88 == Contributors == 86 89 87 Léo Colombaro(https://colombaro.fr)90 [Léo Colombaro](https://colombaro.fr) -
wp-auto-links/trunk/vendor/autoload.php
r1994755 r1994765 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4::getLoader();7 return ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21::getLoader(); -
wp-auto-links/trunk/vendor/composer/autoload_real.php
r1994755 r1994765 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab45 class ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21 6 6 { 7 7 private static $loader; … … 20 20 } 21 21 22 spl_autoload_register(array('ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4', 'loadClassLoader'), true, true);22 spl_autoload_register(array('ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21', 'loadClassLoader'), true, true); 23 23 self::$loader = $loader = new \Composer\Autoload\ClassLoader(); 24 spl_autoload_unregister(array('ComposerAutoloaderInite 4cc7660e297e2f1c58d934d4c507ab4', 'loadClassLoader'));24 spl_autoload_unregister(array('ComposerAutoloaderInited7cf8d6445ccabd2c78f8bf66b1be21', 'loadClassLoader')); 25 25 26 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 28 28 require_once __DIR__ . '/autoload_static.php'; 29 29 30 call_user_func(\Composer\Autoload\ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::getInitializer($loader));30 call_user_func(\Composer\Autoload\ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::getInitializer($loader)); 31 31 } else { 32 32 $map = require __DIR__ . '/autoload_namespaces.php'; -
wp-auto-links/trunk/vendor/composer/autoload_static.php
r1994755 r1994765 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab47 class ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 122 122 { 123 123 return \Closure::bind(function () use ($loader) { 124 $loader->prefixLengthsPsr4 = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$prefixLengthsPsr4;125 $loader->prefixDirsPsr4 = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$prefixDirsPsr4;126 $loader->classMap = ComposerStaticInite 4cc7660e297e2f1c58d934d4c507ab4::$classMap;124 $loader->prefixLengthsPsr4 = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$prefixLengthsPsr4; 125 $loader->prefixDirsPsr4 = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$prefixDirsPsr4; 126 $loader->classMap = ComposerStaticInited7cf8d6445ccabd2c78f8bf66b1be21::$classMap; 127 127 128 128 }, null, ClassLoader::class); -
wp-auto-links/trunk/wp-auto-links.php
r1994755 r1994765 3 3 Plugin Name: WP Auto Links 4 4 Plugin URI: https://github.com/LeoColomb/wp-auto-links 5 Description: A dds automatically internal and external links to list of keywords.6 Version: 1. 0.05 Description: An inner links generator for WordPress 6 Version: 1.1.0 7 7 Author: Léo Colombaro 8 8 Author URI: https://colombaro.fr/ 9 9 10 License: MITLicense11 License URI: https://opensource.org/licenses/ MIT10 License: ISC License 11 License URI: https://opensource.org/licenses/ISC 12 12 */ 13 13
Note: See TracChangeset
for help on using the changeset viewer.