Changeset 1558645
- Timestamp:
- 12/20/2016 10:33:31 PM (9 years ago)
- Location:
- thumbsniper/trunk
- Files:
-
- 1 added
- 10 edited
-
composer.json (modified) (1 diff)
-
composer.lock (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
-
thumbsniper.php (modified) (1 diff)
-
vendor/autoload.php (modified) (1 diff)
-
vendor/composer/ClassLoader.php (modified) (5 diffs)
-
vendor/composer/LICENSE (modified) (1 diff)
-
vendor/composer/autoload_real.php (modified) (1 diff)
-
vendor/composer/autoload_static.php (added)
-
vendor/composer/installed.json (modified) (1 diff)
-
vendor/thumbsniper/tooltip/lib/thumbsniper/common/TooltipSettings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
thumbsniper/trunk/composer.json
r1335124 r1558645 9 9 "name": "Thomas Schulte", 10 10 "email": "thomas@cupracer.de", 11 "homepage": "https:// www.mynakedgirlfriend.de",11 "homepage": "https://cupracer.de", 12 12 "role": "Project founder" 13 13 } -
thumbsniper/trunk/composer.lock
r1336244 r1558645 5 5 "This file is @generated automatically" 6 6 ], 7 "hash": " 2de35f29f88d2b9b271e34816a59e073",7 "hash": "0fb153dadfad4055c84c3fa08744028c", 8 8 "content-hash": "7595c57c40b1604701a02b87a03f7e97", 9 9 "packages": [ … … 14 14 "type": "git", 15 15 "url": "https://github.com/thumbsniper/tooltip.git", 16 "reference": " e81950f123b907b4bcc36267fbca5d391e5d6e82"16 "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9" 17 17 }, 18 18 "dist": { 19 19 "type": "zip", 20 "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/ e81950f123b907b4bcc36267fbca5d391e5d6e82",21 "reference": " e81950f123b907b4bcc36267fbca5d391e5d6e82",20 "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/5f9fb5544ebe8302ab27d86258a6dc51ad2048c9", 21 "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9", 22 22 "shasum": "" 23 23 }, … … 42 42 "description": "ThumbSniper Tooltip", 43 43 "homepage": "https://thumbsniper.com", 44 "time": "2016- 01-26 10:58:44"44 "time": "2016-12-20 22:24:07" 45 45 } 46 46 ], -
thumbsniper/trunk/readme.txt
r1436179 r1558645 4 4 Tags: screenshot, image, plugin, preview, tooltip, thumbnail, hyperlink, link, url, fade, 3D, reflection 5 5 Requires at least: 3.2 6 Tested up to: 4. 57 Stable tag: 2.9. 66 Tested up to: 4.7 7 Stable tag: 2.9.7 8 8 9 9 This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site. … … 53 53 54 54 == Changelog == 55 56 = 2.9.7 = 57 * Use minified JavaScript for qTip2 55 58 56 59 = 2.9.6 = -
thumbsniper/trunk/thumbsniper.php
r1436201 r1558645 5 5 Description: This plugin dynamically shows preview screenshots of hyperlinks as tooltips on your WordPress site. 6 6 Author: Thomas Schulte 7 Version: 2.9. 67 Version: 2.9.7 8 8 Author URI: http://www.mynakedgirlfriend.de 9 9 Text Domain: thumbsniper -
thumbsniper/trunk/vendor/autoload.php
r1335475 r1558645 3 3 // autoload.php @generated by Composer 4 4 5 require_once __DIR__ . '/composer ' . '/autoload_real.php';5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 7 return ComposerAutoloaderInita6d1fe3bd45df4bfa2641c8ac3e7e4cf::getLoader(); -
thumbsniper/trunk/vendor/composer/ClassLoader.php
r1335475 r1558645 54 54 private $useIncludePath = false; 55 55 private $classMap = array(); 56 57 56 private $classMapAuthoritative = false; 57 private $missingClasses = array(); 58 58 59 59 public function getPrefixes() … … 148 148 * 149 149 * @param string $prefix The prefix/namespace, with trailing '\\' 150 * @param array|string $paths The PSR- 0base directories150 * @param array|string $paths The PSR-4 base directories 151 151 * @param bool $prepend Whether to prepend the directories 152 152 * … … 323 323 return $this->classMap[$class]; 324 324 } 325 if ($this->classMapAuthoritative ) {325 if ($this->classMapAuthoritative || isset($this->missingClasses[$class])) { 326 326 return false; 327 327 } … … 330 330 331 331 // Search for Hack files if we are running on HHVM 332 if ( $file === null&& defined('HHVM_VERSION')) {332 if (false === $file && defined('HHVM_VERSION')) { 333 333 $file = $this->findFileWithExtension($class, '.hh'); 334 334 } 335 335 336 if ( $file === null) {336 if (false === $file) { 337 337 // Remember that this class does not exist. 338 return $this->classMap[$class] = false;338 $this->missingClasses[$class] = true; 339 339 } 340 340 … … 400 400 return $file; 401 401 } 402 403 return false; 402 404 } 403 405 } -
thumbsniper/trunk/vendor/composer/LICENSE
r1335475 r1558645 1 1 2 Copyright (c) 201 5Nils Adermann, Jordi Boggiano2 Copyright (c) 2016 Nils Adermann, Jordi Boggiano 3 3 4 4 Permission is hereby granted, free of charge, to any person obtaining a copy -
thumbsniper/trunk/vendor/composer/autoload_real.php
r1335475 r1558645 24 24 spl_autoload_unregister(array('ComposerAutoloaderInita6d1fe3bd45df4bfa2641c8ac3e7e4cf', 'loadClassLoader')); 25 25 26 $map = require __DIR__ . '/autoload_namespaces.php'; 27 foreach ($map as $namespace => $path) { 28 $loader->set($namespace, $path); 29 } 26 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION'); 27 if ($useStaticLoader) { 28 require_once __DIR__ . '/autoload_static.php'; 30 29 31 $map = require __DIR__ . '/autoload_psr4.php'; 32 foreach ($map as $namespace => $path) { 33 $loader->setPsr4($namespace, $path); 34 } 30 call_user_func(\Composer\Autoload\ComposerStaticInita6d1fe3bd45df4bfa2641c8ac3e7e4cf::getInitializer($loader)); 31 } else { 32 $map = require __DIR__ . '/autoload_namespaces.php'; 33 foreach ($map as $namespace => $path) { 34 $loader->set($namespace, $path); 35 } 35 36 36 $classMap = require __DIR__ . '/autoload_classmap.php'; 37 if ($classMap) { 38 $loader->addClassMap($classMap); 37 $map = require __DIR__ . '/autoload_psr4.php'; 38 foreach ($map as $namespace => $path) { 39 $loader->setPsr4($namespace, $path); 40 } 41 42 $classMap = require __DIR__ . '/autoload_classmap.php'; 43 if ($classMap) { 44 $loader->addClassMap($classMap); 45 } 39 46 } 40 47 -
thumbsniper/trunk/vendor/composer/installed.json
r1336244 r1558645 7 7 "type": "git", 8 8 "url": "https://github.com/thumbsniper/tooltip.git", 9 "reference": " e81950f123b907b4bcc36267fbca5d391e5d6e82"9 "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9" 10 10 }, 11 11 "dist": { 12 12 "type": "zip", 13 "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/ e81950f123b907b4bcc36267fbca5d391e5d6e82",14 "reference": " e81950f123b907b4bcc36267fbca5d391e5d6e82",13 "url": "https://api.github.com/repos/thumbsniper/tooltip/zipball/5f9fb5544ebe8302ab27d86258a6dc51ad2048c9", 14 "reference": "5f9fb5544ebe8302ab27d86258a6dc51ad2048c9", 15 15 "shasum": "" 16 16 }, 17 "time": "2016- 01-26 10:58:44",17 "time": "2016-12-20 22:24:07", 18 18 "type": "library", 19 19 "installation-source": "source", -
thumbsniper/trunk/vendor/thumbsniper/tooltip/lib/thumbsniper/common/TooltipSettings.php
r1336244 r1558645 28 28 static private $qtipCssUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip.min.css"; 29 29 /** @var string */ 30 static private $imagesLoadedUrl = "https:// npmcdn.com/imagesloaded@4.1/imagesloaded.pkgd.min.js";31 /** @var string */ 32 static private $qtipUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip. js";30 static private $imagesLoadedUrl = "https://unpkg.com/imagesloaded@4.1/imagesloaded.pkgd.min.js"; 31 /** @var string */ 32 static private $qtipUrl = "https://cdn.jsdelivr.net/qtip2/2.2.1/jquery.qtip.min.js"; 33 33 34 34
Note: See TracChangeset
for help on using the changeset viewer.