Changeset 2659670
- Timestamp:
- 01/18/2022 11:31:45 PM (4 years ago)
- Location:
- debloat
- Files:
-
- 22 edited
- 1 copied
-
tags/1.1.7 (copied) (copied from debloat/trunk)
-
tags/1.1.7/debloat.php (modified) (1 diff)
-
tags/1.1.7/inc/admin/options-data.php (modified) (4 diffs)
-
tags/1.1.7/inc/optimize-js/optimize-js.php (modified) (2 diffs)
-
tags/1.1.7/inc/plugin.php (modified) (1 diff)
-
tags/1.1.7/languages/debloat.pot (modified) (4 diffs)
-
tags/1.1.7/readme.txt (modified) (2 diffs)
-
tags/1.1.7/vendor/autoload.php (modified) (1 diff)
-
tags/1.1.7/vendor/composer/ClassLoader.php (modified) (1 diff)
-
tags/1.1.7/vendor/composer/autoload_real.php (modified) (3 diffs)
-
tags/1.1.7/vendor/composer/autoload_static.php (modified) (2 diffs)
-
tags/1.1.7/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/debloat.php (modified) (1 diff)
-
trunk/inc/admin/options-data.php (modified) (4 diffs)
-
trunk/inc/optimize-js/optimize-js.php (modified) (2 diffs)
-
trunk/inc/plugin.php (modified) (1 diff)
-
trunk/languages/debloat.pot (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/autoload.php (modified) (1 diff)
-
trunk/vendor/composer/ClassLoader.php (modified) (1 diff)
-
trunk/vendor/composer/autoload_real.php (modified) (3 diffs)
-
trunk/vendor/composer/autoload_static.php (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
debloat/tags/1.1.7/debloat.php
r2639582 r2659670 7 7 * Plugin Name: Debloat 8 8 * Description: Remove Unused CSS, Optimize CSS, Optimize JS and speed up your site. 9 * Version: 1.1. 69 * Version: 1.1.7 10 10 * Author: asadkn 11 11 * Author URI: https://profiles.wordpress.org/asadkn/ -
debloat/tags/1.1.7/inc/admin/options-data.php
r2587948 r2659670 282 282 'id' => 'defer_js', 283 283 'name' => esc_html__('Defer Javascript', 'debloat'), 284 'desc' => esc_html__('Delay JS execution till HTML is l aoded to fix Render-Blocking JS issues.', 'debloat'),284 'desc' => esc_html__('Delay JS execution till HTML is loaded to fix Render-Blocking JS issues.', 'debloat'), 285 285 'type' => 'checkbox', 286 286 'default' => 0, … … 297 297 298 298 $options[] = [ 299 'id' => 'defer_js_inline', 300 'name' => esc_html__('Defer Inline JS', 'debloat'), 301 'desc' => sprintf( 302 '%s<p><strong>%s</strong> %s</p>', 303 esc_html__('Defer all inline JS.', 'debloat'), 304 esc_html__('Note:', 'debloat'), 305 esc_html__('Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions.', 'debloat') 306 ), 307 'type' => 'checkbox', 308 'default' => 0, 309 'attributes' => ['data-conditional-id' => 'defer_js'], 310 ]; 311 312 $options[] = [ 299 313 'id' => 'minify_js', 300 314 'name' => esc_html__('Minify Javascript', 'debloat'), 301 'desc' => esc_html__('Minify all the deferred or delayed JS file .', 'debloat'),315 'desc' => esc_html__('Minify all the deferred or delayed JS files.', 'debloat'), 302 316 'type' => 'checkbox', 303 317 'default' => 0, … … 389 403 <br /><code>my-theme/js-file.js</code> 390 404 <br /><code>wp-content/themes/my-theme/*</code>: All theme JS files. 405 <br /><code>someStringInJs</code>: Exclude by some text in inline JS tag. 391 406 ', 392 407 'type' => 'textarea_small', … … 421 436 return $options; 422 437 } 423 424 438 425 439 public static function get_all() -
debloat/tags/1.1.7/inc/optimize-js/optimize-js.php
r2639582 r2659670 158 158 if ( 159 159 !$script->url && 160 in_array('jquery-core-js', $script->deps) &&160 !in_array('jquery-core-js', $script->deps) && 161 161 strpos($script->content, 'jQuery') !== false 162 162 ) { … … 265 265 // For inline scripts: By default not deferred, unless child of a deferred. 266 266 if (!$script->url) { 267 if (Plugin::options()->defer_js_inline) { 268 return true; 269 } 270 267 271 if ($this->check_dependency($script, $this->done_defer)) { 268 272 $this->done_defer[$script->id] = true; -
debloat/tags/1.1.7/inc/plugin.php
r2639582 r2659670 23 23 * Plugin version 24 24 */ 25 const VERSION = '1.1. 6';25 const VERSION = '1.1.7'; 26 26 27 27 public static $instance; -
debloat/tags/1.1.7/languages/debloat.pot
r2587948 r2659670 1 # Copyright (C) 202 1debloat1 # Copyright (C) 2022 debloat 2 2 # This file is distributed under the same license as the debloat package. 3 3 msgid "" … … 130 130 msgstr "" 131 131 132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:3 08132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:322 133 133 msgid "Enable Plugin Integrations" 134 134 msgstr "" … … 243 243 244 244 #: inc/admin/options-data.php:284 245 msgid "Delay JS execution till HTML is l aoded to fix Render-Blocking JS issues."246 msgstr "" 247 248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:3 85245 msgid "Delay JS execution till HTML is loaded to fix Render-Blocking JS issues." 246 msgstr "" 247 248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:399 249 249 msgid "Exclude Scripts" 250 250 msgstr "" … … 255 255 256 256 #: inc/admin/options-data.php:300 257 msgid "Defer Inline JS" 258 msgstr "" 259 260 #: inc/admin/options-data.php:303 261 msgid "Defer all inline JS." 262 msgstr "" 263 264 #: inc/admin/options-data.php:304 265 msgid "Note:" 266 msgstr "" 267 268 #: inc/admin/options-data.php:305 269 msgid "Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions." 270 msgstr "" 271 272 #: inc/admin/options-data.php:314 257 273 msgid "Minify Javascript" 258 274 msgstr "" 259 275 260 #: inc/admin/options-data.php:3 01261 msgid "Minify all the deferred or delayed JS file ."262 msgstr "" 263 264 #: inc/admin/options-data.php:3 09276 #: inc/admin/options-data.php:315 277 msgid "Minify all the deferred or delayed JS files." 278 msgstr "" 279 280 #: inc/admin/options-data.php:323 265 281 msgid "Special pre-made rules for javascript, specific to plugins, are applied if enabled." 266 282 msgstr "" 267 283 268 #: inc/admin/options-data.php:3 23284 #: inc/admin/options-data.php:337 269 285 msgid "Delay Load JS" 270 286 msgstr "" 271 287 272 #: inc/admin/options-data.php:3 31288 #: inc/admin/options-data.php:345 273 289 msgid "Delay Javascript" 274 290 msgstr "" 275 291 276 #: inc/admin/options-data.php:3 32292 #: inc/admin/options-data.php:346 277 293 msgid "Delay execution of the targeted JS files until user interaction." 278 294 msgstr "" 279 295 280 #: inc/admin/options-data.php:3 39296 #: inc/admin/options-data.php:353 281 297 msgid "Maximum Delay (in seconds)" 282 298 msgstr "" 283 299 284 #: inc/admin/options-data.php:3 40300 #: inc/admin/options-data.php:354 285 301 msgid "Max seconds to wait for interaction until delayed JS is loaded anyways." 286 302 msgstr "" 287 303 288 #: inc/admin/options-data.php:3 52304 #: inc/admin/options-data.php:366 289 305 msgid "Delay All Scripts" 290 306 msgstr "" 291 307 292 #: inc/admin/options-data.php:3 53308 #: inc/admin/options-data.php:367 293 309 msgid "CAREFUL. Delays all JS files. Its better to target scripts manually below. If there are scripts that setup sliders/carousels, animations, or other similar things, these won't be setup until the first user interaction." 294 310 msgstr "" 295 311 296 #: inc/admin/options-data.php:3 61312 #: inc/admin/options-data.php:375 297 313 msgid "Target Scripts" 298 314 msgstr "" 299 315 300 #: inc/admin/options-data.php:3 63316 #: inc/admin/options-data.php:377 301 317 msgid "Will delay from these scripts. You may use an ID, part of the URL, or any code for inline scripts. One per line. Examples:" 302 318 msgstr "" 303 319 304 #: inc/admin/options-data.php: 387320 #: inc/admin/options-data.php:401 305 321 msgid "Enter one per line to exclude certain scripts from this optimizations. Examples:" 306 322 msgstr "" 307 323 308 #: inc/admin/options-data.php: 399324 #: inc/admin/options-data.php:414 309 325 msgid "Delay Google Ads" 310 326 msgstr "" 311 327 312 #: inc/admin/options-data.php:4 00328 #: inc/admin/options-data.php:415 313 329 msgid "Delay Google Adsense until first interaction. Note: This may not be ideal if you have ads that are in header." 314 330 msgstr "" 315 331 316 #: inc/admin/options-data.php:4 14332 #: inc/admin/options-data.php:429 317 333 msgid "Disable for Admins" 318 334 msgstr "" 319 335 320 #: inc/admin/options-data.php:4 15336 #: inc/admin/options-data.php:430 321 337 msgid "Disable processing for logged in admin users or any user with capability \"manage_options\". (Useful if using a pagebuilder that conflicts)" 322 338 msgstr "" -
debloat/tags/1.1.7/readme.txt
r2639582 r2659670 5 5 Tested up to: 5.8 6 6 Requires PHP: 7.1 7 Stable tag: 1.1. 67 Stable tag: 1.1.7 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 1.1.7 = 46 * Added: Option to defer inline scripts - useful if some dependent inline scripts not registered using WordPress enqueues. 47 * Fixed: Defer inline scripts with jQuery if jquery-core is deferred. 48 45 49 = 1.1.6 = 46 50 * Fixed: Delay/defer only replacing one instance with duplicated <script> tags of the same URL and id. -
debloat/tags/1.1.7/vendor/autoload.php
r2639582 r2659670 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67::getLoader();7 return ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9::getLoader(); -
debloat/tags/1.1.7/vendor/composer/ClassLoader.php
r2622044 r2659670 150 150 /** 151 151 * @return string[] Array of classname => path 152 * @psalm- vararray<string, string>152 * @psalm-return array<string, string> 153 153 */ 154 154 public function getClassMap() -
debloat/tags/1.1.7/vendor/composer/autoload_real.php
r2639582 r2659670 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c675 class ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; -
debloat/tags/1.1.7/vendor/composer/autoload_static.php
r2639582 r2659670 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c677 class ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 89 89 { 90 90 return \Closure::bind(function () use ($loader) { 91 $loader->prefixLengthsPsr4 = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$prefixLengthsPsr4;92 $loader->prefixDirsPsr4 = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$prefixDirsPsr4;93 $loader->classMap = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$classMap;91 $loader->prefixLengthsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixLengthsPsr4; 92 $loader->prefixDirsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixDirsPsr4; 93 $loader->classMap = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$classMap; 94 94 95 95 }, null, ClassLoader::class); -
debloat/tags/1.1.7/vendor/composer/installed.php
r2639582 r2659670 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.1. 6',4 'version' => '1.1. 6.0',3 'pretty_version' => '1.1.7', 4 'version' => '1.1.7.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 51ecd33cdfb221e9defa42dcf974f831994dd97f',8 'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21', 9 9 'name' => '__root__', 10 10 'dev' => true, … … 12 12 'versions' => array( 13 13 '__root__' => array( 14 'pretty_version' => '1.1. 6',15 'version' => '1.1. 6.0',14 'pretty_version' => '1.1.7', 15 'version' => '1.1.7.0', 16 16 'type' => 'library', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 51ecd33cdfb221e9defa42dcf974f831994dd97f',19 'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21', 20 20 'dev_requirement' => false, 21 21 ), -
debloat/trunk/debloat.php
r2639582 r2659670 7 7 * Plugin Name: Debloat 8 8 * Description: Remove Unused CSS, Optimize CSS, Optimize JS and speed up your site. 9 * Version: 1.1. 69 * Version: 1.1.7 10 10 * Author: asadkn 11 11 * Author URI: https://profiles.wordpress.org/asadkn/ -
debloat/trunk/inc/admin/options-data.php
r2587948 r2659670 282 282 'id' => 'defer_js', 283 283 'name' => esc_html__('Defer Javascript', 'debloat'), 284 'desc' => esc_html__('Delay JS execution till HTML is l aoded to fix Render-Blocking JS issues.', 'debloat'),284 'desc' => esc_html__('Delay JS execution till HTML is loaded to fix Render-Blocking JS issues.', 'debloat'), 285 285 'type' => 'checkbox', 286 286 'default' => 0, … … 297 297 298 298 $options[] = [ 299 'id' => 'defer_js_inline', 300 'name' => esc_html__('Defer Inline JS', 'debloat'), 301 'desc' => sprintf( 302 '%s<p><strong>%s</strong> %s</p>', 303 esc_html__('Defer all inline JS.', 'debloat'), 304 esc_html__('Note:', 'debloat'), 305 esc_html__('Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions.', 'debloat') 306 ), 307 'type' => 'checkbox', 308 'default' => 0, 309 'attributes' => ['data-conditional-id' => 'defer_js'], 310 ]; 311 312 $options[] = [ 299 313 'id' => 'minify_js', 300 314 'name' => esc_html__('Minify Javascript', 'debloat'), 301 'desc' => esc_html__('Minify all the deferred or delayed JS file .', 'debloat'),315 'desc' => esc_html__('Minify all the deferred or delayed JS files.', 'debloat'), 302 316 'type' => 'checkbox', 303 317 'default' => 0, … … 389 403 <br /><code>my-theme/js-file.js</code> 390 404 <br /><code>wp-content/themes/my-theme/*</code>: All theme JS files. 405 <br /><code>someStringInJs</code>: Exclude by some text in inline JS tag. 391 406 ', 392 407 'type' => 'textarea_small', … … 421 436 return $options; 422 437 } 423 424 438 425 439 public static function get_all() -
debloat/trunk/inc/optimize-js/optimize-js.php
r2639582 r2659670 158 158 if ( 159 159 !$script->url && 160 in_array('jquery-core-js', $script->deps) &&160 !in_array('jquery-core-js', $script->deps) && 161 161 strpos($script->content, 'jQuery') !== false 162 162 ) { … … 265 265 // For inline scripts: By default not deferred, unless child of a deferred. 266 266 if (!$script->url) { 267 if (Plugin::options()->defer_js_inline) { 268 return true; 269 } 270 267 271 if ($this->check_dependency($script, $this->done_defer)) { 268 272 $this->done_defer[$script->id] = true; -
debloat/trunk/inc/plugin.php
r2639582 r2659670 23 23 * Plugin version 24 24 */ 25 const VERSION = '1.1. 6';25 const VERSION = '1.1.7'; 26 26 27 27 public static $instance; -
debloat/trunk/languages/debloat.pot
r2587948 r2659670 1 # Copyright (C) 202 1debloat1 # Copyright (C) 2022 debloat 2 2 # This file is distributed under the same license as the debloat package. 3 3 msgid "" … … 130 130 msgstr "" 131 131 132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:3 08132 #: inc/admin/options-data.php:88, inc/admin/options-data.php:322 133 133 msgid "Enable Plugin Integrations" 134 134 msgstr "" … … 243 243 244 244 #: inc/admin/options-data.php:284 245 msgid "Delay JS execution till HTML is l aoded to fix Render-Blocking JS issues."246 msgstr "" 247 248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:3 85245 msgid "Delay JS execution till HTML is loaded to fix Render-Blocking JS issues." 246 msgstr "" 247 248 #: inc/admin/options-data.php:291, inc/admin/options-data.php:399 249 249 msgid "Exclude Scripts" 250 250 msgstr "" … … 255 255 256 256 #: inc/admin/options-data.php:300 257 msgid "Defer Inline JS" 258 msgstr "" 259 260 #: inc/admin/options-data.php:303 261 msgid "Defer all inline JS." 262 msgstr "" 263 264 #: inc/admin/options-data.php:304 265 msgid "Note:" 266 msgstr "" 267 268 #: inc/admin/options-data.php:305 269 msgid "Normally not needed. All correct dependent inline scripts are deferred by default. Enable if inline JS not enqueued using WordPress enqueue functions." 270 msgstr "" 271 272 #: inc/admin/options-data.php:314 257 273 msgid "Minify Javascript" 258 274 msgstr "" 259 275 260 #: inc/admin/options-data.php:3 01261 msgid "Minify all the deferred or delayed JS file ."262 msgstr "" 263 264 #: inc/admin/options-data.php:3 09276 #: inc/admin/options-data.php:315 277 msgid "Minify all the deferred or delayed JS files." 278 msgstr "" 279 280 #: inc/admin/options-data.php:323 265 281 msgid "Special pre-made rules for javascript, specific to plugins, are applied if enabled." 266 282 msgstr "" 267 283 268 #: inc/admin/options-data.php:3 23284 #: inc/admin/options-data.php:337 269 285 msgid "Delay Load JS" 270 286 msgstr "" 271 287 272 #: inc/admin/options-data.php:3 31288 #: inc/admin/options-data.php:345 273 289 msgid "Delay Javascript" 274 290 msgstr "" 275 291 276 #: inc/admin/options-data.php:3 32292 #: inc/admin/options-data.php:346 277 293 msgid "Delay execution of the targeted JS files until user interaction." 278 294 msgstr "" 279 295 280 #: inc/admin/options-data.php:3 39296 #: inc/admin/options-data.php:353 281 297 msgid "Maximum Delay (in seconds)" 282 298 msgstr "" 283 299 284 #: inc/admin/options-data.php:3 40300 #: inc/admin/options-data.php:354 285 301 msgid "Max seconds to wait for interaction until delayed JS is loaded anyways." 286 302 msgstr "" 287 303 288 #: inc/admin/options-data.php:3 52304 #: inc/admin/options-data.php:366 289 305 msgid "Delay All Scripts" 290 306 msgstr "" 291 307 292 #: inc/admin/options-data.php:3 53308 #: inc/admin/options-data.php:367 293 309 msgid "CAREFUL. Delays all JS files. Its better to target scripts manually below. If there are scripts that setup sliders/carousels, animations, or other similar things, these won't be setup until the first user interaction." 294 310 msgstr "" 295 311 296 #: inc/admin/options-data.php:3 61312 #: inc/admin/options-data.php:375 297 313 msgid "Target Scripts" 298 314 msgstr "" 299 315 300 #: inc/admin/options-data.php:3 63316 #: inc/admin/options-data.php:377 301 317 msgid "Will delay from these scripts. You may use an ID, part of the URL, or any code for inline scripts. One per line. Examples:" 302 318 msgstr "" 303 319 304 #: inc/admin/options-data.php: 387320 #: inc/admin/options-data.php:401 305 321 msgid "Enter one per line to exclude certain scripts from this optimizations. Examples:" 306 322 msgstr "" 307 323 308 #: inc/admin/options-data.php: 399324 #: inc/admin/options-data.php:414 309 325 msgid "Delay Google Ads" 310 326 msgstr "" 311 327 312 #: inc/admin/options-data.php:4 00328 #: inc/admin/options-data.php:415 313 329 msgid "Delay Google Adsense until first interaction. Note: This may not be ideal if you have ads that are in header." 314 330 msgstr "" 315 331 316 #: inc/admin/options-data.php:4 14332 #: inc/admin/options-data.php:429 317 333 msgid "Disable for Admins" 318 334 msgstr "" 319 335 320 #: inc/admin/options-data.php:4 15336 #: inc/admin/options-data.php:430 321 337 msgid "Disable processing for logged in admin users or any user with capability \"manage_options\". (Useful if using a pagebuilder that conflicts)" 322 338 msgstr "" -
debloat/trunk/readme.txt
r2639582 r2659670 5 5 Tested up to: 5.8 6 6 Requires PHP: 7.1 7 Stable tag: 1.1. 67 Stable tag: 1.1.7 8 8 License: GPLv2 9 9 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 43 43 == Changelog == 44 44 45 = 1.1.7 = 46 * Added: Option to defer inline scripts - useful if some dependent inline scripts not registered using WordPress enqueues. 47 * Fixed: Defer inline scripts with jQuery if jquery-core is deferred. 48 45 49 = 1.1.6 = 46 50 * Fixed: Delay/defer only replacing one instance with duplicated <script> tags of the same URL and id. -
debloat/trunk/vendor/autoload.php
r2639582 r2659670 5 5 require_once __DIR__ . '/composer/autoload_real.php'; 6 6 7 return ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67::getLoader();7 return ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9::getLoader(); -
debloat/trunk/vendor/composer/ClassLoader.php
r2622044 r2659670 150 150 /** 151 151 * @return string[] Array of classname => path 152 * @psalm- vararray<string, string>152 * @psalm-return array<string, string> 153 153 */ 154 154 public function getClassMap() -
debloat/trunk/vendor/composer/autoload_real.php
r2639582 r2659670 3 3 // autoload_real.php @generated by Composer 4 4 5 class ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c675 class ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9 6 6 { 7 7 private static $loader; … … 25 25 require __DIR__ . '/platform_check.php'; 26 26 27 spl_autoload_register(array('ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'), true, true);27 spl_autoload_register(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader'), true, true); 28 28 self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(\dirname(__FILE__))); 29 spl_autoload_unregister(array('ComposerAutoloaderInit e072c566a9c557109e61f0f1e4fa8c67', 'loadClassLoader'));29 spl_autoload_unregister(array('ComposerAutoloaderInitb5165a72e4e7a49504d364a6f407b6f9', 'loadClassLoader')); 30 30 31 31 $useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded()); … … 33 33 require __DIR__ . '/autoload_static.php'; 34 34 35 call_user_func(\Composer\Autoload\ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::getInitializer($loader));35 call_user_func(\Composer\Autoload\ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::getInitializer($loader)); 36 36 } else { 37 37 $map = require __DIR__ . '/autoload_namespaces.php'; -
debloat/trunk/vendor/composer/autoload_static.php
r2639582 r2659670 5 5 namespace Composer\Autoload; 6 6 7 class ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c677 class ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9 8 8 { 9 9 public static $prefixLengthsPsr4 = array ( … … 89 89 { 90 90 return \Closure::bind(function () use ($loader) { 91 $loader->prefixLengthsPsr4 = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$prefixLengthsPsr4;92 $loader->prefixDirsPsr4 = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$prefixDirsPsr4;93 $loader->classMap = ComposerStaticInit e072c566a9c557109e61f0f1e4fa8c67::$classMap;91 $loader->prefixLengthsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixLengthsPsr4; 92 $loader->prefixDirsPsr4 = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$prefixDirsPsr4; 93 $loader->classMap = ComposerStaticInitb5165a72e4e7a49504d364a6f407b6f9::$classMap; 94 94 95 95 }, null, ClassLoader::class); -
debloat/trunk/vendor/composer/installed.php
r2639582 r2659670 1 1 <?php return array( 2 2 'root' => array( 3 'pretty_version' => '1.1. 6',4 'version' => '1.1. 6.0',3 'pretty_version' => '1.1.7', 4 'version' => '1.1.7.0', 5 5 'type' => 'library', 6 6 'install_path' => __DIR__ . '/../../', 7 7 'aliases' => array(), 8 'reference' => ' 51ecd33cdfb221e9defa42dcf974f831994dd97f',8 'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21', 9 9 'name' => '__root__', 10 10 'dev' => true, … … 12 12 'versions' => array( 13 13 '__root__' => array( 14 'pretty_version' => '1.1. 6',15 'version' => '1.1. 6.0',14 'pretty_version' => '1.1.7', 15 'version' => '1.1.7.0', 16 16 'type' => 'library', 17 17 'install_path' => __DIR__ . '/../../', 18 18 'aliases' => array(), 19 'reference' => ' 51ecd33cdfb221e9defa42dcf974f831994dd97f',19 'reference' => '8bfb016c965ea75dac44eae5acc4933e91b3ee21', 20 20 'dev_requirement' => false, 21 21 ),
Note: See TracChangeset
for help on using the changeset viewer.