Merge branch 'develop' into 'japanese'
merge from upsream 3.8.6 release See merge request harukin/core!23
This commit is contained in:
commit
770036c5a8
18
CHANGELOG
18
CHANGELOG
@ -1,3 +1,21 @@
|
||||
Hubzilla 3.8.6 (2018-12-03)
|
||||
- Prevent incompatible export files (osada/zap) from being imported
|
||||
- Catch exception if readImageBlob() receives bogus data
|
||||
- Streamline PDF previews
|
||||
- Allow notification filtering by name or address
|
||||
- Fix too restrictive attached photo permissions
|
||||
- Update ES translation
|
||||
- Use flex for the default template
|
||||
- Do not store serialized pconfig value received via to Module/Pconfig.php
|
||||
- Update jquery-file-upload lib and move to composer
|
||||
- Update imagesloaded lib and move to composer
|
||||
- Fix activitypub tag notifications
|
||||
- Fix call to undefined function in PConfig
|
||||
- Fix typo which prevented propagation of comments to zot6 (dev)
|
||||
- Activitypub: add support for pterotype (wordpress plugin)
|
||||
- Openstreetmap: check validity of lat+lon before rendering a map
|
||||
|
||||
|
||||
Hubzilla 3.8.5 (2018-11-19)
|
||||
- Fix pconfig for new installs
|
||||
- Fix delayed publication of posts in combination with channel clones
|
||||
|
@ -828,6 +828,7 @@ class Enotify {
|
||||
$x = array(
|
||||
'notify_link' => $item['llink'],
|
||||
'name' => $item['author']['xchan_name'],
|
||||
'addr' => (($item['author']['xchan_addr']) ? $item['author']['xchan_addr'] : $item['author']['xchan_url']),
|
||||
'url' => $item['author']['xchan_url'],
|
||||
'photo' => $item['author']['xchan_photo_s'],
|
||||
'when' => relative_date(($edit)? $item['edited'] : $item['created']),
|
||||
|
@ -127,6 +127,15 @@ class Import extends \Zotlabs\Web\Controller {
|
||||
//
|
||||
// }
|
||||
|
||||
|
||||
// prevent incompatible osada or zap data from horking your database
|
||||
|
||||
if(array_path_exists('compatibility/codebase',$data)) {
|
||||
notice('Data export format is not compatible with this software');
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if($moving)
|
||||
$seize = 1;
|
||||
|
||||
|
@ -22,6 +22,11 @@ class Pconfig extends \Zotlabs\Web\Controller {
|
||||
$k = trim(escape_tags($_POST['k']));
|
||||
$v = trim($_POST['v']);
|
||||
$aj = intval($_POST['aj']);
|
||||
|
||||
// Do not store "serialized" data received in the $_POST
|
||||
if (preg_match('|^a:[0-9]+:{.*}$|s',$v) || preg_match('O:8:"stdClass":[0-9]+:{.*}$|s',$v)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if(in_array(argv(2),$this->disallowed_pconfig())) {
|
||||
notice( t('This setting requires special processing and editing has been blocked.') . EOL);
|
||||
|
@ -330,6 +330,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
$notifs[] = array(
|
||||
'notify_link' => z_root() . '/mail/' . $zz['id'],
|
||||
'name' => $zz['xchan_name'],
|
||||
'addr' => $zz['xchan_addr'],
|
||||
'url' => $zz['xchan_url'],
|
||||
'photo' => $zz['xchan_photo_s'],
|
||||
'when' => relative_date($zz['created']),
|
||||
@ -383,6 +384,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
$result[] = array(
|
||||
'notify_link' => z_root() . '/connections/ifpending',
|
||||
'name' => $rr['xchan_name'],
|
||||
'addr' => $rr['xchan_addr'],
|
||||
'url' => $rr['xchan_url'],
|
||||
'photo' => $rr['xchan_photo_s'],
|
||||
'when' => relative_date($rr['abook_created']),
|
||||
@ -407,6 +409,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
$result[] = array(
|
||||
'notify_link' => z_root() . '/admin/accounts',
|
||||
'name' => $rr['account_email'],
|
||||
'addr' => $rr['account_email'],
|
||||
'url' => '',
|
||||
'photo' => z_root() . '/' . get_default_profile_photo(48),
|
||||
'when' => relative_date($rr['account_created']),
|
||||
@ -444,6 +447,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
$result[] = array(
|
||||
'notify_link' => z_root() . '/events', /// @FIXME this takes you to an edit page and it may not be yours, we really want to just view the single event --> '/events/event/' . $rr['event_hash'],
|
||||
'name' => $rr['xchan_name'],
|
||||
'addr' => $rr['xchan_addr'],
|
||||
'url' => $rr['xchan_url'],
|
||||
'photo' => $rr['xchan_photo_s'],
|
||||
'when' => $when,
|
||||
@ -460,7 +464,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
if(argc() > 1 && (argv(1) === 'files')) {
|
||||
$result = array();
|
||||
|
||||
$r = q("SELECT item.created, xchan.xchan_name, xchan.xchan_url, xchan.xchan_photo_s FROM item
|
||||
$r = q("SELECT item.created, xchan.xchan_name, xchan.xchan_addr, xchan.xchan_url, xchan.xchan_photo_s FROM item
|
||||
LEFT JOIN xchan on author_xchan = xchan_hash
|
||||
WHERE item.verb = '%s'
|
||||
AND item.obj_type = '%s'
|
||||
@ -477,6 +481,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
$result[] = array(
|
||||
'notify_link' => z_root() . '/sharedwithme',
|
||||
'name' => $rr['xchan_name'],
|
||||
'addr' => $rr['xchan_addr'],
|
||||
'url' => $rr['xchan_url'],
|
||||
'photo' => $rr['xchan_photo_s'],
|
||||
'when' => relative_date($rr['created']),
|
||||
@ -658,6 +663,7 @@ class Ping extends \Zotlabs\Web\Controller {
|
||||
if($r[0]['unseen']) {
|
||||
$forums[$x]['notify_link'] = (($forums[$x]['private_forum']) ? $forums[$x]['xchan_url'] : z_root() . '/network/?f=&pf=1&unseen=1&cid=' . $forums[$x]['abook_id']);
|
||||
$forums[$x]['name'] = $forums[$x]['xchan_name'];
|
||||
$forums[$x]['addr'] = $forums[$x]['xchan_addr'];
|
||||
$forums[$x]['url'] = $forums[$x]['xchan_url'];
|
||||
$forums[$x]['photo'] = $forums[$x]['xchan_photo_s'];
|
||||
$forums[$x]['unseen'] = $r[0]['unseen'];
|
||||
|
@ -24,7 +24,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
|
||||
@ -43,7 +43,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
|
||||
@ -119,7 +119,7 @@ class Notifications {
|
||||
'label' => t('Forums'),
|
||||
'title' => t('Forums'),
|
||||
'filter' => [
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
}
|
||||
@ -150,7 +150,7 @@ class Notifications {
|
||||
],
|
||||
'filter' => [
|
||||
'posts_label' => t('Show new posts only'),
|
||||
'name_label' => t('Filter by name')
|
||||
'name_label' => t('Filter by name or address')
|
||||
]
|
||||
];
|
||||
}
|
||||
|
2
boot.php
2
boot.php
@ -50,7 +50,7 @@ require_once('include/attach.php');
|
||||
require_once('include/bbcode.php');
|
||||
|
||||
define ( 'PLATFORM_NAME', 'hubzilla' );
|
||||
define ( 'STD_VERSION', '3.8.5' );
|
||||
define ( 'STD_VERSION', '3.8.6' );
|
||||
define ( 'ZOT_REVISION', '6.0a' );
|
||||
|
||||
define ( 'DB_UPDATE_VERSION', 1225 );
|
||||
|
@ -40,7 +40,8 @@
|
||||
"smarty/smarty": "~3.1",
|
||||
"ramsey/uuid": "^3.8",
|
||||
"twbs/bootstrap": "4.1.3",
|
||||
"blueimp/jquery-file-upload": "^9.25"
|
||||
"blueimp/jquery-file-upload": "^9.25",
|
||||
"desandro/imagesloaded": "^4.1"
|
||||
},
|
||||
"require-dev" : {
|
||||
"phpunit/phpunit" : "@stable",
|
||||
|
171
composer.lock
generated
171
composer.lock
generated
@ -4,20 +4,20 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "63d0e52cc07f8113059ec30d3637b850",
|
||||
"content-hash": "fe5e71d7076eeddf1c174be4a5c052dd",
|
||||
"packages": [
|
||||
{
|
||||
"name": "blueimp/jquery-file-upload",
|
||||
"version": "v9.25.1",
|
||||
"version": "v9.28.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vkhramtsov/jQuery-File-Upload.git",
|
||||
"reference": "28891f9b2bc339bcc1ca8d548e5401e8563bf04b"
|
||||
"reference": "ff5accfe2e5c4a522777faa980a90cf86a636d1d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/28891f9b2bc339bcc1ca8d548e5401e8563bf04b",
|
||||
"reference": "28891f9b2bc339bcc1ca8d548e5401e8563bf04b",
|
||||
"url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/ff5accfe2e5c4a522777faa980a90cf86a636d1d",
|
||||
"reference": "ff5accfe2e5c4a522777faa980a90cf86a636d1d",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "library",
|
||||
@ -59,7 +59,7 @@
|
||||
"upload",
|
||||
"widget"
|
||||
],
|
||||
"time": "2018-10-26T07:21:48+00:00"
|
||||
"time": "2018-11-13T05:41:39+00:00"
|
||||
},
|
||||
{
|
||||
"name": "bshaffer/oauth2-server-php",
|
||||
@ -163,6 +163,45 @@
|
||||
"description": "Internationalization library powered by CLDR data.",
|
||||
"time": "2017-12-29T00:13:05+00:00"
|
||||
},
|
||||
{
|
||||
"name": "desandro/imagesloaded",
|
||||
"version": "v4.1.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/desandro/imagesloaded.git",
|
||||
"reference": "67c4e57453120935180c45c6820e7d3fbd2ea1f9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/desandro/imagesloaded/zipball/67c4e57453120935180c45c6820e7d3fbd2ea1f9",
|
||||
"reference": "67c4e57453120935180c45c6820e7d3fbd2ea1f9",
|
||||
"shasum": ""
|
||||
},
|
||||
"type": "component",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "David DeSandro",
|
||||
"homepage": "http://desandro.com/",
|
||||
"role": "developer"
|
||||
}
|
||||
],
|
||||
"description": "JavaScript is all like _You images done yet or what?_",
|
||||
"homepage": "http://imagesloaded.desandro.com",
|
||||
"keywords": [
|
||||
"dom",
|
||||
"images",
|
||||
"javascript",
|
||||
"jquery-plugin",
|
||||
"library",
|
||||
"loaded",
|
||||
"ui"
|
||||
],
|
||||
"time": "2018-01-02T16:53:35+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ezyang/htmlpurifier",
|
||||
"version": "v4.10.0",
|
||||
@ -446,16 +485,16 @@
|
||||
},
|
||||
{
|
||||
"name": "psr/log",
|
||||
"version": "1.0.2",
|
||||
"version": "1.1.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/log.git",
|
||||
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
|
||||
"reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
|
||||
"reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -489,7 +528,7 @@
|
||||
"psr",
|
||||
"psr-3"
|
||||
],
|
||||
"time": "2016-10-10T12:19:37+00:00"
|
||||
"time": "2018-11-20T15:27:04+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ramsey/uuid",
|
||||
@ -1110,7 +1149,7 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.9.0",
|
||||
"version": "v1.10.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||
@ -2536,16 +2575,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-code-coverage",
|
||||
"version": "6.1.3",
|
||||
"version": "6.1.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||
"reference": "4d3ae9b21a7d7e440bd0cf65565533117976859f"
|
||||
"reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/4d3ae9b21a7d7e440bd0cf65565533117976859f",
|
||||
"reference": "4d3ae9b21a7d7e440bd0cf65565533117976859f",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
|
||||
"reference": "807e6013b00af69b6c5d9ceb4282d0393dbb9d8d",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2595,7 +2634,7 @@
|
||||
"testing",
|
||||
"xunit"
|
||||
],
|
||||
"time": "2018-10-23T05:59:32+00:00"
|
||||
"time": "2018-10-31T16:06:48+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
@ -2788,16 +2827,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
"version": "7.4.3",
|
||||
"version": "7.4.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||
"reference": "c151651fb6ed264038d486ea262e243af72e5e64"
|
||||
"reference": "b1be2c8530c4c29c3519a052c9fb6cee55053bbd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/c151651fb6ed264038d486ea262e243af72e5e64",
|
||||
"reference": "c151651fb6ed264038d486ea262e243af72e5e64",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b1be2c8530c4c29c3519a052c9fb6cee55053bbd",
|
||||
"reference": "b1be2c8530c4c29c3519a052c9fb6cee55053bbd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -2868,7 +2907,7 @@
|
||||
"testing",
|
||||
"xunit"
|
||||
],
|
||||
"time": "2018-10-23T05:57:41+00:00"
|
||||
"time": "2018-11-14T16:52:02+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/container",
|
||||
@ -3534,7 +3573,7 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/browser-kit",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/browser-kit.git",
|
||||
@ -3591,16 +3630,16 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/class-loader",
|
||||
"version": "v3.4.17",
|
||||
"version": "v3.4.18",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/class-loader.git",
|
||||
"reference": "f31333bdff54c7595f834d510a6d2325573ddb36"
|
||||
"reference": "5605edec7b8f034ead2497ff4aab17bb70d558c1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/class-loader/zipball/f31333bdff54c7595f834d510a6d2325573ddb36",
|
||||
"reference": "f31333bdff54c7595f834d510a6d2325573ddb36",
|
||||
"url": "https://api.github.com/repos/symfony/class-loader/zipball/5605edec7b8f034ead2497ff4aab17bb70d558c1",
|
||||
"reference": "5605edec7b8f034ead2497ff4aab17bb70d558c1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3643,20 +3682,20 @@
|
||||
],
|
||||
"description": "Symfony ClassLoader Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-10-02T12:28:39+00:00"
|
||||
"time": "2018-10-31T09:06:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/config",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/config.git",
|
||||
"reference": "b3d4d7b567d7a49e6dfafb6d4760abc921177c96"
|
||||
"reference": "991fec8bbe77367fc8b48ecbaa8a4bd6e905a238"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/config/zipball/b3d4d7b567d7a49e6dfafb6d4760abc921177c96",
|
||||
"reference": "b3d4d7b567d7a49e6dfafb6d4760abc921177c96",
|
||||
"url": "https://api.github.com/repos/symfony/config/zipball/991fec8bbe77367fc8b48ecbaa8a4bd6e905a238",
|
||||
"reference": "991fec8bbe77367fc8b48ecbaa8a4bd6e905a238",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3706,20 +3745,20 @@
|
||||
],
|
||||
"description": "Symfony Config Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-09-08T13:24:10+00:00"
|
||||
"time": "2018-10-31T09:09:42+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/console",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/console.git",
|
||||
"reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b"
|
||||
"reference": "432122af37d8cd52fba1b294b11976e0d20df595"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/console/zipball/dc7122fe5f6113cfaba3b3de575d31112c9aa60b",
|
||||
"reference": "dc7122fe5f6113cfaba3b3de575d31112c9aa60b",
|
||||
"url": "https://api.github.com/repos/symfony/console/zipball/432122af37d8cd52fba1b294b11976e0d20df595",
|
||||
"reference": "432122af37d8cd52fba1b294b11976e0d20df595",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3774,11 +3813,11 @@
|
||||
],
|
||||
"description": "Symfony Console Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-10-03T08:15:46+00:00"
|
||||
"time": "2018-10-31T09:30:44+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/css-selector",
|
||||
"version": "v3.4.17",
|
||||
"version": "v3.4.18",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/css-selector.git",
|
||||
@ -3831,16 +3870,16 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/dependency-injection",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/dependency-injection.git",
|
||||
"reference": "f6b9d893ad28aefd8942dc0469c8397e2216fe30"
|
||||
"reference": "e72ee2c23d952e4c368ee98610fa22b79b89b483"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/f6b9d893ad28aefd8942dc0469c8397e2216fe30",
|
||||
"reference": "f6b9d893ad28aefd8942dc0469c8397e2216fe30",
|
||||
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/e72ee2c23d952e4c368ee98610fa22b79b89b483",
|
||||
"reference": "e72ee2c23d952e4c368ee98610fa22b79b89b483",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -3898,11 +3937,11 @@
|
||||
],
|
||||
"description": "Symfony DependencyInjection Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-10-02T12:40:59+00:00"
|
||||
"time": "2018-10-31T10:54:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/dom-crawler",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/dom-crawler.git",
|
||||
@ -3959,16 +3998,16 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/event-dispatcher",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/event-dispatcher.git",
|
||||
"reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e"
|
||||
"reference": "552541dad078c85d9414b09c041ede488b456cd5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
|
||||
"reference": "bfb30c2ad377615a463ebbc875eba64a99f6aa3e",
|
||||
"url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/552541dad078c85d9414b09c041ede488b456cd5",
|
||||
"reference": "552541dad078c85d9414b09c041ede488b456cd5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -4018,20 +4057,20 @@
|
||||
],
|
||||
"description": "Symfony EventDispatcher Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-07-26T09:10:45+00:00"
|
||||
"time": "2018-10-10T13:52:42+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/filesystem",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/filesystem.git",
|
||||
"reference": "596d12b40624055c300c8b619755b748ca5cf0b5"
|
||||
"reference": "fd7bd6535beb1f0a0a9e3ee960666d0598546981"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/filesystem/zipball/596d12b40624055c300c8b619755b748ca5cf0b5",
|
||||
"reference": "596d12b40624055c300c8b619755b748ca5cf0b5",
|
||||
"url": "https://api.github.com/repos/symfony/filesystem/zipball/fd7bd6535beb1f0a0a9e3ee960666d0598546981",
|
||||
"reference": "fd7bd6535beb1f0a0a9e3ee960666d0598546981",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -4068,20 +4107,20 @@
|
||||
],
|
||||
"description": "Symfony Filesystem Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-10-02T12:40:59+00:00"
|
||||
"time": "2018-10-30T13:18:25+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-mbstring",
|
||||
"version": "v1.9.0",
|
||||
"version": "v1.10.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-mbstring.git",
|
||||
"reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8"
|
||||
"reference": "c79c051f5b3a46be09205c73b80b346e4153e494"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d0cd638f4634c16d8df4508e847f14e9e43168b8",
|
||||
"reference": "d0cd638f4634c16d8df4508e847f14e9e43168b8",
|
||||
"url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/c79c051f5b3a46be09205c73b80b346e4153e494",
|
||||
"reference": "c79c051f5b3a46be09205c73b80b346e4153e494",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -4127,20 +4166,20 @@
|
||||
"portable",
|
||||
"shim"
|
||||
],
|
||||
"time": "2018-08-06T14:22:27+00:00"
|
||||
"time": "2018-09-21T13:07:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/translation",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/translation.git",
|
||||
"reference": "9f0b61e339160a466ebcde167a6c5521c810e304"
|
||||
"reference": "aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/symfony/translation/zipball/9f0b61e339160a466ebcde167a6c5521c810e304",
|
||||
"reference": "9f0b61e339160a466ebcde167a6c5521c810e304",
|
||||
"url": "https://api.github.com/repos/symfony/translation/zipball/aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c",
|
||||
"reference": "aa04dc1c75b7d3da7bd7003104cd0cfc5dff635c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@ -4196,11 +4235,11 @@
|
||||
],
|
||||
"description": "Symfony Translation Component",
|
||||
"homepage": "https://symfony.com",
|
||||
"time": "2018-10-02T16:36:10+00:00"
|
||||
"time": "2018-10-28T18:38:52+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/yaml",
|
||||
"version": "v4.1.6",
|
||||
"version": "v4.1.7",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/yaml.git",
|
||||
|
@ -29,7 +29,7 @@ $Projectname es, básicamente, una aplicación de servidor web relativamente est
|
||||
|
||||
[*= Identidad nómada] La capacidad de autenticar y migrar fácilmente una identidad a través de hubs y dominios web independientes. La identidad nómada proporciona una verdadera propiedad de una identidad en línea, porque las identidades de los canales controlados por una cuenta en un hub no están vinculadas al propio hub. Un hub es más como un "host" para canales. Con Hubzilla, no tienes una "cuenta" en un servidor como lo haces en sitios web típicos; tienes una identidad que puedes llevarte a través de la rejilla usando clones.
|
||||
|
||||
[*= Zot] El novedoso protocolo basado en JSON para la implementación de comunicaciones y servicios descentralizados seguros. Se diferencia de muchos otros protocolos de comunicación en que construye las comunicaciones sobre un marco de identidad y autenticación descentralizado. El componente de autenticación es similar a OpenID conceptualmente pero está aislado de las identidades basadas en DNS. Cuando es posible, la autenticación remota es silenciosa e invisible. Esto proporciona un mecanismo para el control de acceso distribuido a escala de Internet que es discreto.
|
||||
[*= Zot] El novedoso protocolo basado en JSON para la implementación de comunicaciones y servicios descentralizados seguros. Se diferencia de muchos otros protocolos de comunicación en que construye las comunicaciones sobre un marco de identidad y autenticación descentralizado. El componente de autenticación es similar a OpenID conceptualmente pero está aislado de las identidades basadas en DNS. Cuando es posible, la autenticación remota es silenciosa e invisible. Esto proporciona un mecanismo discreto para el control de acceso distribuido a escala de Internet.
|
||||
[/dl]
|
||||
|
||||
|
||||
@ -41,7 +41,7 @@ Esta página enumera algunas de las características principales de $Projectname
|
||||
[h4]Control deslizante de afinidad[/h4]
|
||||
|
||||
Cuando se añaden conexiones en $Projectname, los miembros tienen la opción de asignar niveles de "afinidad" (cuán cerca está su amigo).
|
||||
Por otro lado, al añadir el canal de un amigo, se puede situar bajo el nivel de afinidad de "Amigos".
|
||||
Por otro lado, al añadir el canal de un amigo, se puede situar bajo el nivel de afinidad, justamente, de "Amigos".
|
||||
|
||||
En este punto, la herramienta $Projectname [i]Control deslizante de afinidad[/i], que normalmente aparece en la parte superior de la página, ajusta su contenido para incluir aquellos contactos que están dentro del rango de afinidad deseado. Los canales fuera de ese rango no se mostrarán, a menos que ajuste el control deslizante para incluirlos.
|
||||
|
||||
@ -62,7 +62,7 @@ Las listas de control de acceso se pueden aplicar a contenido y mensajes, fotos,
|
||||
|
||||
[h4]Inicio de sesión único[/h4]
|
||||
|
||||
Las listas de control de acceso funcionan para todos los canales de la red gracias a nuestra exclusiva tecnología de inicio de sesión único. La mayoría de los enlaces internos proporcionan un token de identidad que puede ser verificado en otros sitios de $Projectname y utilizado para controlar el acceso a recursos privados. Inicie sesión una vez en el hub de su casa. Después de eso, la autenticación de todos los recursos de $Projectname es "mágica".
|
||||
Las listas de control de acceso funcionan para todos los canales de la red gracias a nuestra exclusiva tecnología de inicio de sesión único. La mayoría de los enlaces internos proporcionan un token de identidad que puede ser verificado en otros sitios de $Projectname y utilizado para controlar el acceso a recursos privados. Inicie sesión una vez en la página principal del hub. Después de eso, la autenticación de todos los recursos de $Projectname es "mágica".
|
||||
|
||||
|
||||
[h4]Almacenamiento de Archivos habilitado para WebDAV[/h4]
|
||||
@ -93,7 +93,7 @@ Las aplicaciones pueden ser construidas y distribuidas por los miembros. Éstas
|
||||
|
||||
[h4]Diseño[/h4]
|
||||
|
||||
El diseño de la página se basa en un lenguaje de descripción llamado comanche. La propia $Projectname está escrito en diseños comanches que se pueden cambiar. Esto permite un nivel de personalización que no se encuentra normalmente en los llamados "entornos multiusuario".
|
||||
El diseño de la página se basa en un lenguaje de descripción llamado comanche. La propia $Projectname está escrito en plantillas en comanche que se pueden cambiar. Esto permite un nivel de personalización que no se encuentra normalmente en los llamados "entornos multiusuario".
|
||||
|
||||
|
||||
[h4]Marcadores[/h4]
|
||||
@ -111,14 +111,14 @@ Además, los mensajes pueden crearse utilizando "encriptación de extremo a extr
|
||||
|
||||
Por lo general, los mensajes públicos no se cifran durante el transporte ni durante el almacenamiento.
|
||||
|
||||
Los mensajes privados pueden ser revocados (no enviados) aunque no hay garantía de que el destinatario no lo haya leído todavía.
|
||||
Los mensajes privados pueden ser revocados (no enviados) aunque no hay garantía de que el destinatario no lo haya leído antes.
|
||||
|
||||
Los mensajes se pueden crear con una fecha de caducidad, en la que se borrarán/quitarán en el sitio del destinatario.
|
||||
|
||||
|
||||
[h4]Federación de Servicios[/h4]
|
||||
|
||||
Además de añadir "conectores de publicación cruzada" a una variedad de redes alternativas, hay soporte nativo para la importación de contenido desde RSS/Atom feeds y puede utilizarlo para crear canales especiales. Los plugins también están disponibles para comunicarse con otros usando los protocolos Diáspora, GNU-Social (OStatus) o Mastodon (ActivityPub). Estas redes no soportan la identidad nómada ni el control de acceso entre dominios; sin embargo, las comunicaciones básicas son soportadas desde/hacia la diáspora, Friendica, GNU-Social, Mastodon y otros proveedores que utilizan estos protocolos.
|
||||
Además de añadir "conectores de publicación cruzada" a una variedad de redes alternativas, hay soporte nativo para la importación de contenido desde RSS/Atom feeds y puede utilizarlo para crear canales especiales. Los plugins también están disponibles para comunicarse con otros usando los protocolos Diáspora, GNU-Social (OStatus) o Mastodon (ActivityPub). Estas redes no soportan la identidad nómada ni el control de acceso entre dominios; sin embargo, las comunicaciones básicas son soportadas desde o hacia Diaspora, Friendica, GNU-Social, Mastodon, Pleroma y otros proveedores que utilizan estos protocolos.
|
||||
|
||||
También existe soporte experimental para la autenticación OpenID que puede utilizarse en las listas de control de acceso. Este es un trabajo en progreso. Su hub $Projectname puede ser utilizado como un proveedor de OpenID para autenticarle en servicios externos que utilizan esta tecnología.
|
||||
|
||||
@ -126,7 +126,7 @@ Los canales pueden tener permisos para convertirse en "canales derivados" cuando
|
||||
|
||||
[h4]Grupos de Privacidad[/h4]
|
||||
|
||||
Nuestra implementación de grupos de privacidad es similar a la de Google "Círculos" y "Aspectos" de la Diáspora. Esto le permite filtrar su flujo entrante por grupos seleccionados y establecer automáticamente la Lista de control de acceso saliente sólo para aquellos que se encuentren en ese grupo de privacidad cuando publique. Usted puede anular esto en cualquier momento (antes de enviar el correo).
|
||||
Nuestra implementación de grupos de privacidad es similar a la de Google "Círculos" y "Aspectos" de Diaspora. Esto le permite filtrar su flujo entrante por grupos seleccionados y establecer automáticamente la Lista de control de acceso saliente sólo para aquellos que se encuentren en ese grupo de privacidad cuando publique. Usted puede anular esto en cualquier momento (antes de enviar el correo).
|
||||
|
||||
|
||||
[h4]Servicios de directorio[/h4]
|
||||
@ -158,19 +158,25 @@ Las opciones son:
|
||||
|
||||
[h4]Foros Públicos y Privados[/h4]
|
||||
|
||||
Los foros son típicamente canales que pueden estar abiertos a la participación de múltiples autores. Actualmente existen dos mecanismos para enviar mensajes a los foros: 1) mensajes de "muro a muro" y 2) a través de las etiquetas @mención del foro. Los foros pueden ser creados por cualquier persona y utilizados para cualquier propósito. El directorio contiene una opción para buscar foros públicos. Los foros privados sólo pueden ser publicados y, a menudo, sólo pueden ser vistos por los miembros.
|
||||
Los foros son típicamente canales que pueden estar abiertos a la participación de múltiples autores. Actualmente existen dos mecanismos para enviar mensajes a los foros:
|
||||
|
||||
1) mensajes de "muro a muro" y
|
||||
|
||||
2) a través de las etiquetas @mención del foro.
|
||||
|
||||
Los foros pueden ser creados por cualquier persona y utilizados para cualquier propósito. El directorio contiene una opción para buscar foros públicos. Los foros privados sólo pueden ser publicados y, a menudo, sólo pueden ser vistos por los miembros.
|
||||
|
||||
[h4]Clonación de cuentas[/h4]
|
||||
|
||||
Las cuentas en $Projectname se denominan [i]identidades nómadas[/i], porque la identidad de un miembro no está vinculada al hub donde se creó la identidad originalmente. Por ejemplo, cuando creas una cuenta de Facebook o Gmail, está vinculada a esos servicios. No pueden funcionar sin Facebook.com o Gmail.com.
|
||||
Las cuentas en $Projectname se denominan [i]identidades nómadas[/i], porque la identidad de un miembro no está vinculada al hub donde se creó la identidad originalmente. Por ejemplo, cuando cree una cuenta de Facebook o Gmail, está vinculada a esos servicios. No pueden funcionar sin Facebook.com o Gmail.com.
|
||||
|
||||
Por el contrario, digamos que ha creado una identidad $Projectname llamada[b]tina@$Projectnamehub.com[/b]. Puede clonarlo a otro hub $Projectname eligiendo el mismo o un nombre diferente:[b]vivoParasiempre@algún$ProjectnameHub.info[/b]
|
||||
Por el contrario, digamos que ha creado una identidad $Projectname llamada [b]tina@$Projectnamehub.com[/b]. Puede clonarlo a otro hub $Projectname eligiendo el mismo o un nombre diferente:[b]vivoParasiempre@algún$ProjectnameHub.info[/b]
|
||||
|
||||
Ahora ambos canales están sincronizados, lo que significa que todos sus contactos y preferencias se duplicarán en su clon. No importa si envías un mensaje desde su hub original o desde el nuevo hub. Los mensajes se reflejarán en ambas cuentas.
|
||||
Ahora ambos canales están sincronizados, lo que significa que todos sus contactos y preferencias se duplicarán en su clon. No importa si envía un mensaje desde su hub original o desde el nuevo hub. Los mensajes se reflejarán en ambas cuentas.
|
||||
|
||||
Esta es una característica bastante revolucionaria, si consideramos algunos escenarios:
|
||||
|
||||
¿Qué ocurre si el hub en el que se basa una identidad se desconecta de repente? Sin clonación, un miembro no podrá comunicarse hasta que el hub vuelva a estar en línea (sin duda muchos de ustedes han visto y maldecido el Twitter "Fail Whale"). Con la clonación, sólo tienesque iniciar sesión en su cuenta clonada y la vida continúa feliz para siempre.
|
||||
¿Qué ocurre si el hub en el que se basa una identidad se desconecta de repente? Sin clonación, un miembro no podrá comunicarse hasta que el hub vuelva a estar en línea (sin duda muchos de ustedes han visto y maldecido el Twitter "Fail Whale"). Con la clonación, sólo tiene que iniciar sesión en su cuenta clonada y la vida continúa feliz para siempre.
|
||||
|
||||
El administrador de su hub ya no puede permitirse el lujo de pagar por su hub gratuito y público $Projectname. Anuncia que el centro cerrará en dos semanas. Esto le da tiempo suficiente para clonar su(s) identidad(es) y preservar las relaciones, amigos y contenido de su $Projectname.
|
||||
|
||||
@ -193,9 +199,10 @@ $Projectname ofrece una sencilla copia de seguridad de la cuenta con un solo cli
|
||||
|
||||
[h4]Borrado de cuenta[/h4]
|
||||
|
||||
Las cuentas se pueden eliminar inmediatamente haciendo clic en un enlace. Eso es todo. Todo el contenido asociado se elimina de la rejilla (esto incluye los mensajes y cualquier otro contenido producido por el perfil eliminado). Dependiendo del número de conexiones que tenga, el proceso de eliminación de contenido remoto podría llevar algún tiempo, pero está previsto que ocurra tan rápido como sea posible.
|
||||
Las cuentas se pueden eliminar inmediatamente haciendo clic en un enlace. Eso es todo. Todo el contenido asociado se elimina de la red (esto incluye los mensajes y cualquier otro contenido producido por el perfil eliminado). Dependiendo del número de conexiones que tenga, el proceso de eliminación de contenido remoto podría llevar algún tiempo, pero está previsto que ocurra tan rápido como sea posible.
|
||||
|
||||
[h4]Supresión de contenido[/h4]
|
||||
|
||||
Cualquier contenido creado en $Projectname permanece bajo el control del miembro (o canal) que lo creó originalmente. En cualquier momento, un miembro puede borrar un mensaje o un rango de mensajes. El proceso de eliminación garantiza que el contenido se elimine, independientemente de si se publicó en el hub principal de un canal o en otro hub, donde el canal se autenticó de forma remota a través de Zot (protocolo de autenticación y comunicación de $Projectname).
|
||||
|
||||
|
||||
@ -221,4 +228,4 @@ $Projectname se puede ampliar de varias maneras, a través de la personalizació
|
||||
|
||||
[h4]API[/h4]
|
||||
|
||||
Una API está disponible para su uso por parte de servicios de terceros. Un plugin también proporciona una implementación básica de Twitter (para los que existen cientos de herramientas de terceros). El acceso puede ser proporcionado por login/contraseña o OAuth, y el registro del cliente de las aplicaciones de OAuth es proporcionado.
|
||||
Una API está disponible para su uso por parte de servicios de terceros. Un plugin también proporciona una implementación básica de Twitter (para los que existen cientos de herramientas de terceros). El acceso puede ser proporcionado por login/contraseña o OAuth, y el registro del cliente de las aplicaciones de OAuth está disponible.
|
@ -2625,28 +2625,30 @@ function tag_deliver($uid, $item_id) {
|
||||
$plustagged = false;
|
||||
$matches = array();
|
||||
|
||||
$pattern = '/[\!@]\!?\[zrl\=' . preg_quote($term['url'],'/') . '\]' . preg_quote($term['term'],'/') . '\[\/zrl\]/';
|
||||
$pattern = '/[\!@]\!?\[[uz]rl\=' . preg_quote($term['url'],'/') . '\](.*?)\[\/[uz]rl\]/';
|
||||
if(preg_match($pattern,$body,$matches))
|
||||
$tagged = true;
|
||||
|
||||
// original red forum tagging sequence @forumname+
|
||||
$pattern = '/\[url\=' . preg_quote($term['url'],'/') . '\]\@(.*?)\[\/url\]/';
|
||||
if(preg_match($pattern,$body,$matches))
|
||||
$tagged = true;
|
||||
|
||||
|
||||
// standard forum tagging sequence !forumname
|
||||
|
||||
$pluspattern = '/@\!?\[zrl\=([^\]]*?)\]((?:.(?!\[zrl\=))*?)\+\[\/zrl\]/';
|
||||
$forumpattern = '/\!\!?\[[uz]rl\=([^\]]*?)\]((?:.(?!\[[uz]rl\=))*?)\[\/[uz]rl\]/';
|
||||
|
||||
$forumpattern = '/\!\!?\[zrl\=([^\]]*?)\]((?:.(?!\[zrl\=))*?)\[\/zrl\]/';
|
||||
$forumpattern2 = '/\[[uz]rl\=([^\]]*?)\]\!((?:.(?!\[[uz]rl\=))*?)\[\/[uz]rl\]/';
|
||||
|
||||
$found = false;
|
||||
|
||||
$matches = array();
|
||||
|
||||
if(preg_match_all($pluspattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
if(preg_match_all($forumpattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
foreach($matches as $match) {
|
||||
$matched_forums ++;
|
||||
if($term['url'] === $match[1] && $term['term'] === $match[2] && intval($term['ttype']) === TERM_MENTION) {
|
||||
if($term['url'] === $match[1] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($matched_forums <= $max_forums) {
|
||||
$plustagged = true;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
logger('forum ' . $term['term'] . ' exceeded max_tagged_forums - ignoring');
|
||||
@ -2654,13 +2656,12 @@ function tag_deliver($uid, $item_id) {
|
||||
}
|
||||
}
|
||||
|
||||
if(preg_match_all($forumpattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
if(preg_match_all($forumpattern2,$body,$matches,PREG_SET_ORDER)) {
|
||||
foreach($matches as $match) {
|
||||
$matched_forums ++;
|
||||
if($term['url'] === $match[1] && $term['term'] === $match[2] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($term['url'] === $match[1] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($matched_forums <= $max_forums) {
|
||||
$plustagged = true;
|
||||
$found = true;
|
||||
break;
|
||||
}
|
||||
logger('forum ' . $term['term'] . ' exceeded max_tagged_forums - ignoring');
|
||||
@ -2882,18 +2883,19 @@ function tgroup_check($uid, $item) {
|
||||
$body = preg_replace('/\[share(.*?)\[\/share\]/','',$item['body']);
|
||||
|
||||
|
||||
$pluspattern = '/@\!?\[zrl\=([^\]]*?)\]((?:.(?!\[zrl\=))*?)\+\[\/zrl\]/';
|
||||
|
||||
$forumpattern = '/\!\!?\[zrl\=([^\]]*?)\]((?:.(?!\[zrl\=))*?)\[\/zrl\]/';
|
||||
|
||||
$forumpattern2 = '/\[zrl\=([^\]]*?)\]\!((?:.(?!\[zrl\=))*?)\[\/zrl\]/';
|
||||
|
||||
|
||||
$found = false;
|
||||
|
||||
$matches = array();
|
||||
|
||||
if(preg_match_all($pluspattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
if(preg_match_all($forumpattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
foreach($matches as $match) {
|
||||
$matched_forums ++;
|
||||
if($term['url'] === $match[1] && $term['term'] === $match[2] && intval($term['ttype']) === TERM_MENTION) {
|
||||
if($term['url'] === $match[1] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($matched_forums <= $max_forums) {
|
||||
$found = true;
|
||||
break;
|
||||
@ -2903,10 +2905,10 @@ function tgroup_check($uid, $item) {
|
||||
}
|
||||
}
|
||||
|
||||
if(preg_match_all($forumpattern,$body,$matches,PREG_SET_ORDER)) {
|
||||
if(preg_match_all($forumpattern2,$body,$matches,PREG_SET_ORDER)) {
|
||||
foreach($matches as $match) {
|
||||
$matched_forums ++;
|
||||
if($term['url'] === $match[1] && $term['term'] === $match[2] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($term['url'] === $match[1] && intval($term['ttype']) === TERM_FORUM) {
|
||||
if($matched_forums <= $max_forums) {
|
||||
$found = true;
|
||||
break;
|
||||
@ -4608,10 +4610,10 @@ function fix_attached_photo_permissions($uid,$xchan_hash,$body,
|
||||
if(! stristr($image,z_root() . '/photo/'))
|
||||
continue;
|
||||
$image_uri = substr($image,strrpos($image,'/') + 1);
|
||||
if(strpos($image_uri,'-') !== false)
|
||||
$image_uri = substr($image_uri,0, strpos($image_uri,'-'));
|
||||
if(strpos($image_uri,'.') !== false)
|
||||
$image_uri = substr($image_uri,0, strpos($image_uri,'.'));
|
||||
if(strrpos($image_uri,'-') !== false)
|
||||
$image_uri = substr($image_uri,0, strrpos($image_uri,'-'));
|
||||
if(strrpos($image_uri,'.') !== false)
|
||||
$image_uri = substr($image_uri,0, strrpos($image_uri,'.'));
|
||||
if(! strlen($image_uri))
|
||||
continue;
|
||||
$srch = '<' . $xchan_hash . '>';
|
||||
|
@ -221,7 +221,11 @@ function oembed_fetch_url($embedurl){
|
||||
|
||||
if(strpos(strtolower($embedurl),'.pdf') !== false) {
|
||||
$action = 'allow';
|
||||
$j = [ 'html' => '<object data="' . $embedurl . '" type="application/pdf" width="500" height="720">' . '<a href="' . $embedurl . '">' . t('View PDF') . '</a></object>', 'width' => 500, 'height' => 720, 'type' => 'pdf' ];
|
||||
$j = [
|
||||
'html' => '<object data="' . $embedurl . '" type="application/pdf" style="width: 100%; height: 300px;"></object>',
|
||||
'title' => t('View PDF'),
|
||||
'type' => 'pdf'
|
||||
];
|
||||
|
||||
}
|
||||
|
||||
|
@ -31,8 +31,12 @@ class photo_imagick extends photo_driver {
|
||||
if(! $data)
|
||||
return;
|
||||
|
||||
$this->image->readImageBlob($data);
|
||||
|
||||
try {
|
||||
$this->image->readImageBlob($data);
|
||||
}
|
||||
catch (Exception $e) {
|
||||
logger('imagick readImageBlob() exception:' . print_r($e,true));
|
||||
}
|
||||
|
||||
/**
|
||||
* Setup the image to the format it will be saved to
|
||||
@ -205,4 +209,4 @@ class photo_imagick extends photo_driver {
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -3225,6 +3225,28 @@ function array2XML($obj, $array) {
|
||||
}
|
||||
}
|
||||
|
||||
function array_path_exists($str,$arr) {
|
||||
|
||||
$ptr = $arr;
|
||||
$search = explode('/', $str);
|
||||
|
||||
if($search) {
|
||||
foreach($search as $s) {
|
||||
if(array_key_exists($s,$ptr)) {
|
||||
$ptr = $ptr[$s];
|
||||
}
|
||||
else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Inserts an array into $table.
|
||||
*
|
||||
@ -3433,7 +3455,7 @@ function get_forum_channels($uid) {
|
||||
|
||||
$sql_extra = (($xf) ? " and ( xchan_hash in (" . $xf . ") or xchan_pubforum = 1 ) " : " and xchan_pubforum = 1 ");
|
||||
|
||||
$r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
|
||||
$r = q("select abook_id, xchan_hash, xchan_name, xchan_url, xchan_addr, xchan_photo_s from abook left join xchan on abook_xchan = xchan_hash where xchan_deleted = 0 and abook_channel = %d and abook_pending = 0 and abook_ignored = 0 and abook_blocked = 0 and abook_archived = 0 $sql_extra order by xchan_name",
|
||||
intval($uid)
|
||||
);
|
||||
|
||||
@ -3488,3 +3510,4 @@ function print_val($v) {
|
||||
return $v;
|
||||
|
||||
}
|
||||
|
||||
|
File diff suppressed because one or more lines are too long
15
manifest.json
Normal file
15
manifest.json
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"short_name": "Harukin+",
|
||||
"name": "Harukin+!",
|
||||
"icons": [
|
||||
{
|
||||
"src": "icon.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
}
|
||||
],
|
||||
"start_url": "/",
|
||||
"background_color": "#fff",
|
||||
"theme_color": "#004898",
|
||||
"display": "standalone"
|
||||
}
|
File diff suppressed because it is too large
Load Diff
2
vendor/blueimp/jquery-file-upload/README.md
vendored
2
vendor/blueimp/jquery-file-upload/README.md
vendored
@ -10,7 +10,7 @@ Supports cross-domain, chunked and resumable file uploads and client-side image
|
||||
## ⚠️ Security Notice
|
||||
Security related releases:
|
||||
|
||||
* [v9.25.1](https://github.com/blueimp/jQuery-File-Upload/releases/tag/v9.25.1) Mitigates some [Potential vulnerabilities with PHP+ImageMagick](VULNERABILITIES.md#potential-vulnerabilities-with-php+imagemagick).
|
||||
* [v9.25.1](https://github.com/blueimp/jQuery-File-Upload/releases/tag/v9.25.1) Mitigates some [Potential vulnerabilities with PHP+ImageMagick](VULNERABILITIES.md#potential-vulnerabilities-with-php-imagemagick).
|
||||
* [v9.24.1](https://github.com/blueimp/jQuery-File-Upload/releases/tag/v9.24.1) Fixes a [Remote code execution vulnerability in the PHP component](VULNERABILITIES.md#remote-code-execution-vulnerability-in-the-php-component).
|
||||
* v[9.10.1](https://github.com/blueimp/jQuery-File-Upload/releases/tag/9.10.1) Fixes an [Open redirect vulnerability in the GAE components](VULNERABILITIES.md#open-redirect-vulnerability-in-the-gae-components).
|
||||
* Commit [4175032](https://github.com/blueimp/jQuery-File-Upload/commit/41750323a464e848856dc4c5c940663498beb74a) (*fixed in all tagged releases*) Fixes a [Cross-site scripting vulnerability in the Iframe Transport](VULNERABILITIES.md#cross-site-scripting-vulnerability-in-the-iframe-transport).
|
||||
|
@ -113,7 +113,7 @@ location ^~ /path/to/project/server/php/files {
|
||||
```
|
||||
|
||||
## Secure image processing configurations
|
||||
The following configuration mitigates [potential image processing vulnerabilities with ImageMagick](VULNERABILITIES.md#potential-vulnerabilities-with-php+imagemagick) by limiting the attack vectors to a small subset of image types (`GIF/JPEG/PNG`).
|
||||
The following configuration mitigates [potential image processing vulnerabilities with ImageMagick](VULNERABILITIES.md#potential-vulnerabilities-with-php-imagemagick) by limiting the attack vectors to a small subset of image types (`GIF/JPEG/PNG`).
|
||||
|
||||
Please also consider using alternative, safer image processing libraries like [libvips](https://github.com/libvips/libvips) or [imageflow](https://github.com/imazen/imageflow).
|
||||
|
||||
|
@ -22,7 +22,7 @@
|
||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap styles -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<!-- Generic page styles -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- blueimp Gallery styles -->
|
||||
@ -177,8 +177,8 @@
|
||||
<a class="play-pause"></a>
|
||||
<ol class="indicator"></ol>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js" integrity="sha384-r6jjWwxAypHaESwS5an5J9dkfzwQuKVNV9FZM9B6fnt8PFuY0cVwLhV7BltCZhLy" crossorigin="anonymous"></script>
|
||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||
@ -186,7 +186,7 @@
|
||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<!-- blueimp Gallery script -->
|
||||
<script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||
|
@ -20,7 +20,7 @@
|
||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap styles -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<!-- Generic page styles -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||
@ -96,15 +96,15 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||
<script src="js/jquery.iframe-transport.js"></script>
|
||||
<!-- The basic File Upload plugin -->
|
||||
|
6
vendor/blueimp/jquery-file-upload/basic.html
vendored
6
vendor/blueimp/jquery-file-upload/basic.html
vendored
@ -20,7 +20,7 @@
|
||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap styles -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<!-- Generic page styles -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||
@ -96,7 +96,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||
@ -104,7 +104,7 @@
|
||||
<!-- The basic File Upload plugin -->
|
||||
<script src="js/jquery.fileupload.js"></script>
|
||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<script>
|
||||
/*jslint unparam: true */
|
||||
/*global window, $ */
|
||||
|
0
vendor/blueimp/jquery-file-upload/bower-version-update.js
vendored
Executable file → Normal file
0
vendor/blueimp/jquery-file-upload/bower-version-update.js
vendored
Executable file → Normal file
2
vendor/blueimp/jquery-file-upload/bower.json
vendored
2
vendor/blueimp/jquery-file-upload/bower.json
vendored
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "blueimp-file-upload",
|
||||
"version": "9.25.1",
|
||||
"version": "9.28.0",
|
||||
"title": "jQuery File Upload",
|
||||
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images.",
|
||||
"keywords": [
|
||||
|
@ -15,7 +15,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>jQuery File Upload Plugin postMessage API</title>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
|
6
vendor/blueimp/jquery-file-upload/index.html
vendored
6
vendor/blueimp/jquery-file-upload/index.html
vendored
@ -22,7 +22,7 @@
|
||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap styles -->
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
|
||||
<!-- Generic page styles -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- blueimp Gallery styles -->
|
||||
@ -216,7 +216,7 @@
|
||||
</tr>
|
||||
{% } %}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||
<!-- The Templates plugin is included to render the upload/download listings -->
|
||||
@ -226,7 +226,7 @@
|
||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
|
||||
<!-- blueimp Gallery script -->
|
||||
<script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||
|
@ -22,7 +22,7 @@
|
||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- jQuery UI styles -->
|
||||
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/dark-hive/jquery-ui.css" id="theme">
|
||||
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/dark-hive/jquery-ui.css" integrity="sha384-ufZtQaOYGuy/CibAC5jmelOpBu3H78Js7HrXSLo4LGccHUrGGHXt+uaTcDbio3kI" crossorigin="anonymous">
|
||||
<!-- Generic page styles -->
|
||||
<link rel="stylesheet" href="css/style.css">
|
||||
<!-- Demo styles -->
|
||||
@ -201,8 +201,8 @@
|
||||
</tr>
|
||||
{% } %}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" integrity="sha384-xBuQ/xzmlsLoJpyjoggmTEz8OWUFM0/RC5BsqQBDX2v5cMvDHcMakNTNrHIW2I5f" crossorigin="anonymous"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" integrity="sha384-Dziy8F2VlJQLMShA6FHWNul/veM9bCkRUaLqr199K94ntO5QUrLJBEbYegdSkkqX" crossorigin="anonymous"></script>
|
||||
<!-- The Templates plugin is included to render the upload/download listings -->
|
||||
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "blueimp-file-upload",
|
||||
"version": "9.25.1",
|
||||
"version": "9.28.0",
|
||||
"title": "jQuery File Upload",
|
||||
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
|
||||
"keywords": [
|
||||
|
34
vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php
vendored
Executable file → Normal file
34
vendor/blueimp/jquery-file-upload/server/php/UploadHandler.php
vendored
Executable file → Normal file
@ -38,9 +38,9 @@ class UploadHandler
|
||||
'image_resize' => 'Failed to resize image'
|
||||
);
|
||||
|
||||
protected const IMAGETYPE_GIF = 1;
|
||||
protected const IMAGETYPE_JPEG = 2;
|
||||
protected const IMAGETYPE_PNG = 3;
|
||||
const IMAGETYPE_GIF = 1;
|
||||
const IMAGETYPE_JPEG = 2;
|
||||
const IMAGETYPE_PNG = 3;
|
||||
|
||||
protected $image_objects = array();
|
||||
|
||||
@ -1047,13 +1047,18 @@ class UploadHandler
|
||||
}
|
||||
|
||||
protected function create_scaled_image($file_name, $version, $options) {
|
||||
if ($this->options['image_library'] === 2) {
|
||||
return $this->imagemagick_create_scaled_image($file_name, $version, $options);
|
||||
try {
|
||||
if ($this->options['image_library'] === 2) {
|
||||
return $this->imagemagick_create_scaled_image($file_name, $version, $options);
|
||||
}
|
||||
if ($this->options['image_library'] && extension_loaded('imagick')) {
|
||||
return $this->imagick_create_scaled_image($file_name, $version, $options);
|
||||
}
|
||||
return $this->gd_create_scaled_image($file_name, $version, $options);
|
||||
} catch (\Exception $e) {
|
||||
error_log($e->getMessage());
|
||||
return false;
|
||||
}
|
||||
if ($this->options['image_library'] && extension_loaded('imagick')) {
|
||||
return $this->imagick_create_scaled_image($file_name, $version, $options);
|
||||
}
|
||||
return $this->gd_create_scaled_image($file_name, $version, $options);
|
||||
}
|
||||
|
||||
protected function destroy_image_object($file_path) {
|
||||
@ -1066,12 +1071,12 @@ class UploadHandler
|
||||
$fp = fopen($file_path, 'r');
|
||||
$data = fread($fp, 4);
|
||||
fclose($fp);
|
||||
// GIF: 47 49 46
|
||||
if (substr($data, 0, 3) === 'GIF') {
|
||||
// GIF: 47 49 46 38
|
||||
if ($data === 'GIF8') {
|
||||
return self::IMAGETYPE_GIF;
|
||||
}
|
||||
// JPG: FF D8
|
||||
if (bin2hex(substr($data, 0, 2)) === 'ffd8') {
|
||||
// JPG: FF D8 FF
|
||||
if (bin2hex(substr($data, 0, 3)) === 'ffd8ff') {
|
||||
return self::IMAGETYPE_JPEG;
|
||||
}
|
||||
// PNG: 89 50 4E 47
|
||||
@ -1082,6 +1087,9 @@ class UploadHandler
|
||||
}
|
||||
|
||||
protected function is_valid_image_file($file_path) {
|
||||
if (!preg_match('/\.(gif|jpe?g|png)$/i', $file_path)) {
|
||||
return false;
|
||||
}
|
||||
return !!$this->imagetype($file_path);
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
* Licensed under the MIT license:
|
||||
* https://opensource.org/licenses/MIT
|
||||
*/
|
||||
exit;
|
||||
|
||||
error_reporting(E_ALL | E_STRICT);
|
||||
require('UploadHandler.php');
|
||||
$upload_handler = new UploadHandler();
|
||||
|
@ -20,7 +20,7 @@
|
||||
<meta charset="utf-8">
|
||||
<title>jQuery File Upload Plugin Test</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.23.1.css">
|
||||
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.23.1.css" integrity="sha384-RW07PgMHO3eNYL7ddFK/okEi1rjvSeJ3Ck/TxGUHkmzSlGmw4R9/KGJYUD3OicMd" crossorigin="anonymous">
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="qunit-header">jQuery File Upload Plugin Test</h1>
|
||||
@ -145,7 +145,7 @@
|
||||
</tr>
|
||||
{% } %}
|
||||
</script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js" integrity="sha384-nvAa0+6Qg9clwYCGGPpDQLVpLNn0fRaROjHqs13t4Ggj3Ez50XnGQqc/r8MhnRDZ" crossorigin="anonymous"></script>
|
||||
<script src="../js/vendor/jquery.ui.widget.js"></script>
|
||||
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||||
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||
@ -166,7 +166,7 @@ window.testBasicWidget = $.blueimp.fileupload;
|
||||
/* global window, $ */
|
||||
window.testUIWidget = $.blueimp.fileupload;
|
||||
</script>
|
||||
<script src="https://code.jquery.com/qunit/qunit-1.23.1.js"></script>
|
||||
<script src="https://code.jquery.com/qunit/qunit-1.23.1.js" integrity="sha384-FJbPWND3tHbuhP8PhCp3Kn0bEtCxaIq+sfkmiJ+Su0jchKFnVbPQTTyPiuwqbkXa" crossorigin="anonymous"></script>
|
||||
<script src="test.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
2
vendor/composer/ClassLoader.php
vendored
2
vendor/composer/ClassLoader.php
vendored
@ -279,7 +279,7 @@ class ClassLoader
|
||||
*/
|
||||
public function setApcuPrefix($apcuPrefix)
|
||||
{
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && ini_get('apc.enabled') ? $apcuPrefix : null;
|
||||
$this->apcuPrefix = function_exists('apcu_fetch') && filter_var(ini_get('apc.enabled'), FILTER_VALIDATE_BOOLEAN) ? $apcuPrefix : null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
69
vendor/composer/LICENSE
vendored
69
vendor/composer/LICENSE
vendored
@ -1,56 +1,21 @@
|
||||
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
|
||||
Upstream-Name: Composer
|
||||
Upstream-Contact: Jordi Boggiano <j.boggiano@seld.be>
|
||||
Source: https://github.com/composer/composer
|
||||
|
||||
Files: *
|
||||
Copyright: 2016, Nils Adermann <naderman@naderman.de>
|
||||
2016, Jordi Boggiano <j.boggiano@seld.be>
|
||||
License: Expat
|
||||
Copyright (c) Nils Adermann, Jordi Boggiano
|
||||
|
||||
Files: src/Composer/Util/TlsHelper.php
|
||||
Copyright: 2016, Nils Adermann <naderman@naderman.de>
|
||||
2016, Jordi Boggiano <j.boggiano@seld.be>
|
||||
2013, Evan Coury <me@evancoury.com>
|
||||
License: Expat and BSD-2-Clause
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
|
||||
License: BSD-2-Clause
|
||||
Redistribution and use in source and binary forms, with or without modification,
|
||||
are permitted provided that the following conditions are met:
|
||||
.
|
||||
* Redistributions of source code must retain the above copyright notice,
|
||||
this list of conditions and the following disclaimer.
|
||||
.
|
||||
* Redistributions in binary form must reproduce the above copyright notice,
|
||||
this list of conditions and the following disclaimer in the documentation
|
||||
and/or other materials provided with the distribution.
|
||||
.
|
||||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
||||
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
||||
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
||||
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
||||
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
||||
License: Expat
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is furnished
|
||||
to do so, subject to the following conditions:
|
||||
.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
|
1
vendor/composer/autoload_classmap.php
vendored
1
vendor/composer/autoload_classmap.php
vendored
@ -1337,6 +1337,7 @@ return array(
|
||||
'Zotlabs\\Update\\_1222' => $baseDir . '/Zotlabs/Update/_1222.php',
|
||||
'Zotlabs\\Update\\_1223' => $baseDir . '/Zotlabs/Update/_1223.php',
|
||||
'Zotlabs\\Update\\_1224' => $baseDir . '/Zotlabs/Update/_1224.php',
|
||||
'Zotlabs\\Update\\_1225' => $baseDir . '/Zotlabs/Update/_1225.php',
|
||||
'Zotlabs\\Web\\CheckJS' => $baseDir . '/Zotlabs/Web/CheckJS.php',
|
||||
'Zotlabs\\Web\\Controller' => $baseDir . '/Zotlabs/Web/Controller.php',
|
||||
'Zotlabs\\Web\\HTTPHeaders' => $baseDir . '/Zotlabs/Web/HTTPHeaders.php',
|
||||
|
69
vendor/composer/installed.json
vendored
69
vendor/composer/installed.json
vendored
@ -1,20 +1,20 @@
|
||||
[
|
||||
{
|
||||
"name": "blueimp/jquery-file-upload",
|
||||
"version": "v9.25.1",
|
||||
"version_normalized": "9.25.1.0",
|
||||
"version": "v9.28.0",
|
||||
"version_normalized": "9.28.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/vkhramtsov/jQuery-File-Upload.git",
|
||||
"reference": "28891f9b2bc339bcc1ca8d548e5401e8563bf04b"
|
||||
"reference": "ff5accfe2e5c4a522777faa980a90cf86a636d1d"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/28891f9b2bc339bcc1ca8d548e5401e8563bf04b",
|
||||
"reference": "28891f9b2bc339bcc1ca8d548e5401e8563bf04b",
|
||||
"url": "https://api.github.com/repos/vkhramtsov/jQuery-File-Upload/zipball/ff5accfe2e5c4a522777faa980a90cf86a636d1d",
|
||||
"reference": "ff5accfe2e5c4a522777faa980a90cf86a636d1d",
|
||||
"shasum": ""
|
||||
},
|
||||
"time": "2018-10-26T07:21:48+00:00",
|
||||
"time": "2018-11-13T05:41:39+00:00",
|
||||
"type": "library",
|
||||
"installation-source": "dist",
|
||||
"autoload": {
|
||||
@ -162,6 +162,47 @@
|
||||
],
|
||||
"description": "Internationalization library powered by CLDR data."
|
||||
},
|
||||
{
|
||||
"name": "desandro/imagesloaded",
|
||||
"version": "v4.1.4",
|
||||
"version_normalized": "4.1.4.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/desandro/imagesloaded.git",
|
||||
"reference": "67c4e57453120935180c45c6820e7d3fbd2ea1f9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/desandro/imagesloaded/zipball/67c4e57453120935180c45c6820e7d3fbd2ea1f9",
|
||||
"reference": "67c4e57453120935180c45c6820e7d3fbd2ea1f9",
|
||||
"shasum": ""
|
||||
},
|
||||
"time": "2018-01-02T16:53:35+00:00",
|
||||
"type": "component",
|
||||
"installation-source": "dist",
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
"license": [
|
||||
"MIT"
|
||||
],
|
||||
"authors": [
|
||||
{
|
||||
"name": "David DeSandro",
|
||||
"homepage": "http://desandro.com/",
|
||||
"role": "developer"
|
||||
}
|
||||
],
|
||||
"description": "JavaScript is all like _You images done yet or what?_",
|
||||
"homepage": "http://imagesloaded.desandro.com",
|
||||
"keywords": [
|
||||
"dom",
|
||||
"images",
|
||||
"javascript",
|
||||
"jquery-plugin",
|
||||
"library",
|
||||
"loaded",
|
||||
"ui"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "ezyang/htmlpurifier",
|
||||
"version": "v4.10.0",
|
||||
@ -457,23 +498,23 @@
|
||||
},
|
||||
{
|
||||
"name": "psr/log",
|
||||
"version": "1.0.2",
|
||||
"version_normalized": "1.0.2.0",
|
||||
"version": "1.1.0",
|
||||
"version_normalized": "1.1.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/php-fig/log.git",
|
||||
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d"
|
||||
"reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||
"reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d",
|
||||
"url": "https://api.github.com/repos/php-fig/log/zipball/6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
|
||||
"reference": "6c001f1daafa3a3ac1d8ff69ee4db8e799a654dd",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=5.3.0"
|
||||
},
|
||||
"time": "2016-10-10T12:19:37+00:00",
|
||||
"time": "2018-11-20T15:27:04+00:00",
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
@ -1141,8 +1182,8 @@
|
||||
},
|
||||
{
|
||||
"name": "symfony/polyfill-ctype",
|
||||
"version": "v1.9.0",
|
||||
"version_normalized": "1.9.0.0",
|
||||
"version": "v1.10.0",
|
||||
"version_normalized": "1.10.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/symfony/polyfill-ctype.git",
|
||||
|
5
vendor/desandro/imagesloaded/.gitignore
vendored
Normal file
5
vendor/desandro/imagesloaded/.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
bower_components/
|
||||
node_modules/
|
||||
_site/
|
||||
build/
|
||||
package-lock.json
|
12
vendor/desandro/imagesloaded/.jshintrc
vendored
Normal file
12
vendor/desandro/imagesloaded/.jshintrc
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
{
|
||||
"browser": true,
|
||||
"curly": true,
|
||||
"newcap": false,
|
||||
"strict": true,
|
||||
"undef": true,
|
||||
"unused": true,
|
||||
"globals": {
|
||||
"imagesLoaded": false,
|
||||
"QUnit": false
|
||||
}
|
||||
}
|
362
vendor/desandro/imagesloaded/README.md
vendored
Normal file
362
vendor/desandro/imagesloaded/README.md
vendored
Normal file
@ -0,0 +1,362 @@
|
||||
# imagesLoaded
|
||||
|
||||
<p class="tagline">JavaScript is all like "You images done yet or what?"</p>
|
||||
|
||||
[imagesloaded.desandro.com](http://imagesloaded.desandro.com)
|
||||
|
||||
Detect when images have been loaded.
|
||||
|
||||
## Install
|
||||
|
||||
### Download
|
||||
|
||||
+ [imagesloaded.pkgd.min.js](https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js) minified
|
||||
+ [imagesloaded.pkgd.js](https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.js) un-minified
|
||||
|
||||
### CDN
|
||||
|
||||
``` html
|
||||
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
|
||||
<!-- or -->
|
||||
<script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.js"></script>
|
||||
```
|
||||
|
||||
### Package managers
|
||||
|
||||
Install via [npm](https://www.npmjs.com/package/imagesloaded): `npm install imagesloaded`
|
||||
|
||||
Install via [Bower](http://bower.io): `bower install imagesloaded --save`
|
||||
|
||||
## jQuery
|
||||
|
||||
You can use imagesLoaded as a jQuery Plugin.
|
||||
|
||||
``` js
|
||||
$('#container').imagesLoaded( function() {
|
||||
// images have loaded
|
||||
});
|
||||
|
||||
// options
|
||||
$('#container').imagesLoaded( {
|
||||
// options...
|
||||
},
|
||||
function() {
|
||||
// images have loaded
|
||||
}
|
||||
);
|
||||
```
|
||||
|
||||
`.imagesLoaded()` returns a [jQuery Deferred object](http://api.jquery.com/category/deferred-object/). This allows you to use `.always()`, `.done()`, `.fail()` and `.progress()`.
|
||||
|
||||
``` js
|
||||
$('#container').imagesLoaded()
|
||||
.always( function( instance ) {
|
||||
console.log('all images loaded');
|
||||
})
|
||||
.done( function( instance ) {
|
||||
console.log('all images successfully loaded');
|
||||
})
|
||||
.fail( function() {
|
||||
console.log('all images loaded, at least one is broken');
|
||||
})
|
||||
.progress( function( instance, image ) {
|
||||
var result = image.isLoaded ? 'loaded' : 'broken';
|
||||
console.log( 'image is ' + result + ' for ' + image.img.src );
|
||||
});
|
||||
```
|
||||
|
||||
## Vanilla JavaScript
|
||||
|
||||
You can use imagesLoaded with vanilla JS.
|
||||
|
||||
``` js
|
||||
imagesLoaded( elem, callback )
|
||||
// options
|
||||
imagesLoaded( elem, options, callback )
|
||||
// you can use `new` if you like
|
||||
new imagesLoaded( elem, callback )
|
||||
```
|
||||
|
||||
+ `elem` _Element, NodeList, Array, or Selector String_
|
||||
+ `options` _Object_
|
||||
+ `callback` _Function_ - function triggered after all images have been loaded
|
||||
|
||||
Using a callback function is the same as binding it to the `always` event (see below).
|
||||
|
||||
``` js
|
||||
// element
|
||||
imagesLoaded( document.querySelector('#container'), function( instance ) {
|
||||
console.log('all images are loaded');
|
||||
});
|
||||
// selector string
|
||||
imagesLoaded( '#container', function() {...});
|
||||
// multiple elements
|
||||
var posts = document.querySelectorAll('.post');
|
||||
imagesLoaded( posts, function() {...});
|
||||
```
|
||||
|
||||
Bind events with vanilla JS with .on(), .off(), and .once() methods.
|
||||
|
||||
``` js
|
||||
var imgLoad = imagesLoaded( elem );
|
||||
function onAlways( instance ) {
|
||||
console.log('all images are loaded');
|
||||
}
|
||||
// bind with .on()
|
||||
imgLoad.on( 'always', onAlways );
|
||||
// unbind with .off()
|
||||
imgLoad.off( 'always', onAlways );
|
||||
```
|
||||
|
||||
## Background
|
||||
|
||||
Detect when background images have loaded, in addition to `<img>`s.
|
||||
|
||||
Set `{ background: true }` to detect when the element's background image has loaded.
|
||||
|
||||
``` js
|
||||
// jQuery
|
||||
$('#container').imagesLoaded( { background: true }, function() {
|
||||
console.log('#container background image loaded');
|
||||
});
|
||||
|
||||
// vanilla JS
|
||||
imagesLoaded( '#container', { background: true }, function() {
|
||||
console.log('#container background image loaded');
|
||||
});
|
||||
```
|
||||
|
||||
[See jQuery demo](http://codepen.io/desandro/pen/pjVMPB) or [vanilla JS demo](http://codepen.io/desandro/pen/avKooW) on CodePen.
|
||||
|
||||
Set to a selector string like `{ background: '.item' }` to detect when the background images of child elements have loaded.
|
||||
|
||||
``` js
|
||||
// jQuery
|
||||
$('#container').imagesLoaded( { background: '.item' }, function() {
|
||||
console.log('all .item background images loaded');
|
||||
});
|
||||
|
||||
// vanilla JS
|
||||
imagesLoaded( '#container', { background: '.item' }, function() {
|
||||
console.log('all .item background images loaded');
|
||||
});
|
||||
```
|
||||
|
||||
[See jQuery demo](http://codepen.io/desandro/pen/avKoZL) or [vanilla JS demo](http://codepen.io/desandro/pen/vNrBGz) on CodePen.
|
||||
|
||||
## Events
|
||||
|
||||
### always
|
||||
|
||||
``` js
|
||||
// jQuery
|
||||
$('#container').imagesLoaded().always( function( instance ) {
|
||||
console.log('ALWAYS - all images have been loaded');
|
||||
});
|
||||
|
||||
// vanilla JS
|
||||
imgLoad.on( 'always', function( instance ) {
|
||||
console.log('ALWAYS - all images have been loaded');
|
||||
});
|
||||
```
|
||||
|
||||
Triggered after all images have been either loaded or confirmed broken.
|
||||
|
||||
+ `instance` _imagesLoaded_ - the imagesLoaded instance
|
||||
|
||||
### done
|
||||
|
||||
``` js
|
||||
// jQuery
|
||||
$('#container').imagesLoaded().done( function( instance ) {
|
||||
console.log('DONE - all images have been successfully loaded');
|
||||
});
|
||||
|
||||
// vanilla JS
|
||||
imgLoad.on( 'done', function( instance ) {
|
||||
console.log('DONE - all images have been successfully loaded');
|
||||
});
|
||||
```
|
||||
|
||||
Triggered after all images have successfully loaded without any broken images.
|
||||
|
||||
### fail
|
||||
|
||||
``` js
|
||||
$('#container').imagesLoaded().fail( function( instance ) {
|
||||
console.log('FAIL - all images loaded, at least one is broken');
|
||||
});
|
||||
|
||||
// vanilla JS
|
||||
imgLoad.on( 'fail', function( instance ) {
|
||||
console.log('FAIL - all images loaded, at least one is broken');
|
||||
});
|
||||
```
|
||||
|
||||
Triggered after all images have been loaded with at least one broken image.
|
||||
|
||||
### progress
|
||||
|
||||
``` js
|
||||
imgLoad.on( 'progress', function( instance, image ) {
|
||||
var result = image.isLoaded ? 'loaded' : 'broken';
|
||||
console.log( 'image is ' + result + ' for ' + image.img.src );
|
||||
});
|
||||
```
|
||||
|
||||
Triggered after each image has been loaded.
|
||||
|
||||
+ `instance` _imagesLoaded_ - the imagesLoaded instance
|
||||
+ `image` _LoadingImage_ - the LoadingImage instance of the loaded image
|
||||
|
||||
<!-- sponsored -->
|
||||
|
||||
## Properties
|
||||
|
||||
### LoadingImage.img
|
||||
|
||||
_Image_ - The `img` element
|
||||
|
||||
### LoadingImage.isLoaded
|
||||
|
||||
_Boolean_ - `true` when the image has successfully loaded
|
||||
|
||||
### imagesLoaded.images
|
||||
|
||||
Array of _LoadingImage_ instances for each image detected
|
||||
|
||||
``` js
|
||||
var imgLoad = imagesLoaded('#container');
|
||||
imgLoad.on( 'always', function() {
|
||||
console.log( imgLoad.images.length + ' images loaded' );
|
||||
// detect which image is broken
|
||||
for ( var i = 0, len = imgLoad.images.length; i < len; i++ ) {
|
||||
var image = imgLoad.images[i];
|
||||
var result = image.isLoaded ? 'loaded' : 'broken';
|
||||
console.log( 'image is ' + result + ' for ' + image.img.src );
|
||||
}
|
||||
});
|
||||
```
|
||||
|
||||
## Browserify
|
||||
|
||||
imagesLoaded works with [Browserify](http://browserify.org/).
|
||||
|
||||
``` bash
|
||||
npm install imagesloaded --save
|
||||
```
|
||||
|
||||
``` js
|
||||
var imagesLoaded = require('imagesloaded');
|
||||
|
||||
imagesLoaded( elem, function() {...} );
|
||||
```
|
||||
|
||||
Use `.makeJQueryPlugin` to make to use `.imagesLoaded()` jQuery plugin.
|
||||
|
||||
``` js
|
||||
var $ = require('jquery');
|
||||
var imagesLoaded = require('imagesloaded');
|
||||
|
||||
// provide jQuery argument
|
||||
imagesLoaded.makeJQueryPlugin( $ );
|
||||
// now use .imagesLoaded() jQuery plugin
|
||||
$('#container').imagesLoaded( function() {...});
|
||||
```
|
||||
|
||||
## Webpack
|
||||
|
||||
Install imagesLoaded with npm.
|
||||
|
||||
``` bash
|
||||
npm install imagesloaded
|
||||
```
|
||||
|
||||
You can then `require('imagesloaded')`.
|
||||
|
||||
``` js
|
||||
// main.js
|
||||
var imagesLoaded = require('imagesloaded');
|
||||
|
||||
imagesLoaded( '#container', function() {
|
||||
// images have loaded
|
||||
});
|
||||
```
|
||||
|
||||
Use `.makeJQueryPlugin` to make `.imagesLoaded()` jQuery plugin.
|
||||
|
||||
``` js
|
||||
// main.js
|
||||
var imagesLoaded = require('imagesloaded');
|
||||
var $ = require('jquery');
|
||||
|
||||
// provide jQuery argument
|
||||
imagesLoaded.makeJQueryPlugin( $ );
|
||||
// now use .imagesLoaded() jQuery plugin
|
||||
$('#container').imagesLoaded( function() {...});
|
||||
```
|
||||
|
||||
Run webpack.
|
||||
|
||||
``` bash
|
||||
webpack main.js bundle.js
|
||||
```
|
||||
|
||||
## RequireJS
|
||||
|
||||
imagesLoaded works with [RequireJS](http://requirejs.org).
|
||||
|
||||
You can require [imagesloaded.pkgd.js](http://imagesloaded.desandro.com/imagesloaded.pkgd.js).
|
||||
|
||||
``` js
|
||||
requirejs( [
|
||||
'path/to/imagesloaded.pkgd.js',
|
||||
], function( imagesLoaded ) {
|
||||
imagesLoaded( '#container', function() { ... });
|
||||
});
|
||||
```
|
||||
|
||||
Use `.makeJQueryPlugin` to make `.imagesLoaded()` jQuery plugin.
|
||||
|
||||
``` js
|
||||
requirejs( [
|
||||
'jquery',
|
||||
'path/to/imagesloaded.pkgd.js',
|
||||
], function( $, imagesLoaded ) {
|
||||
// provide jQuery argument
|
||||
imagesLoaded.makeJQueryPlugin( $ );
|
||||
// now use .imagesLoaded() jQuery plugin
|
||||
$('#container').imagesLoaded( function() {...});
|
||||
});
|
||||
```
|
||||
|
||||
You can manage dependencies with [Bower](http://bower.io). Set `baseUrl` to `bower_components` and set a path config for all your application code.
|
||||
|
||||
``` js
|
||||
requirejs.config({
|
||||
baseUrl: 'bower_components/',
|
||||
paths: { // path to your app
|
||||
app: '../'
|
||||
}
|
||||
});
|
||||
|
||||
requirejs( [
|
||||
'imagesloaded/imagesloaded',
|
||||
'app/my-component.js'
|
||||
], function( imagesLoaded, myComp ) {
|
||||
imagesLoaded( '#container', function() { ... });
|
||||
});
|
||||
```
|
||||
|
||||
## Browser support
|
||||
|
||||
+ IE9+
|
||||
+ Android 2.3+
|
||||
+ iOS Safari 4+
|
||||
+ All other modern browsers
|
||||
|
||||
Use [imagesLoaded v3](http://imagesloaded.desandro.com/v3/) for IE8 support.
|
||||
|
||||
## MIT License
|
||||
|
||||
imagesLoaded is released under the [MIT License](http://desandro.mit-license.org/). Have at it.
|
37
vendor/desandro/imagesloaded/bower.json
vendored
Normal file
37
vendor/desandro/imagesloaded/bower.json
vendored
Normal file
@ -0,0 +1,37 @@
|
||||
{
|
||||
"name": "imagesloaded",
|
||||
"description": "JavaScript is all like _You images done yet or what?_",
|
||||
"main": "imagesloaded.js",
|
||||
"dependencies": {
|
||||
"ev-emitter": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"jquery": ">=1.9 <4.0",
|
||||
"qunit": "^2.0.0"
|
||||
},
|
||||
"ignore": [
|
||||
"**/.*",
|
||||
"test",
|
||||
"package.json",
|
||||
"composer.json",
|
||||
"node_modules",
|
||||
"bower_components",
|
||||
"tests",
|
||||
"sandbox/",
|
||||
"gulpfile.js",
|
||||
"contributing.md"
|
||||
],
|
||||
"homepage": "http://imagesloaded.desandro.com",
|
||||
"authors": [
|
||||
"David DeSandro"
|
||||
],
|
||||
"moduleType": [
|
||||
"amd",
|
||||
"globals",
|
||||
"node"
|
||||
],
|
||||
"keywords": [
|
||||
"images"
|
||||
],
|
||||
"license": "MIT"
|
||||
}
|
15
vendor/desandro/imagesloaded/composer.json
vendored
Normal file
15
vendor/desandro/imagesloaded/composer.json
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "desandro/imagesloaded",
|
||||
"description": "JavaScript is all like _You images done yet or what?_",
|
||||
"type": "component",
|
||||
"keywords": ["javascript", "library", "images", "loaded", "dom", "ui", "jquery-plugin"],
|
||||
"homepage": "http://imagesloaded.desandro.com",
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "David DeSandro",
|
||||
"homepage": "http://desandro.com/",
|
||||
"role": "developer"
|
||||
}
|
||||
]
|
||||
}
|
20
vendor/desandro/imagesloaded/contributing.md
vendored
Normal file
20
vendor/desandro/imagesloaded/contributing.md
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
## Submitting issues
|
||||
|
||||
### Reduced test case required
|
||||
|
||||
All bug reports and problem issues require a [**reduced test case**](http://css-tricks.com/reduced-test-cases/).
|
||||
|
||||
+ A reduced test case clearly demonstrates the bug or issue.
|
||||
+ It contains the bare minimum HTML, CSS, and JavaScript required to demonstrate the bug.
|
||||
+ A link to your production site is **not** a reduced test case.
|
||||
|
||||
Create a test case by forking a [CodePen demos](http://codepen.io/desandro/pens/tags/?selected_tag=imagesloaded-docs).
|
||||
|
||||
+ [progress with jQuery](http://codepen.io/desandro/pen/bIFyl)
|
||||
+ [progress with vanilla JS](http://codepen.io/desandro/pen/hlzaw)
|
||||
+ [`{ background: true }` with jQuery](http://codepen.io/desandro/pen/pjVMPB)
|
||||
+ [`{ background: true }` with vanilla JS](http://codepen.io/desandro/pen/avKooW)
|
||||
+ [`{ background: '.selector' }` with jQuery](http://codepen.io/desandro/pen/avKoZL)
|
||||
+ [`{ background: '.selector' }` with vanilla JS](http://codepen.io/desandro/pen/vNrBGz)
|
||||
|
||||
Providing a reduced test case is the best way to get your issue addressed. They help you point out the problem. They help me verify and debug the problem. They help others understand the problem. Without a reduced test case, your issue may be closed.
|
128
vendor/desandro/imagesloaded/gulpfile.js
vendored
Normal file
128
vendor/desandro/imagesloaded/gulpfile.js
vendored
Normal file
@ -0,0 +1,128 @@
|
||||
/*jshint node: true, strict: false */
|
||||
|
||||
var fs = require('fs');
|
||||
var gulp = require('gulp');
|
||||
var rename = require('gulp-rename');
|
||||
var replace = require('gulp-replace');
|
||||
|
||||
// ----- hint ----- //
|
||||
|
||||
var jshint = require('gulp-jshint');
|
||||
|
||||
gulp.task( 'hint-js', function() {
|
||||
return gulp.src('imagesloaded.js')
|
||||
.pipe( jshint() )
|
||||
.pipe( jshint.reporter('default') );
|
||||
});
|
||||
|
||||
gulp.task( 'hint-test', function() {
|
||||
return gulp.src('test/unit/*.js')
|
||||
.pipe( jshint() )
|
||||
.pipe( jshint.reporter('default') );
|
||||
});
|
||||
|
||||
gulp.task( 'hint-task', function() {
|
||||
return gulp.src('gulpfile.js')
|
||||
.pipe( jshint() )
|
||||
.pipe( jshint.reporter('default') );
|
||||
});
|
||||
|
||||
var jsonlint = require('gulp-json-lint');
|
||||
|
||||
gulp.task( 'jsonlint', function() {
|
||||
return gulp.src( '*.json' )
|
||||
.pipe( jsonlint() )
|
||||
.pipe( jsonlint.report('verbose') );
|
||||
});
|
||||
|
||||
gulp.task( 'hint', [ 'hint-js', 'hint-test', 'hint-task', 'jsonlint' ]);
|
||||
|
||||
// -------------------------- RequireJS makes pkgd -------------------------- //
|
||||
|
||||
// refactored from gulp-requirejs-optimize
|
||||
// https://www.npmjs.com/package/gulp-requirejs-optimize/
|
||||
|
||||
var gutil = require('gulp-util');
|
||||
var chalk = require('chalk');
|
||||
var rjsOptimize = require('gulp-requirejs-optimize');
|
||||
|
||||
// regex for banner comment
|
||||
var reBannerComment = new RegExp('^\\s*(?:\\/\\*[\\s\\S]*?\\*\\/)\\s*');
|
||||
|
||||
function getBanner() {
|
||||
var src = fs.readFileSync( 'imagesloaded.js', 'utf8' );
|
||||
var matches = src.match( reBannerComment );
|
||||
var banner = matches[0].replace( 'imagesLoaded', 'imagesLoaded PACKAGED' );
|
||||
return banner;
|
||||
}
|
||||
|
||||
function addBanner( str ) {
|
||||
return replace( /^/, str );
|
||||
}
|
||||
|
||||
gulp.task( 'requirejs', function() {
|
||||
var banner = getBanner();
|
||||
// HACK src is not needed
|
||||
// should refactor rjsOptimize to produce src
|
||||
return gulp.src('imagesloaded.js')
|
||||
.pipe( rjsOptimize({
|
||||
baseUrl: 'bower_components',
|
||||
optimize: 'none',
|
||||
include: [
|
||||
'../imagesloaded'
|
||||
]
|
||||
}) )
|
||||
// remove named module
|
||||
.pipe( replace( "'../imagesloaded',", '' ) )
|
||||
// add banner
|
||||
.pipe( addBanner( banner ) )
|
||||
.pipe( rename('imagesloaded.pkgd.js') )
|
||||
.pipe( gulp.dest('.') );
|
||||
});
|
||||
|
||||
|
||||
// ----- uglify ----- //
|
||||
|
||||
var uglify = require('gulp-uglify');
|
||||
|
||||
gulp.task( 'uglify', [ 'requirejs' ], function() {
|
||||
var banner = getBanner();
|
||||
gulp.src('imagesloaded.pkgd.js')
|
||||
.pipe( uglify() )
|
||||
// add banner
|
||||
.pipe( addBanner( banner ) )
|
||||
.pipe( rename('imagesloaded.pkgd.min.js') )
|
||||
.pipe( gulp.dest('.') );
|
||||
});
|
||||
|
||||
// ----- version ----- //
|
||||
|
||||
// set version in source files
|
||||
|
||||
var minimist = require('minimist');
|
||||
|
||||
// use gulp version -t 1.2.3
|
||||
gulp.task( 'version', function() {
|
||||
var args = minimist( process.argv.slice(3) );
|
||||
var version = args.t;
|
||||
if ( !version || !/\d+\.\d+\.\d+/.test( version ) ) {
|
||||
gutil.log( 'invalid version: ' + chalk.red( version ) );
|
||||
return;
|
||||
}
|
||||
gutil.log( 'ticking version to ' + chalk.green( version ) );
|
||||
|
||||
gulp.src('imagesloaded.js')
|
||||
.pipe( replace( /imagesLoaded v\d+\.\d+\.\d+/, 'imagesLoaded v' + version ) )
|
||||
.pipe( gulp.dest('.') );
|
||||
|
||||
gulp.src( [ 'bower.json', 'package.json' ] )
|
||||
.pipe( replace( /"version": "\d+\.\d+\.\d+"/, '"version": "' + version + '"' ) )
|
||||
.pipe( gulp.dest('.') );
|
||||
});
|
||||
|
||||
// ----- default ----- //
|
||||
|
||||
gulp.task( 'default', [
|
||||
'hint',
|
||||
'uglify'
|
||||
]);
|
377
vendor/desandro/imagesloaded/imagesloaded.js
vendored
Normal file
377
vendor/desandro/imagesloaded/imagesloaded.js
vendored
Normal file
@ -0,0 +1,377 @@
|
||||
/*!
|
||||
* imagesLoaded v4.1.4
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
( function( window, factory ) { 'use strict';
|
||||
// universal module definition
|
||||
|
||||
/*global define: false, module: false, require: false */
|
||||
|
||||
if ( typeof define == 'function' && define.amd ) {
|
||||
// AMD
|
||||
define( [
|
||||
'ev-emitter/ev-emitter'
|
||||
], function( EvEmitter ) {
|
||||
return factory( window, EvEmitter );
|
||||
});
|
||||
} else if ( typeof module == 'object' && module.exports ) {
|
||||
// CommonJS
|
||||
module.exports = factory(
|
||||
window,
|
||||
require('ev-emitter')
|
||||
);
|
||||
} else {
|
||||
// browser global
|
||||
window.imagesLoaded = factory(
|
||||
window,
|
||||
window.EvEmitter
|
||||
);
|
||||
}
|
||||
|
||||
})( typeof window !== 'undefined' ? window : this,
|
||||
|
||||
// -------------------------- factory -------------------------- //
|
||||
|
||||
function factory( window, EvEmitter ) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var $ = window.jQuery;
|
||||
var console = window.console;
|
||||
|
||||
// -------------------------- helpers -------------------------- //
|
||||
|
||||
// extend objects
|
||||
function extend( a, b ) {
|
||||
for ( var prop in b ) {
|
||||
a[ prop ] = b[ prop ];
|
||||
}
|
||||
return a;
|
||||
}
|
||||
|
||||
var arraySlice = Array.prototype.slice;
|
||||
|
||||
// turn element or nodeList into an array
|
||||
function makeArray( obj ) {
|
||||
if ( Array.isArray( obj ) ) {
|
||||
// use object if already an array
|
||||
return obj;
|
||||
}
|
||||
|
||||
var isArrayLike = typeof obj == 'object' && typeof obj.length == 'number';
|
||||
if ( isArrayLike ) {
|
||||
// convert nodeList to array
|
||||
return arraySlice.call( obj );
|
||||
}
|
||||
|
||||
// array of single index
|
||||
return [ obj ];
|
||||
}
|
||||
|
||||
// -------------------------- imagesLoaded -------------------------- //
|
||||
|
||||
/**
|
||||
* @param {Array, Element, NodeList, String} elem
|
||||
* @param {Object or Function} options - if function, use as callback
|
||||
* @param {Function} onAlways - callback function
|
||||
*/
|
||||
function ImagesLoaded( elem, options, onAlways ) {
|
||||
// coerce ImagesLoaded() without new, to be new ImagesLoaded()
|
||||
if ( !( this instanceof ImagesLoaded ) ) {
|
||||
return new ImagesLoaded( elem, options, onAlways );
|
||||
}
|
||||
// use elem as selector string
|
||||
var queryElem = elem;
|
||||
if ( typeof elem == 'string' ) {
|
||||
queryElem = document.querySelectorAll( elem );
|
||||
}
|
||||
// bail if bad element
|
||||
if ( !queryElem ) {
|
||||
console.error( 'Bad element for imagesLoaded ' + ( queryElem || elem ) );
|
||||
return;
|
||||
}
|
||||
|
||||
this.elements = makeArray( queryElem );
|
||||
this.options = extend( {}, this.options );
|
||||
// shift arguments if no options set
|
||||
if ( typeof options == 'function' ) {
|
||||
onAlways = options;
|
||||
} else {
|
||||
extend( this.options, options );
|
||||
}
|
||||
|
||||
if ( onAlways ) {
|
||||
this.on( 'always', onAlways );
|
||||
}
|
||||
|
||||
this.getImages();
|
||||
|
||||
if ( $ ) {
|
||||
// add jQuery Deferred object
|
||||
this.jqDeferred = new $.Deferred();
|
||||
}
|
||||
|
||||
// HACK check async to allow time to bind listeners
|
||||
setTimeout( this.check.bind( this ) );
|
||||
}
|
||||
|
||||
ImagesLoaded.prototype = Object.create( EvEmitter.prototype );
|
||||
|
||||
ImagesLoaded.prototype.options = {};
|
||||
|
||||
ImagesLoaded.prototype.getImages = function() {
|
||||
this.images = [];
|
||||
|
||||
// filter & find items if we have an item selector
|
||||
this.elements.forEach( this.addElementImages, this );
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Node} element
|
||||
*/
|
||||
ImagesLoaded.prototype.addElementImages = function( elem ) {
|
||||
// filter siblings
|
||||
if ( elem.nodeName == 'IMG' ) {
|
||||
this.addImage( elem );
|
||||
}
|
||||
// get background image on element
|
||||
if ( this.options.background === true ) {
|
||||
this.addElementBackgroundImages( elem );
|
||||
}
|
||||
|
||||
// find children
|
||||
// no non-element nodes, #143
|
||||
var nodeType = elem.nodeType;
|
||||
if ( !nodeType || !elementNodeTypes[ nodeType ] ) {
|
||||
return;
|
||||
}
|
||||
var childImgs = elem.querySelectorAll('img');
|
||||
// concat childElems to filterFound array
|
||||
for ( var i=0; i < childImgs.length; i++ ) {
|
||||
var img = childImgs[i];
|
||||
this.addImage( img );
|
||||
}
|
||||
|
||||
// get child background images
|
||||
if ( typeof this.options.background == 'string' ) {
|
||||
var children = elem.querySelectorAll( this.options.background );
|
||||
for ( i=0; i < children.length; i++ ) {
|
||||
var child = children[i];
|
||||
this.addElementBackgroundImages( child );
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
var elementNodeTypes = {
|
||||
1: true,
|
||||
9: true,
|
||||
11: true
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.addElementBackgroundImages = function( elem ) {
|
||||
var style = getComputedStyle( elem );
|
||||
if ( !style ) {
|
||||
// Firefox returns null if in a hidden iframe https://bugzil.la/548397
|
||||
return;
|
||||
}
|
||||
// get url inside url("...")
|
||||
var reURL = /url\((['"])?(.*?)\1\)/gi;
|
||||
var matches = reURL.exec( style.backgroundImage );
|
||||
while ( matches !== null ) {
|
||||
var url = matches && matches[2];
|
||||
if ( url ) {
|
||||
this.addBackground( url, elem );
|
||||
}
|
||||
matches = reURL.exec( style.backgroundImage );
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @param {Image} img
|
||||
*/
|
||||
ImagesLoaded.prototype.addImage = function( img ) {
|
||||
var loadingImage = new LoadingImage( img );
|
||||
this.images.push( loadingImage );
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.addBackground = function( url, elem ) {
|
||||
var background = new Background( url, elem );
|
||||
this.images.push( background );
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.check = function() {
|
||||
var _this = this;
|
||||
this.progressedCount = 0;
|
||||
this.hasAnyBroken = false;
|
||||
// complete if no images
|
||||
if ( !this.images.length ) {
|
||||
this.complete();
|
||||
return;
|
||||
}
|
||||
|
||||
function onProgress( image, elem, message ) {
|
||||
// HACK - Chrome triggers event before object properties have changed. #83
|
||||
setTimeout( function() {
|
||||
_this.progress( image, elem, message );
|
||||
});
|
||||
}
|
||||
|
||||
this.images.forEach( function( loadingImage ) {
|
||||
loadingImage.once( 'progress', onProgress );
|
||||
loadingImage.check();
|
||||
});
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.progress = function( image, elem, message ) {
|
||||
this.progressedCount++;
|
||||
this.hasAnyBroken = this.hasAnyBroken || !image.isLoaded;
|
||||
// progress event
|
||||
this.emitEvent( 'progress', [ this, image, elem ] );
|
||||
if ( this.jqDeferred && this.jqDeferred.notify ) {
|
||||
this.jqDeferred.notify( this, image );
|
||||
}
|
||||
// check if completed
|
||||
if ( this.progressedCount == this.images.length ) {
|
||||
this.complete();
|
||||
}
|
||||
|
||||
if ( this.options.debug && console ) {
|
||||
console.log( 'progress: ' + message, image, elem );
|
||||
}
|
||||
};
|
||||
|
||||
ImagesLoaded.prototype.complete = function() {
|
||||
var eventName = this.hasAnyBroken ? 'fail' : 'done';
|
||||
this.isComplete = true;
|
||||
this.emitEvent( eventName, [ this ] );
|
||||
this.emitEvent( 'always', [ this ] );
|
||||
if ( this.jqDeferred ) {
|
||||
var jqMethod = this.hasAnyBroken ? 'reject' : 'resolve';
|
||||
this.jqDeferred[ jqMethod ]( this );
|
||||
}
|
||||
};
|
||||
|
||||
// -------------------------- -------------------------- //
|
||||
|
||||
function LoadingImage( img ) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
LoadingImage.prototype = Object.create( EvEmitter.prototype );
|
||||
|
||||
LoadingImage.prototype.check = function() {
|
||||
// If complete is true and browser supports natural sizes,
|
||||
// try to check for image status manually.
|
||||
var isComplete = this.getIsImageComplete();
|
||||
if ( isComplete ) {
|
||||
// report based on naturalWidth
|
||||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
|
||||
return;
|
||||
}
|
||||
|
||||
// If none of the checks above matched, simulate loading on detached element.
|
||||
this.proxyImage = new Image();
|
||||
this.proxyImage.addEventListener( 'load', this );
|
||||
this.proxyImage.addEventListener( 'error', this );
|
||||
// bind to image as well for Firefox. #191
|
||||
this.img.addEventListener( 'load', this );
|
||||
this.img.addEventListener( 'error', this );
|
||||
this.proxyImage.src = this.img.src;
|
||||
};
|
||||
|
||||
LoadingImage.prototype.getIsImageComplete = function() {
|
||||
// check for non-zero, non-undefined naturalWidth
|
||||
// fixes Safari+InfiniteScroll+Masonry bug infinite-scroll#671
|
||||
return this.img.complete && this.img.naturalWidth;
|
||||
};
|
||||
|
||||
LoadingImage.prototype.confirm = function( isLoaded, message ) {
|
||||
this.isLoaded = isLoaded;
|
||||
this.emitEvent( 'progress', [ this, this.img, message ] );
|
||||
};
|
||||
|
||||
// ----- events ----- //
|
||||
|
||||
// trigger specified handler for event type
|
||||
LoadingImage.prototype.handleEvent = function( event ) {
|
||||
var method = 'on' + event.type;
|
||||
if ( this[ method ] ) {
|
||||
this[ method ]( event );
|
||||
}
|
||||
};
|
||||
|
||||
LoadingImage.prototype.onload = function() {
|
||||
this.confirm( true, 'onload' );
|
||||
this.unbindEvents();
|
||||
};
|
||||
|
||||
LoadingImage.prototype.onerror = function() {
|
||||
this.confirm( false, 'onerror' );
|
||||
this.unbindEvents();
|
||||
};
|
||||
|
||||
LoadingImage.prototype.unbindEvents = function() {
|
||||
this.proxyImage.removeEventListener( 'load', this );
|
||||
this.proxyImage.removeEventListener( 'error', this );
|
||||
this.img.removeEventListener( 'load', this );
|
||||
this.img.removeEventListener( 'error', this );
|
||||
};
|
||||
|
||||
// -------------------------- Background -------------------------- //
|
||||
|
||||
function Background( url, element ) {
|
||||
this.url = url;
|
||||
this.element = element;
|
||||
this.img = new Image();
|
||||
}
|
||||
|
||||
// inherit LoadingImage prototype
|
||||
Background.prototype = Object.create( LoadingImage.prototype );
|
||||
|
||||
Background.prototype.check = function() {
|
||||
this.img.addEventListener( 'load', this );
|
||||
this.img.addEventListener( 'error', this );
|
||||
this.img.src = this.url;
|
||||
// check if image is already complete
|
||||
var isComplete = this.getIsImageComplete();
|
||||
if ( isComplete ) {
|
||||
this.confirm( this.img.naturalWidth !== 0, 'naturalWidth' );
|
||||
this.unbindEvents();
|
||||
}
|
||||
};
|
||||
|
||||
Background.prototype.unbindEvents = function() {
|
||||
this.img.removeEventListener( 'load', this );
|
||||
this.img.removeEventListener( 'error', this );
|
||||
};
|
||||
|
||||
Background.prototype.confirm = function( isLoaded, message ) {
|
||||
this.isLoaded = isLoaded;
|
||||
this.emitEvent( 'progress', [ this, this.element, message ] );
|
||||
};
|
||||
|
||||
// -------------------------- jQuery -------------------------- //
|
||||
|
||||
ImagesLoaded.makeJQueryPlugin = function( jQuery ) {
|
||||
jQuery = jQuery || window.jQuery;
|
||||
if ( !jQuery ) {
|
||||
return;
|
||||
}
|
||||
// set local variable
|
||||
$ = jQuery;
|
||||
// $().imagesLoaded()
|
||||
$.fn.imagesLoaded = function( options, callback ) {
|
||||
var instance = new ImagesLoaded( this, options, callback );
|
||||
return instance.jqDeferred.promise( $(this) );
|
||||
};
|
||||
};
|
||||
// try making plugin
|
||||
ImagesLoaded.makeJQueryPlugin();
|
||||
|
||||
// -------------------------- -------------------------- //
|
||||
|
||||
return ImagesLoaded;
|
||||
|
||||
});
|
@ -1,11 +1,11 @@
|
||||
/*!
|
||||
* imagesLoaded PACKAGED v4.1.0
|
||||
* imagesLoaded PACKAGED v4.1.4
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
* MIT License
|
||||
*/
|
||||
|
||||
/**
|
||||
* EvEmitter v1.0.1
|
||||
* EvEmitter v1.1.0
|
||||
* Lil' event emitter
|
||||
* MIT License
|
||||
*/
|
||||
@ -14,7 +14,7 @@
|
||||
|
||||
( function( global, factory ) {
|
||||
// universal module definition
|
||||
/* jshint strict: false */ /* globals define, module */
|
||||
/* jshint strict: false */ /* globals define, module, window */
|
||||
if ( typeof define == 'function' && define.amd ) {
|
||||
// AMD - RequireJS
|
||||
define( 'ev-emitter/ev-emitter',factory );
|
||||
@ -26,7 +26,7 @@
|
||||
global.EvEmitter = factory();
|
||||
}
|
||||
|
||||
}( this, function() {
|
||||
}( typeof window != 'undefined' ? window : this, function() {
|
||||
|
||||
|
||||
|
||||
@ -59,8 +59,8 @@ proto.once = function( eventName, listener ) {
|
||||
// set once flag
|
||||
// set onceEvents hash
|
||||
var onceEvents = this._onceEvents = this._onceEvents || {};
|
||||
// set onceListeners array
|
||||
var onceListeners = onceEvents[ eventName ] = onceEvents[ eventName ] || [];
|
||||
// set onceListeners object
|
||||
var onceListeners = onceEvents[ eventName ] = onceEvents[ eventName ] || {};
|
||||
// set flag
|
||||
onceListeners[ listener ] = true;
|
||||
|
||||
@ -85,13 +85,14 @@ proto.emitEvent = function( eventName, args ) {
|
||||
if ( !listeners || !listeners.length ) {
|
||||
return;
|
||||
}
|
||||
var i = 0;
|
||||
var listener = listeners[i];
|
||||
// copy over to avoid interference if .off() in listener
|
||||
listeners = listeners.slice(0);
|
||||
args = args || [];
|
||||
// once stuff
|
||||
var onceListeners = this._onceEvents && this._onceEvents[ eventName ];
|
||||
|
||||
while ( listener ) {
|
||||
for ( var i=0; i < listeners.length; i++ ) {
|
||||
var listener = listeners[i]
|
||||
var isOnce = onceListeners && onceListeners[ listener ];
|
||||
if ( isOnce ) {
|
||||
// remove listener
|
||||
@ -102,20 +103,22 @@ proto.emitEvent = function( eventName, args ) {
|
||||
}
|
||||
// trigger listener
|
||||
listener.apply( this, args );
|
||||
// get next listener
|
||||
i += isOnce ? 0 : 1;
|
||||
listener = listeners[i];
|
||||
}
|
||||
|
||||
return this;
|
||||
};
|
||||
|
||||
proto.allOff = function() {
|
||||
delete this._events;
|
||||
delete this._onceEvents;
|
||||
};
|
||||
|
||||
return EvEmitter;
|
||||
|
||||
}));
|
||||
|
||||
/*!
|
||||
* imagesLoaded v4.1.0
|
||||
* imagesLoaded v4.1.4
|
||||
* JavaScript is all like "You images are done yet or what?"
|
||||
* MIT License
|
||||
*/
|
||||
@ -146,7 +149,7 @@ return EvEmitter;
|
||||
);
|
||||
}
|
||||
|
||||
})( window,
|
||||
})( typeof window !== 'undefined' ? window : this,
|
||||
|
||||
// -------------------------- factory -------------------------- //
|
||||
|
||||
@ -167,22 +170,23 @@ function extend( a, b ) {
|
||||
return a;
|
||||
}
|
||||
|
||||
var arraySlice = Array.prototype.slice;
|
||||
|
||||
// turn element or nodeList into an array
|
||||
function makeArray( obj ) {
|
||||
var ary = [];
|
||||
if ( Array.isArray( obj ) ) {
|
||||
// use object if already an array
|
||||
ary = obj;
|
||||
} else if ( typeof obj.length == 'number' ) {
|
||||
// convert nodeList to array
|
||||
for ( var i=0; i < obj.length; i++ ) {
|
||||
ary.push( obj[i] );
|
||||
}
|
||||
} else {
|
||||
// array of single index
|
||||
ary.push( obj );
|
||||
return obj;
|
||||
}
|
||||
return ary;
|
||||
|
||||
var isArrayLike = typeof obj == 'object' && typeof obj.length == 'number';
|
||||
if ( isArrayLike ) {
|
||||
// convert nodeList to array
|
||||
return arraySlice.call( obj );
|
||||
}
|
||||
|
||||
// array of single index
|
||||
return [ obj ];
|
||||
}
|
||||
|
||||
// -------------------------- imagesLoaded -------------------------- //
|
||||
@ -198,13 +202,19 @@ function ImagesLoaded( elem, options, onAlways ) {
|
||||
return new ImagesLoaded( elem, options, onAlways );
|
||||
}
|
||||
// use elem as selector string
|
||||
var queryElem = elem;
|
||||
if ( typeof elem == 'string' ) {
|
||||
elem = document.querySelectorAll( elem );
|
||||
queryElem = document.querySelectorAll( elem );
|
||||
}
|
||||
// bail if bad element
|
||||
if ( !queryElem ) {
|
||||
console.error( 'Bad element for imagesLoaded ' + ( queryElem || elem ) );
|
||||
return;
|
||||
}
|
||||
|
||||
this.elements = makeArray( elem );
|
||||
this.elements = makeArray( queryElem );
|
||||
this.options = extend( {}, this.options );
|
||||
|
||||
// shift arguments if no options set
|
||||
if ( typeof options == 'function' ) {
|
||||
onAlways = options;
|
||||
} else {
|
||||
@ -223,9 +233,7 @@ function ImagesLoaded( elem, options, onAlways ) {
|
||||
}
|
||||
|
||||
// HACK check async to allow time to bind listeners
|
||||
setTimeout( function() {
|
||||
this.check();
|
||||
}.bind( this ));
|
||||
setTimeout( this.check.bind( this ) );
|
||||
}
|
||||
|
||||
ImagesLoaded.prototype = Object.create( EvEmitter.prototype );
|
||||
@ -393,7 +401,9 @@ LoadingImage.prototype.check = function() {
|
||||
};
|
||||
|
||||
LoadingImage.prototype.getIsImageComplete = function() {
|
||||
return this.img.complete && this.img.naturalWidth !== undefined;
|
||||
// check for non-zero, non-undefined naturalWidth
|
||||
// fixes Safari+InfiniteScroll+Masonry bug infinite-scroll#671
|
||||
return this.img.complete && this.img.naturalWidth;
|
||||
};
|
||||
|
||||
LoadingImage.prototype.confirm = function( isLoaded, message ) {
|
7
vendor/desandro/imagesloaded/imagesloaded.pkgd.min.js
vendored
Normal file
7
vendor/desandro/imagesloaded/imagesloaded.pkgd.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
48
vendor/desandro/imagesloaded/package.json
vendored
Normal file
48
vendor/desandro/imagesloaded/package.json
vendored
Normal file
@ -0,0 +1,48 @@
|
||||
{
|
||||
"name": "imagesloaded",
|
||||
"version": "4.1.4",
|
||||
"description": "JavaScript is all like _You images done yet or what?_",
|
||||
"main": "imagesloaded.js",
|
||||
"dependencies": {
|
||||
"ev-emitter": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"chalk": "^1.1.1",
|
||||
"cheerio": "^0.19.0",
|
||||
"gulp": "^3.9.0",
|
||||
"gulp-jshint": "^1.11.2",
|
||||
"gulp-json-lint": "^0.1.0",
|
||||
"gulp-rename": "^1.2.2",
|
||||
"gulp-replace": "^0.5.4",
|
||||
"gulp-requirejs-optimize": "github:metafizzy/gulp-requirejs-optimize",
|
||||
"gulp-uglify": "^1.4.2",
|
||||
"gulp-util": "^3.0.7",
|
||||
"highlight.js": "^8.9.1",
|
||||
"marked": "^0.3.5",
|
||||
"minimist": "^1.2.0",
|
||||
"transfob": "^1.0.0"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/desandro/imagesloaded.git"
|
||||
},
|
||||
"keywords": [
|
||||
"images",
|
||||
"loaded",
|
||||
"ui",
|
||||
"dom",
|
||||
"jquery-plugin"
|
||||
],
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/desandro/imagesloaded/issues"
|
||||
},
|
||||
"homepage": "https://github.com/desandro/imagesloaded",
|
||||
"directories": {
|
||||
"test": "test"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "David DeSandro"
|
||||
}
|
29
vendor/desandro/imagesloaded/sandbox/background/css/background.css
vendored
Normal file
29
vendor/desandro/imagesloaded/sandbox/background/css/background.css
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
.box {
|
||||
width: 300px;
|
||||
height: 300px;
|
||||
margin: 0 20px 20px 0;
|
||||
border: 1px solid;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.orange-tree {
|
||||
background: url('http://i.imgur.com/bwy74ok.jpg');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.thunder-cloud {
|
||||
background: url('../../../test/img/thunder-cloud.jpg');
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.multi1 {
|
||||
background:
|
||||
url("http://i.imgur.com/ZAVN3.png"),
|
||||
url('http://i.imgur.com/6UdOxeB.png') bottom right,
|
||||
url(http://i.imgur.com/LkmcILl.jpg);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.blue {
|
||||
background: #09F;
|
||||
}
|
51
vendor/desandro/imagesloaded/sandbox/background/index.html
vendored
Normal file
51
vendor/desandro/imagesloaded/sandbox/background/index.html
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
|
||||
<title>background</title>
|
||||
|
||||
<!-- put in separate folder so JS path is different from CSS path -->
|
||||
<link rel="stylesheet" href="css/background.css" >
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>background</h1>
|
||||
|
||||
<div class="box orange-tree"></div>
|
||||
|
||||
<div class="box thunder-cloud"></div>
|
||||
|
||||
<div class="box multi1"></div>
|
||||
|
||||
<div class="box blue"></div>
|
||||
|
||||
<script src="../../bower_components/ev-emitter/ev-emitter.js"></script>
|
||||
<script src="../../imagesloaded.js"></script>
|
||||
<script>
|
||||
|
||||
var imgLoad0 = imagesLoaded( '.orange-tree', { background: true }, function() {
|
||||
console.log('orange tree bg images loaded', imgLoad0.images.length );
|
||||
});
|
||||
|
||||
var imgLoad1 = imagesLoaded( '.thunder-cloud', { background: true }, function() {
|
||||
console.log('thunder cloud bg images loaded', imgLoad1.images.length);
|
||||
});
|
||||
|
||||
var imgLoad2 = imagesLoaded( '.multi1', { background: true }, function() {
|
||||
console.log('multi1 bg images loaded', imgLoad2.images.length);
|
||||
});
|
||||
|
||||
var imgLoad3 = imagesLoaded( '.box', { background: true }, function() {
|
||||
console.log('.box bg images loaded', imgLoad3.images.length);
|
||||
});
|
||||
imgLoad3.on('progress', function( instance, image, element ) {
|
||||
console.log( 'progress on .box', image.img.src, element.className );
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
</body>
|
||||
</html>
|
89
vendor/desandro/imagesloaded/sandbox/progress/index.html
vendored
Normal file
89
vendor/desandro/imagesloaded/sandbox/progress/index.html
vendored
Normal file
@ -0,0 +1,89 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width" />
|
||||
|
||||
<title>progress</title>
|
||||
|
||||
<style>
|
||||
#image-container img {
|
||||
max-height: 140px;
|
||||
}
|
||||
|
||||
li {
|
||||
height: 140px;
|
||||
min-width: 100px;
|
||||
display: block;
|
||||
float: left;
|
||||
list-style: none;
|
||||
margin: 0 5px 5px 0;
|
||||
background-color: black;
|
||||
background-position: center center;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
li img,
|
||||
#status {
|
||||
-webkit-transition: opacity 0.4s;
|
||||
-moz-transition: opacity 0.4s;
|
||||
-ms-transition: opacity 0.4s;
|
||||
transition: opacity 0.4s;
|
||||
}
|
||||
|
||||
li.is-loading {
|
||||
background-color: black;
|
||||
background-image: url('http://desandro.github.io/imagesloaded/assets/loading.gif');
|
||||
}
|
||||
|
||||
li.is-broken {
|
||||
background-image: url('http://desandro.github.io/imagesloaded/assets/broken.png');
|
||||
background-color: #be3730;
|
||||
width: 120px;
|
||||
}
|
||||
|
||||
li.is-loading img,
|
||||
li.is-broken img {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.buttons { margin-bottom: 1.0em; }
|
||||
|
||||
button {
|
||||
font-size: 18px;
|
||||
padding: 0.4em 0.8em;
|
||||
font-family: sans-serif;
|
||||
}
|
||||
|
||||
#status {
|
||||
opacity: 0;
|
||||
position: fixed;
|
||||
right: 20px;
|
||||
top: 20px;
|
||||
background: hsla( 0, 0%, 0%, 0.8);
|
||||
padding: 20px;
|
||||
border-radius: 10px;
|
||||
z-index: 2; /* over other stuff */
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>progress</h1>
|
||||
|
||||
<div class="buttons">
|
||||
<button id="add">Add images</button>
|
||||
<button id="reset">Reset</button>
|
||||
</div>
|
||||
<div id="status">
|
||||
<progress max="7" value="0"></progress>
|
||||
</div>
|
||||
<div id="image-container"></div>
|
||||
|
||||
<script src="../../bower_components/ev-emitter/ev-emitter.js"></script>
|
||||
<script src="../../imagesloaded.js"></script>
|
||||
<script src="progress.js"></script>
|
||||
|
||||
</body>
|
||||
</html>
|
111
vendor/desandro/imagesloaded/sandbox/progress/progress.js
vendored
Normal file
111
vendor/desandro/imagesloaded/sandbox/progress/progress.js
vendored
Normal file
@ -0,0 +1,111 @@
|
||||
/* jshint strict: false */
|
||||
|
||||
var progressElem, statusElem;
|
||||
var supportsProgress;
|
||||
var loadedImageCount, imageCount;
|
||||
|
||||
var container = document.querySelector('#image-container');
|
||||
statusElem = document.querySelector('#status');
|
||||
progressElem = document.querySelector('progress');
|
||||
|
||||
supportsProgress = progressElem &&
|
||||
// IE does not support progress
|
||||
progressElem.toString().indexOf('Unknown') === -1;
|
||||
|
||||
document.querySelector('#add').onclick = function() {
|
||||
// add new images
|
||||
var fragment = getItemsFragment();
|
||||
container.insertBefore( fragment, container.firstChild );
|
||||
// use ImagesLoaded
|
||||
var imgLoad = imagesLoaded( container );
|
||||
imgLoad.on( 'progress', onProgress );
|
||||
imgLoad.on( 'always', onAlways );
|
||||
// reset progress counter
|
||||
imageCount = imgLoad.images.length;
|
||||
resetProgress();
|
||||
updateProgress( 0 );
|
||||
};
|
||||
|
||||
// reset container
|
||||
document.querySelector('#reset').onclick = function() {
|
||||
empty( container );
|
||||
};
|
||||
|
||||
// ----- set text helper ----- //
|
||||
|
||||
var docElem = document.documentElement;
|
||||
var textSetter = docElem.textContent !== undefined ? 'textContent' : 'innerText';
|
||||
|
||||
function setText( elem, value ) {
|
||||
elem[ textSetter ] = value;
|
||||
}
|
||||
|
||||
function empty( elem ) {
|
||||
while ( elem.firstChild ) {
|
||||
elem.removeChild( elem.firstChild );
|
||||
}
|
||||
}
|
||||
|
||||
// ----- ----- //
|
||||
|
||||
// return doc fragment with
|
||||
function getItemsFragment() {
|
||||
var fragment = document.createDocumentFragment();
|
||||
for ( var i = 0; i < 7; i++ ) {
|
||||
var item = getImageItem();
|
||||
fragment.appendChild( item );
|
||||
}
|
||||
return fragment;
|
||||
}
|
||||
|
||||
// return an <li> with a <img> in it
|
||||
function getImageItem() {
|
||||
var item = document.createElement('li');
|
||||
item.className = 'is-loading';
|
||||
var img = document.createElement('img');
|
||||
var size = Math.random() * 3 + 1;
|
||||
var width = Math.random() * 110 + 100;
|
||||
width = Math.round( width * size );
|
||||
var height = Math.round( 140 * size );
|
||||
var rando = Math.ceil( Math.random() * 1000 );
|
||||
// 10% chance of broken image src
|
||||
// random parameter to prevent cached images
|
||||
img.src = rando < 100 ? '//foo/broken-' + rando + '.jpg' :
|
||||
// use picsum for great random images
|
||||
'https://picsum.photos/' + width + '/' + height + '/' + '?random';
|
||||
item.appendChild( img );
|
||||
return item;
|
||||
}
|
||||
|
||||
// ----- ----- //
|
||||
|
||||
function resetProgress() {
|
||||
statusElem.style.opacity = 1;
|
||||
loadedImageCount = 0;
|
||||
if ( supportsProgress ) {
|
||||
progressElem.setAttribute( 'max', imageCount );
|
||||
}
|
||||
}
|
||||
|
||||
function updateProgress( value ) {
|
||||
if ( supportsProgress ) {
|
||||
progressElem.setAttribute( 'value', value );
|
||||
} else {
|
||||
// if you don't support progress elem
|
||||
setText( statusElem, value + ' / ' + imageCount );
|
||||
}
|
||||
}
|
||||
|
||||
// triggered after each item is loaded
|
||||
function onProgress( imgLoad, image ) {
|
||||
// change class if the image is loaded or broken
|
||||
image.img.parentNode.className = image.isLoaded ? '' : 'is-broken';
|
||||
// update progress element
|
||||
loadedImageCount++;
|
||||
updateProgress( loadedImageCount );
|
||||
}
|
||||
|
||||
// hide status when done
|
||||
function onAlways() {
|
||||
statusElem.style.opacity = 0;
|
||||
}
|
41
vendor/desandro/imagesloaded/test/css/tests.css
vendored
Normal file
41
vendor/desandro/imagesloaded/test/css/tests.css
vendored
Normal file
@ -0,0 +1,41 @@
|
||||
img {
|
||||
display: inline-block;
|
||||
max-width: 240px;
|
||||
}
|
||||
|
||||
/* ---- backgrounds ---- */
|
||||
|
||||
.bg-box {
|
||||
width: 240px;
|
||||
height: 240px;
|
||||
margin: 0 20px 20px 0;
|
||||
border: 1px solid;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.bg-box.tulip {
|
||||
background: url('http://i.imgur.com/9xYjgCk.jpg');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bg-box.thunder-cloud {
|
||||
background: url('../img/thunder-cloud.jpg');
|
||||
background-size: contain;
|
||||
}
|
||||
|
||||
.bg-box.multi {
|
||||
background:
|
||||
url("http://i.imgur.com/ZAVN3.png"),
|
||||
url('http://i.imgur.com/6UdOxeB.png') bottom right,
|
||||
url(https://picsum.photos/601/401/?random);
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.bg-box.blue {
|
||||
background: #09F;
|
||||
}
|
||||
|
||||
.bg-box.gulls {
|
||||
background-image: url('http://i.imgur.com/qKhkOKC.jpg');
|
||||
background-size: cover;
|
||||
}
|
BIN
vendor/desandro/imagesloaded/test/img/blue-shell.jpg
vendored
Normal file
BIN
vendor/desandro/imagesloaded/test/img/blue-shell.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
BIN
vendor/desandro/imagesloaded/test/img/bowser-jr.jpg
vendored
Normal file
BIN
vendor/desandro/imagesloaded/test/img/bowser-jr.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
BIN
vendor/desandro/imagesloaded/test/img/thunder-cloud.jpg
vendored
Normal file
BIN
vendor/desandro/imagesloaded/test/img/thunder-cloud.jpg
vendored
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
104
vendor/desandro/imagesloaded/test/index.html
vendored
Normal file
104
vendor/desandro/imagesloaded/test/index.html
vendored
Normal file
@ -0,0 +1,104 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
|
||||
<title>imagesLoaded tests</title>
|
||||
|
||||
<link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css" />
|
||||
<link rel="stylesheet" href="css/tests.css" />
|
||||
|
||||
<script src="../bower_components/ev-emitter/ev-emitter.js"></script>
|
||||
<script src="../bower_components/qunit/qunit/qunit.js"></script>
|
||||
<script src="../bower_components/jquery/dist/jquery.js"></script>
|
||||
|
||||
<script src="../imagesloaded.js"></script>
|
||||
|
||||
<script src="unit/basics.js"></script>
|
||||
<script src="unit/selector-string.js"></script>
|
||||
<script src="unit/single-element.js"></script>
|
||||
<script src="unit/local-files.js"></script>
|
||||
<script src="unit/data-uri.js"></script>
|
||||
<script src="unit/append.js"></script>
|
||||
<script src="unit/no-images.js"></script>
|
||||
<script src="unit/jquery-success.js"></script>
|
||||
<script src="unit/jquery-fail.js"></script>
|
||||
<script src="unit/non-element.js"></script>
|
||||
<script src="unit/background.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<h1>imagesLoaded tests</h1>
|
||||
|
||||
<div id="qunit"></div>
|
||||
|
||||
<h2>Basics</h2>
|
||||
|
||||
<div id="basics">
|
||||
<img src="http://i.imgur.com/xrQHn.jpg" />
|
||||
<img src="http://i.imgur.com/b3fBJ.jpg" />
|
||||
<img src="http://i.imgur.com/xmSh2.jpg" />
|
||||
<img src="http://i.imgur.com/iIpJm.jpg" />
|
||||
<img src="http://i.imgur.com/cvZZl10.gif" />
|
||||
</div>
|
||||
|
||||
<img id="mario-with-shell" src="http://i.imgur.com/ZAVN3.png" >
|
||||
|
||||
<h2>Locals</h2>
|
||||
|
||||
<div id="locals">
|
||||
<img src="img/blue-shell.jpg" />
|
||||
<img src="img/bowser-jr.jpg" />
|
||||
<!-- thunder cloud has bad permissions, should 403 -->
|
||||
<img src="img/not-there.jpg" />
|
||||
</div>
|
||||
|
||||
<h2>Data URI</h2>
|
||||
|
||||
<div id="data-uri">
|
||||
<img src="data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAZABkAAD/7AARRHVja3kAAQAEAAAARgAA/+4ADkFkb2JlAGTAAAAAAf/bAIQABAMDAwMDBAMDBAYEAwQGBwUEBAUHCAYGBwYGCAoICQkJCQgKCgwMDAwMCgwMDQ0MDBERERERFBQUFBQUFBQUFAEEBQUIBwgPCgoPFA4ODhQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQUFBQU/8AAEQgAMAAwAwERAAIRAQMRAf/EAJMAAAEFAQEBAAAAAAAAAAAAAAYAAwQHCAUBAgEAAgIDAQEAAAAAAAAAAAAAAAUEBgECAwcIEAABAwMDAgQFAwUAAAAAAAACAQMEEQUGACESMQdBUSIyYUJiExRSIwihgiQVFhEAAQMCBQEFBgcAAAAAAAAAAQARAgMEITFBEgVRYYGRIgZxocHRchPw4TJCIxQH/9oADAMBAAIRAxEAPwDf2hCWhC42R5JBxuF+RJq7JcqMWIC/uOmngnkKfMXh/TSTmOZt+MoGrVP0x1kez4nTwCl21rOvPbHvPRRMHuFzutmcuF2NClPyn1ERSjYNiXEQD4DTx389RvTl/VvrKNxUzqGRA6B2AHgt72lGlVMI/tbxRJqyKCloQloQm31eRlxY4iT6CqtCaqIqVNkVURaJXWk9207W3Ng+T9qyGfFUtPutrbyFIuazTtWRyy+1FbuIKyw9v6QiO7tODVdhEuXmldfM/qbi+arXMql2A2hDmAHQM7D29+Kt9tc04w20Rh7+9FkKZIx1VFhf8bkv3I5biqqu6p5Kvw0u9N+sL3iav9eX8tJ22dPoOnsy7FwrW8bnzZS6/NHkZ4pEdt42yZIxQlaP3DXwXX1LQqmrTjMxMNwfbLMdh7VWJBiQ7p3Xdapt99mMy5JkOC1HZEnHXTVBEQBKkSqvRERN9CFSFx7q5PkqOz8TfZs2ON8lizJDIvyZLadHlFxeLYF1BOKlTdadNWy34emIg1XMjoNElr35EmgEORO4uaXWUNnya2QMpxZ50FemSWBhuxXBJFB9tKGDn219ftAtvStdJvUnEQHHXEqQJIpTaP6jI7SwGrk5KVZ3z1IieDkfgqDkOf8AcEsmQ7FGbs+LspRm7SowzJkh2u7iNGvFhpE9iqJGXVeOvPfQX+Yw4+Iu+Q89zIOIPhSfqdanXSOQxxU6+5oSBhROA9/5Isgd08vxltq5ZQ+zfccNUKZIYZFiUwz4ugjXocEfcQ8UKnRa7a9cuOHpyiftOJDQ6pPR5AmTTCvONJYmR2ZcVwXosgBdYeBeQG2aIQkKp1RUWqaqZDJ0qL7p5U9nz1w7cY887FtMSQLGR3JteKyVb9TkJrxQK0F4/HcE8V1ZONsAwrVMtB8Uru7v7flGaGZlqdt8AGnXUOMwQqTYogjTolUTy1Z4yEkid1DwPIrzLzLKbNdba7GsFo+wlruDraCxL/IqQ/jkgopIAJ+9Ui9dKcemlUjWlUkCPKGbwXWpCAhEjMu697gZHfYmW4pabRbnZVjuzjwXa4NAJsRRZ4kX5JKKqCE2pfaUVH1pvXprANaE4iIwLv4IpxgYSJzGSnwLQ7cbe4DLyNx3iJRbVEIadFoi+emkpiJXEll2O1uXu9u5cLt1fnXZVinS1ZsFwMuSwjfWoRHK7q0p1RkvkqgL6aKlc5Pj3BrQ7x8fmn1pd7/Kc1W9zukjtr3AvuMX0VjPSpsm5WqQ5sEyFMeJ4XGyXYlFSVtxE3Eh36ppnYV4VKMRqAyj3luTJwuxIvzV6bKG2+ipJFRJQXdBXqqeVNMwAEs2mKYKZc7MItPG3NbH2PI4jLnH6gL01+IrocrIAllgkk26XgSaYJuG2XueJxHnOPjxAdq+XJaaHKCBHPFSYeQt2JoYDj9Ejigipruop4rrBiDmsGBlih+DOkdzc8s2K2BFkPtTI1wukltOTcOFDeB43XFTZFLigNoq1Ii26Lpdf3EKdEjUhgmdpbyEnK1plWF4pm8BLZltoi3eEKqTYSm0MmyXqTZ7EBbdQVF1R4VJQLxLJ2Q6zdlX8asvxO5O3TtPLbulofLktiukhWpbH0syTRRcBPAXaEn6i0+teV24T8VFq24mEMOdve/F3f8Awf8AjljPJRClS5sQIqeFeYOGS0+kFXTGXLUgMCosbJl9tdu+/FoeWEuHpKc3QZUSdFKMXxQnHGyT+4E0R5aiRiidk6IsX/jVmOW3Jq5d15bdqsrBcksdrfV2Y/T5XZIIgttr8yNciX9Q6X3XK7g0PFSqVuILSmLYbiuE2/8A1eJ2iLaIKrycbitoCuElfU4XuMt+pqq6QTqSmXkXUoBl/9k=" />
|
||||
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAwCAMAAAC/knOqAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAMBQTFRFkF0QF27/Bgsp/fQF+fr6jqvpDEG2zp4CCx9Ys4IFo5JU8MqQXJH2Ulxj89QDC0bIsrKxIHn//fxztcv2iYqG5ebmCjCHzNjxAzTYRmih2drcCzijMof+OB8U/Pg59PHXE2D9xMK9eUMDAVf8kXNP/fvr2eP0p6WgOUtnAkX7Eljwa3WB5er2UXjVC0jZAh9/EFHa8PHyl5mZJVKt6NM34dzNz87NASGpsbzZDlDytq4tLWfs4bQFyLNp////+/v7DjziEwAAAEB0Uk5T////////////////////////////////////////////////////////////////////////////////////AMJ7sUQAAAPaSURBVHjadNWLdqo6EAZgQKGRA0YUYzRQY1ELqFykiojV93+rM0FQbLt/VlcvfpmVhGQq3V6TjgyjLOWyNIzR9sdn0stvE0MuQrmOZxmjf9pRybln+sJZspWZiSU7o7+twTmXtcU3BmhZ4f6/zLJk2ej+ttsyDIXVN4klsGzqmQP1ZXn9044TQbmcuS5Yx3Ic380cy2rj2qZJktzrui7MFqiDKlutcv1ip0mNseuGFbaedeVd235qGOMkAo4VJYB4AVcUbHG5erjxtN1ME8kwpgHybV0/63vbRF5QrUFk+7ADwpgGD82nva9+p4m+CQKYWFjwUH3YKYNkjPrnCr6/D4fz93f46WsKuIDqu8amPmGE5bnZr2u+fw2Hwwr3N4FYRZKsazshBLCggPv9S79K56saV+NRbU8McO6+ifSavL1dLtVQk2LYT7VtY/hcgnw8HgkGAL9Q2E78tDGJfWBV3CbiFwnqmzlsfmPXUDd2pTtUFAVVj6IIDtVNqmGtmW+aEYJQDZ9puM/gPTX7cNtBYeS7r+z+hVyfAp0+3gUsDsXKP5IXGLPne7uVUJf8TRFPEi1Ln1YVq/sbazzBbN8+v2LGjCguzNBtllVRwovoPtvnvcgYihlpLaueQeFRjY1f79vWhxfCGKpz54gVRYTZ7Nedn8JeiPNG7lhBGS2KIKdZ99edT6cKQjEiBGMf+UhhZRFQSnG02/60J9i0qmCMcsbimPGABkXIRYdQX+2EaaEcinOc57GWlWXpeR7cYqsUPWj0YksKN73QNEpLdZJer9d0rToeVC2LEG5+2rIqLjjXKKPJ6PrMxPJkK6DcsdSn3dIo5DnK8113de22tOHJWhyUDp88rBFFPEJxvruu0jYVOEE0tCyjsSMchQVBOZ3Px+MfeOehmHJLbs76LioKpuT5QND0hV4nnqZoGPrb3Z6iKNIUJc6Os5nA3ZfKTgCvGtq3Kuw2BIpMP5/O/8JGQEzC4N/BGuyuwAyZKYvtw/GOYc7A4RHf1ICNbUIi2blJqocJWt5Skm8OiyPo8aGufX/UQJvd9sSPZFUqKfGPcHRYPF0MBovT8VhXh3TT1cqgFM7kzESslEbqUezdyszJ4HvwKfhi8eCra0incwFm+1N9Hub9ztnffOqf+0/IY8BhpWbnTmfePjurs2iJZ922dXsPqQcMFouqWfbnLfst+ii05t7Stjd2lb0Y1Lt0hkA73y3bexNddzjs93S7yd5e9i4XaPFQ5tLqD5LohxfouG+S5G/u8T8+7l34Al25+7SHpVRlKS312fo4OA0Ws7Fe/1FaLg+V+l+AAQAurhhy+upm/wAAAABJRU5ErkJggg==" />
|
||||
</div>
|
||||
|
||||
<h2>append</h2>
|
||||
|
||||
<div id="append"></div>
|
||||
|
||||
<h2>no images</h2>
|
||||
|
||||
<div id="no-images"></div>
|
||||
|
||||
<h2>jQuery success</h2>
|
||||
|
||||
<div id="jquery-success">
|
||||
<img src="http://i.imgur.com/YbYCPFF.png" />
|
||||
<img src="http://i.imgur.com/6UdOxeB.png" />
|
||||
<img src="http://i.imgur.com/qd8G15D.png" />
|
||||
</div>
|
||||
|
||||
<h2>jQuery fail</h2>
|
||||
|
||||
<div id="jquery-fail">
|
||||
<img src="http://i.imgur.com/xmSh2.jpg" />
|
||||
<img src="img/bowser-jr.jpg" />
|
||||
<img src="http://i.imgur.com/ZAVN3.png">
|
||||
<img src="img/not-there.jpg" />
|
||||
<img src="foobar.jpg" />
|
||||
</div>
|
||||
|
||||
<h2>background</h2>
|
||||
|
||||
<div id="background">
|
||||
<div class="bg-box tulip"></div>
|
||||
<div class="bg-box thunder-cloud"></div>
|
||||
<div class="bg-box multi"></div>
|
||||
<div class="bg-box blue"></div>
|
||||
<div class="bg-box gulls">
|
||||
<img src="https://picsum.photos/400/300/?random" />
|
||||
<img src="https://picsum.photos/800/600/?random" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
30
vendor/desandro/imagesloaded/test/unit/append.js
vendored
Normal file
30
vendor/desandro/imagesloaded/test/unit/append.js
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
QUnit.test( 'append', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
var imgUrls = [
|
||||
'http://i.imgur.com/bwy74ok.jpg',
|
||||
'http://i.imgur.com/bAZWoqx.jpg',
|
||||
'http://i.imgur.com/PgmEBSB.jpg',
|
||||
'http://i.imgur.com/aboaFoB.jpg',
|
||||
'http://i.imgur.com/LkmcILl.jpg',
|
||||
'http://i.imgur.com/q9zO6tw.jpg'
|
||||
];
|
||||
|
||||
// create images
|
||||
var fragment = document.createDocumentFragment();
|
||||
for ( var i=0, len = imgUrls.length; i < len; i++ ) {
|
||||
var img = document.createElement('img');
|
||||
img.src = imgUrls[i];
|
||||
fragment.appendChild( img );
|
||||
}
|
||||
|
||||
var elem = document.querySelector('#append');
|
||||
elem.appendChild( fragment );
|
||||
var done = assert.async();
|
||||
|
||||
imagesLoaded( elem, { debug: false } ).on( 'always', function() {
|
||||
assert.ok( 'appended images loaded' );
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
70
vendor/desandro/imagesloaded/test/unit/background.js
vendored
Normal file
70
vendor/desandro/imagesloaded/test/unit/background.js
vendored
Normal file
@ -0,0 +1,70 @@
|
||||
QUnit.test( 'background', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
// from Modernizr
|
||||
var supportsMultiBGs = ( function() {
|
||||
var style = document.createElement('a').style;
|
||||
style.cssText = 'background:url(https://),url(https://),red url(https://)';
|
||||
return (/(url\s*\(.*?){3}/).test(style.background);
|
||||
})();
|
||||
|
||||
var multiBGCount = supportsMultiBGs ? 3 : 0;
|
||||
var done = assert.async( 14 + multiBGCount );
|
||||
|
||||
var imgLoad0 = imagesLoaded( '#background .tulip', { background: true }, function() {
|
||||
assert.ok( true, 'callback triggered on .orange-tree');
|
||||
done();
|
||||
});
|
||||
assert.equal( imgLoad0.images.length, 1, '1 image on .images' );
|
||||
|
||||
imgLoad0.on( 'progress', function( instance, image, element ) {
|
||||
assert.ok( element.nodeName == 'DIV', 'progress; element is div');
|
||||
assert.ok( image.isLoaded, 'progress; image.isLoaded');
|
||||
done();
|
||||
});
|
||||
|
||||
var imgLoad1 = imagesLoaded( '#background .thunder-cloud', { background: true }, function() {
|
||||
assert.ok( true, 'callback triggered on .thunder-cloud');
|
||||
done();
|
||||
});
|
||||
assert.equal( imgLoad1.images.length, 1, '1 image on .images' );
|
||||
|
||||
// multiple backgrounds
|
||||
var imgLoad2 = imagesLoaded( '#background .multi', { background: true }, function() {
|
||||
assert.ok( true, 'callback triggered on .multi');
|
||||
done();
|
||||
});
|
||||
assert.equal( imgLoad2.images.length, multiBGCount, 'correct multiple BG count on .images' );
|
||||
|
||||
// multiple elements
|
||||
var imgLoad3 = imagesLoaded( '#background .bg-box', { background: true }, function() {
|
||||
assert.ok( true, 'callback triggered on .bg-box');
|
||||
var count = 5 + multiBGCount;
|
||||
assert.equal( imgLoad3.images.length, count, count + ' images on .bg-box' );
|
||||
done();
|
||||
});
|
||||
|
||||
imgLoad3.on('progress', function( instance, image/*, element */) {
|
||||
assert.ok( true, 'progress on .bg-box; ' + image.img.src );
|
||||
assert.equal( image.isLoaded, true, 'image.isLoaded == true' );
|
||||
done();
|
||||
});
|
||||
|
||||
// background and <img> children
|
||||
var imgLoad4 = imagesLoaded( '#background .gulls', { background: true } );
|
||||
assert.equal( imgLoad4.images.length, 3, '3 images: 1 background and 2 <img>' );
|
||||
|
||||
imgLoad4.on( 'progress', function( instance, image ) {
|
||||
assert.equal( image.isLoaded, true, 'image is loaded' );
|
||||
done();
|
||||
});
|
||||
|
||||
// child background selector
|
||||
var imgLoad5 = imagesLoaded( '#background', { background: '.bg-box' }, function() {
|
||||
var count = 5 + multiBGCount;
|
||||
assert.equal( imgLoad5.images.length, count,
|
||||
count + ' images on .bg-box, with {background: .bg-box}' );
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
28
vendor/desandro/imagesloaded/test/unit/basics.js
vendored
Normal file
28
vendor/desandro/imagesloaded/test/unit/basics.js
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
QUnit.test( 'basics', function( assert ) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var elem = document.querySelector('#basics');
|
||||
var images = elem.querySelectorAll('img');
|
||||
var done = assert.async( 3 + images.length );
|
||||
|
||||
var imgLoader = new imagesLoaded( elem, function( obj ) {
|
||||
assert.ok( true, 'callback function triggered' );
|
||||
assert.equal( imgLoader, obj, 'callback argument and instance match' );
|
||||
done();
|
||||
});
|
||||
imgLoader.on( 'done', function() {
|
||||
assert.ok( true, 'done event triggered' );
|
||||
done();
|
||||
});
|
||||
imgLoader.on( 'always', function() {
|
||||
assert.ok( true, 'always event triggered' );
|
||||
done();
|
||||
});
|
||||
|
||||
imgLoader.on( 'progress', function( loader, image ) {
|
||||
assert.ok( image.isLoaded, 'image is loaded');
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
10
vendor/desandro/imagesloaded/test/unit/data-uri.js
vendored
Normal file
10
vendor/desandro/imagesloaded/test/unit/data-uri.js
vendored
Normal file
@ -0,0 +1,10 @@
|
||||
QUnit.test( 'data-uri', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
var done = assert.async();
|
||||
imagesLoaded('#data-uri', { debug: false }).on( 'done', function( obj ) {
|
||||
assert.ok( true, 'data-uri images loaded' );
|
||||
assert.equal( obj.images.length, 2, 'instance has 2 images' );
|
||||
done();
|
||||
});
|
||||
});
|
29
vendor/desandro/imagesloaded/test/unit/jquery-fail.js
vendored
Normal file
29
vendor/desandro/imagesloaded/test/unit/jquery-fail.js
vendored
Normal file
@ -0,0 +1,29 @@
|
||||
QUnit.test( 'jquery fail', function( assert ) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var $ = window.jQuery;
|
||||
var $images = $('#jquery-fail img');
|
||||
var done = assert.async( 3 + $images.length );
|
||||
|
||||
$('#jquery-fail').imagesLoaded( function( instance ) {
|
||||
assert.ok( true, 'callback triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.fail( function( instance ) {
|
||||
assert.ok( true, 'fail triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.always( function( instance ) {
|
||||
assert.ok( true, 'always triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.progress( function(/* instance, image */) {
|
||||
assert.ok( true, 'progress trigged');
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
28
vendor/desandro/imagesloaded/test/unit/jquery-success.js
vendored
Normal file
28
vendor/desandro/imagesloaded/test/unit/jquery-success.js
vendored
Normal file
@ -0,0 +1,28 @@
|
||||
QUnit.test( 'jquery success', function( assert ) {
|
||||
|
||||
'use strict';
|
||||
|
||||
var $ = window.jQuery;
|
||||
var done = assert.async( 6 );
|
||||
|
||||
$('#jquery-success').imagesLoaded( function( instance ) {
|
||||
assert.ok( true, 'callback triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.done( function( instance ) {
|
||||
assert.ok( true, 'done triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.always( function( instance ) {
|
||||
assert.ok( true, 'always triggered' );
|
||||
assert.ok( instance instanceof imagesLoaded, 'instance instanceof imagesLoaded' );
|
||||
done();
|
||||
})
|
||||
.progress( function( instance, image ) {
|
||||
assert.ok( image.isLoaded, 'progress trigged, image is loaded');
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
31
vendor/desandro/imagesloaded/test/unit/local-files.js
vendored
Normal file
31
vendor/desandro/imagesloaded/test/unit/local-files.js
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
QUnit.test( 'local files', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
var elem = document.querySelector('#locals');
|
||||
var done = assert.async( 6 );
|
||||
|
||||
var imgLoader = new imagesLoaded( elem, function( obj ) {
|
||||
assert.ok( true, 'callback function triggered' );
|
||||
assert.equal( imgLoader, obj, 'callback argument and instance match' );
|
||||
done();
|
||||
});
|
||||
imgLoader.on( 'fail', function() {
|
||||
assert.ok( true, 'fail event triggered' );
|
||||
done();
|
||||
});
|
||||
imgLoader.on( 'always', function() {
|
||||
assert.ok( true, 'always event triggered' );
|
||||
done();
|
||||
});
|
||||
|
||||
imgLoader.on( 'progress', function( loader, image ) {
|
||||
assert.ok( true, 'image progressed');
|
||||
if ( image.img.src.indexOf('img/not-there.jpg') !== -1 ) {
|
||||
assert.ok( !image.isLoaded, 'thunder cloud is not loaded' );
|
||||
} else {
|
||||
assert.ok( image.isLoaded, 'image is loaded' );
|
||||
}
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
11
vendor/desandro/imagesloaded/test/unit/no-images.js
vendored
Normal file
11
vendor/desandro/imagesloaded/test/unit/no-images.js
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
QUnit.test( 'no images', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
var elem = document.querySelector('#no-images');
|
||||
var done = assert.async();
|
||||
imagesLoaded( elem, function() {
|
||||
assert.ok( true, 'triggered with no images' );
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
24
vendor/desandro/imagesloaded/test/unit/non-element.js
vendored
Normal file
24
vendor/desandro/imagesloaded/test/unit/non-element.js
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
QUnit.test( 'dismiss non-element nodes', function( assert ) {
|
||||
'use strict';
|
||||
|
||||
var $ = window.jQuery;
|
||||
var done = assert.async( 2 );
|
||||
|
||||
$(' <img src="https://picsum.photos/401/301/?random" /> <img src="https://picsum.photos/402/302/?random" /> ')
|
||||
.imagesLoaded(function() {
|
||||
assert.ok( true, 'elements from jQuery string ok' );
|
||||
done();
|
||||
});
|
||||
|
||||
// test fragment
|
||||
var frag = document.createDocumentFragment();
|
||||
var img = new Image();
|
||||
img.src = 'https://picsum.photos/403/303/?random';
|
||||
frag.appendChild( img );
|
||||
var imgLoad = imagesLoaded( frag, function() {
|
||||
assert.ok( true, 'document fragment ok' );
|
||||
assert.equal( imgLoad.images.length, 1, '1 image found' );
|
||||
done();
|
||||
});
|
||||
|
||||
});
|
12
vendor/desandro/imagesloaded/test/unit/selector-string.js
vendored
Normal file
12
vendor/desandro/imagesloaded/test/unit/selector-string.js
vendored
Normal file
@ -0,0 +1,12 @@
|
||||
QUnit.test( 'selector string', function( assert ) {
|
||||
'use strict';
|
||||
var images = document.querySelectorAll('#basics img');
|
||||
var done = assert.async();
|
||||
var imgLoad = imagesLoaded('#basics', { debug: true }).on( 'done', function( obj ) {
|
||||
assert.ok( true, 'selector string worked' );
|
||||
assert.ok( obj.images, 'argument has images' );
|
||||
assert.equal( obj.images.length, images.length, 'images.length matches' );
|
||||
done();
|
||||
});
|
||||
assert.ok( imgLoad.options.debug, 'debug option set' );
|
||||
});
|
11
vendor/desandro/imagesloaded/test/unit/single-element.js
vendored
Normal file
11
vendor/desandro/imagesloaded/test/unit/single-element.js
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
QUnit.test( 'single element', function( assert ) {
|
||||
'use strict';
|
||||
var elem = document.querySelector('#mario-with-shell');
|
||||
var done = assert.async();
|
||||
imagesLoaded( elem ).on( 'done', function( obj ) {
|
||||
assert.ok( true, 'single element worked' );
|
||||
assert.ok( obj.images, 'argument has images' );
|
||||
assert.equal( obj.images.length, 1, 'images.length = 1' );
|
||||
done();
|
||||
});
|
||||
});
|
7
vendor/psr/log/README.md
vendored
7
vendor/psr/log/README.md
vendored
@ -7,6 +7,13 @@ This repository holds all interfaces/classes/traits related to
|
||||
Note that this is not a logger of its own. It is merely an interface that
|
||||
describes a logger. See the specification for more details.
|
||||
|
||||
Installation
|
||||
------------
|
||||
|
||||
```bash
|
||||
composer require psr/log
|
||||
```
|
||||
|
||||
Usage
|
||||
-----
|
||||
|
||||
|
@ -1,22 +1,37 @@
|
||||
main {
|
||||
display: table;
|
||||
table-layout: fixed;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
min-height: 100vh;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
aside {
|
||||
.content {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.columns {
|
||||
display: flex;
|
||||
flex:1;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#region_1 {
|
||||
position: relative;
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
order: 1;
|
||||
padding: 4.5rem 7px 0px 7px;
|
||||
}
|
||||
|
||||
section {
|
||||
#region_2 {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
display: table-cell;
|
||||
vertical-align: top;
|
||||
flex: 1;
|
||||
order: 2;
|
||||
padding: 4.5rem 7px 200px 7px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
#region_3 {
|
||||
position: relative;
|
||||
order: 3;
|
||||
padding: 4.5rem 7px 0px 7px;
|
||||
}
|
||||
|
@ -71,7 +71,6 @@
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 4px;
|
||||
border: 1px solid #ccc;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
|
@ -15,7 +15,7 @@ msgstr ""
|
||||
"Project-Id-Version: hubzilla\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-10-19 11:04+0200\n"
|
||||
"PO-Revision-Date: 2018-10-24 11:35+0000\n"
|
||||
"PO-Revision-Date: 2018-11-21 11:04+0000\n"
|
||||
"Last-Translator: Manuel Jiménez Friaza <mjfriaza@disroot.org>\n"
|
||||
"Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/hubzilla/language/es_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -1729,7 +1729,7 @@ msgstr "Importar elementos"
|
||||
#: ../../Zotlabs/Module/Import_items.php:126
|
||||
msgid ""
|
||||
"Use this form to import existing posts and content from an export file."
|
||||
msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."
|
||||
msgstr "Utilice este formulario para importar entradas y contenido desde un archivo de exportación."
|
||||
|
||||
#: ../../Zotlabs/Module/Import_items.php:127
|
||||
#: ../../Zotlabs/Module/Import.php:548
|
||||
@ -1807,7 +1807,7 @@ msgstr "Un canal es una identidad única en la red. Puede representar a una pers
|
||||
#: ../../Zotlabs/Module/New_channel.php:183
|
||||
msgid ""
|
||||
"or <a href=\"import\">import an existing channel</a> from another location."
|
||||
msgstr "O <a href=\"import\">importar un canal existente</a> desde otro lugar."
|
||||
msgstr "O <a href=\"import\">importar un canal </a> desde otro lugar."
|
||||
|
||||
#: ../../Zotlabs/Module/New_channel.php:188
|
||||
msgid "Validate"
|
||||
@ -4496,7 +4496,7 @@ msgid ""
|
||||
"Leave blank to keep your existing channel nickname. You will be randomly "
|
||||
"assigned a similar nickname if either name is already allocated on this "
|
||||
"site."
|
||||
msgstr "Dejar en blanco para mantener su alias de canal existente. Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio."
|
||||
msgstr "Dejar en blanco para mantener su alias de canal . Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio."
|
||||
|
||||
#: ../../Zotlabs/Module/Import.php:562
|
||||
msgid ""
|
||||
@ -4942,7 +4942,7 @@ msgstr "Introducir un nombre de álbum"
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:698
|
||||
msgid "or select an existing album (doubleclick)"
|
||||
msgstr "o seleccionar uno existente (doble click)"
|
||||
msgstr "o seleccionar un álbum (con un doble click)"
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:699
|
||||
msgid "Create a status post for this upload"
|
||||
@ -5010,7 +5010,7 @@ msgstr "Introducir un nuevo nombre de álbum"
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:1067
|
||||
msgid "or select an existing one (doubleclick)"
|
||||
msgstr "o seleccionar uno (doble click) existente"
|
||||
msgstr "o seleccionar un álbum (con un doble click)"
|
||||
|
||||
#: ../../Zotlabs/Module/Photos.php:1072
|
||||
msgid "Add a Tag"
|
||||
@ -5557,7 +5557,7 @@ msgstr "Usar una foto de sus álbumes"
|
||||
#: ../../Zotlabs/Module/Profile_photo.php:474
|
||||
#: ../../Zotlabs/Module/Cover_photo.php:409
|
||||
msgid "Select existing photo"
|
||||
msgstr "Seleccionar una foto existente"
|
||||
msgstr "Seleccionar una foto"
|
||||
|
||||
#: ../../Zotlabs/Module/Profile_photo.php:493
|
||||
#: ../../Zotlabs/Module/Cover_photo.php:426
|
||||
@ -8443,7 +8443,7 @@ msgid ""
|
||||
"A deleted group with this name was revived. Existing item permissions "
|
||||
"<strong>may</strong> apply to this group and any future members. If this is "
|
||||
"not what you intended, please create another group with a different name."
|
||||
msgstr "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."
|
||||
msgstr "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos que ya existen sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."
|
||||
|
||||
#: ../../Zotlabs/Lib/Group.php:270 ../../include/group.php:264
|
||||
msgid "Add new connections to this privacy group"
|
||||
@ -11149,11 +11149,11 @@ msgstr "Por favor visite el sitio web de $Projectname"
|
||||
|
||||
#: ../../addon/upgrade_info/upgrade_info.php:46
|
||||
msgid "app store"
|
||||
msgstr "depósito de apps"
|
||||
msgstr "aplicaciones disponibles"
|
||||
|
||||
#: ../../addon/upgrade_info/upgrade_info.php:47
|
||||
msgid "and install possibly missing apps."
|
||||
msgstr "e instalar aplicaciones que posiblemente falten."
|
||||
msgstr "e instale las aplicaciones que posiblemente falten."
|
||||
|
||||
#: ../../addon/upgrade_info/upgrade_info.php:52
|
||||
msgid "Upgrade Info"
|
||||
@ -11364,7 +11364,7 @@ msgstr "Eliminar los datos de localización geográfica del navegador"
|
||||
|
||||
#: ../../addon/hsse/hsse.php:99 ../../include/conversation.php:1302
|
||||
msgid "Embed (existing) photo from your photo albums"
|
||||
msgstr "Insertar (existente) foto de sus álbumes de fotos"
|
||||
msgstr "Insertar una foto de sus álbumes"
|
||||
|
||||
#: ../../addon/hsse/hsse.php:135 ../../include/conversation.php:1338
|
||||
msgid "Tag term:"
|
||||
@ -12247,7 +12247,7 @@ msgstr "Crear nuevos eventos aquí."
|
||||
msgid ""
|
||||
"You can accept new connections and change permissions for existing ones "
|
||||
"here. You can also e.g. create groups of contacts."
|
||||
msgstr "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos."
|
||||
msgstr "Puede aceptar nuevas conexiones y cambiar permisos para las que ya existen aquí. También puede, por ejemplo, crear grupos de contactos."
|
||||
|
||||
#: ../../addon/tour/tour.php:82
|
||||
msgid "System notifications will arrive here"
|
||||
@ -14455,7 +14455,7 @@ msgstr "Etiquetas de la comunidad"
|
||||
|
||||
#: ../../include/features.php:143
|
||||
msgid "Ability to tag existing posts"
|
||||
msgstr "Capacidad de etiquetar entradas existentes"
|
||||
msgstr "Capacidad de etiquetar entradas"
|
||||
|
||||
#: ../../include/features.php:150
|
||||
msgid "Emoji Reactions"
|
||||
|
@ -300,7 +300,7 @@ App::$strings["Imported file is empty."] = "El fichero importado está vacío.";
|
||||
App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones.";
|
||||
App::$strings["Import completed"] = "Importación completada";
|
||||
App::$strings["Import Items"] = "Importar elementos";
|
||||
App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación.";
|
||||
App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas y contenido desde un archivo de exportación.";
|
||||
App::$strings["File to Upload"] = "Fichero para subir";
|
||||
App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos.";
|
||||
App::$strings["Loading"] = "Cargando";
|
||||
@ -315,7 +315,7 @@ App::$strings["Select a channel permission role compatible with your usage needs
|
||||
App::$strings["Read more about channel permission roles"] = "Leer más sobre los roles y permisos";
|
||||
App::$strings["Create a Channel"] = "Crear un canal";
|
||||
App::$strings["A channel is a unique network identity. It can represent a person (social network profile), a forum (group), a business or celebrity page, a newsfeed, and many other things."] = "Un canal es una identidad única en la red. Puede representar a una persona (un perfil de una red social), un foro o grupo, un negocio o una página de una celebridad, un \"feed\" de noticias, y muchas otras cosas.";
|
||||
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "O <a href=\"import\">importar un canal existente</a> desde otro lugar.";
|
||||
App::$strings["or <a href=\"import\">import an existing channel</a> from another location."] = "O <a href=\"import\">importar un canal </a> desde otro lugar.";
|
||||
App::$strings["Validate"] = "Validar";
|
||||
App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña.";
|
||||
App::$strings["Remove This Channel"] = "Eliminar este canal";
|
||||
@ -914,7 +914,7 @@ App::$strings["For either option, please choose whether to make this hub your ne
|
||||
App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria";
|
||||
App::$strings["Move this channel (disable all previous locations)"] = "Mover este canal (desactivar todas las ubicaciones anteriores)";
|
||||
App::$strings["Use this channel nickname instead of the one provided"] = "Usa este alias de canal en lugar del que se proporciona";
|
||||
App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Dejar en blanco para mantener su alias de canal existente. Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio.";
|
||||
App::$strings["Leave blank to keep your existing channel nickname. You will be randomly assigned a similar nickname if either name is already allocated on this site."] = "Dejar en blanco para mantener su alias de canal . Se le asignará aleatoriamente uno similar si cualquiera de los dos nombres ya está asignado en este sitio.";
|
||||
App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine.";
|
||||
App::$strings["Authentication failed."] = "Falló la autenticación.";
|
||||
App::$strings["Remote Authentication"] = "Acceso desde su servidor";
|
||||
@ -1014,7 +1014,7 @@ App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.
|
||||
App::$strings["%1$.2f MB photo storage used."] = "%1$.2f MB de almacenamiento de fotos utilizado.";
|
||||
App::$strings["Upload Photos"] = "Subir fotos";
|
||||
App::$strings["Enter an album name"] = "Introducir un nombre de álbum";
|
||||
App::$strings["or select an existing album (doubleclick)"] = "o seleccionar uno existente (doble click)";
|
||||
App::$strings["or select an existing album (doubleclick)"] = "o seleccionar un álbum (con un doble click)";
|
||||
App::$strings["Create a status post for this upload"] = "Crear un mensaje de estado para esta subida";
|
||||
App::$strings["Description (optional)"] = "Descripción (opcional)";
|
||||
App::$strings["Show Newest First"] = "Mostrar lo más reciente primero";
|
||||
@ -1031,7 +1031,7 @@ App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)";
|
||||
App::$strings["Rotate CCW (left)"] = "Girar CCW (a la izquierda)";
|
||||
App::$strings["Move photo to album"] = "Mover la foto a un álbum";
|
||||
App::$strings["Enter a new album name"] = "Introducir un nuevo nombre de álbum";
|
||||
App::$strings["or select an existing one (doubleclick)"] = "o seleccionar uno (doble click) existente";
|
||||
App::$strings["or select an existing one (doubleclick)"] = "o seleccionar un álbum (con un doble click)";
|
||||
App::$strings["Add a Tag"] = "Añadir una etiqueta";
|
||||
App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com";
|
||||
App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum";
|
||||
@ -1153,7 +1153,7 @@ App::$strings["Use Photo for Profile"] = "Usar la fotografía para el perfil";
|
||||
App::$strings["Change Profile Photo"] = "Cambiar la foto del perfil";
|
||||
App::$strings["Use"] = "Usar";
|
||||
App::$strings["Use a photo from your albums"] = "Usar una foto de sus álbumes";
|
||||
App::$strings["Select existing photo"] = "Seleccionar una foto existente";
|
||||
App::$strings["Select existing photo"] = "Seleccionar una foto";
|
||||
App::$strings["Crop Image"] = "Recortar imagen";
|
||||
App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima.";
|
||||
App::$strings["Done Editing"] = "Edición completada";
|
||||
@ -1829,7 +1829,7 @@ App::$strings["Directory Options"] = "Opciones del directorio";
|
||||
App::$strings["Safe Mode"] = "Modo seguro";
|
||||
App::$strings["Public Forums Only"] = "Solo foros públicos";
|
||||
App::$strings["This Website Only"] = "Solo este sitio web";
|
||||
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente.";
|
||||
App::$strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos que ya existen sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente.";
|
||||
App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales";
|
||||
App::$strings["edit"] = "editar";
|
||||
App::$strings["Edit group"] = "Editar grupo";
|
||||
@ -2458,8 +2458,8 @@ App::$strings["Jappix Mini Settings"] = "Ajustes de Jappix Mini";
|
||||
App::$strings["Your channel has been upgraded to the latest \$Projectname version."] = "Su canal ha sido actualizado a la última versión de \$Projectname.";
|
||||
App::$strings["To improve usability, we have converted some features into installable stand-alone apps."] = "Para mejorar la usabilidad, hemos convertido algunas características en aplicaciones independientes instalables.";
|
||||
App::$strings["Please visit the \$Projectname"] = "Por favor visite el sitio web de \$Projectname";
|
||||
App::$strings["app store"] = "depósito de apps";
|
||||
App::$strings["and install possibly missing apps."] = "e instalar aplicaciones que posiblemente falten.";
|
||||
App::$strings["app store"] = "aplicaciones disponibles";
|
||||
App::$strings["and install possibly missing apps."] = "e instale las aplicaciones que posiblemente falten.";
|
||||
App::$strings["Upgrade Info"] = "Información de actualización";
|
||||
App::$strings["Do not show this again"] = "No mostrar esto de nuevo";
|
||||
App::$strings["Access Denied"] = "Acceso denegado";
|
||||
@ -2509,7 +2509,7 @@ App::$strings["WYSIWYG status editor"] = "Editor de estado de WYSIWYG";
|
||||
App::$strings["WYSIWYG Status"] = "Estado de WYSIWYG";
|
||||
App::$strings["Set your location"] = "Establecer su ubicación";
|
||||
App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador";
|
||||
App::$strings["Embed (existing) photo from your photo albums"] = "Insertar (existente) foto de sus álbumes de fotos";
|
||||
App::$strings["Embed (existing) photo from your photo albums"] = "Insertar una foto de sus álbumes";
|
||||
App::$strings["Tag term:"] = "Término de la etiqueta:";
|
||||
App::$strings["Where are you right now?"] = "¿Donde está ahora?";
|
||||
App::$strings["Choose a different album..."] = "Elegir un álbum diferente...";
|
||||
@ -2706,7 +2706,7 @@ App::$strings["Click here to see activity from your connections."] = "Pulsar aqu
|
||||
App::$strings["Click here to see your channel home."] = "Pulsar aquí para ver la página de inicio de su canal.";
|
||||
App::$strings["You can access your private messages from here."] = "Puede acceder a sus mensajes privados desde aquí.";
|
||||
App::$strings["Create new events here."] = "Crear nuevos eventos aquí.";
|
||||
App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Puede aceptar nuevas conexiones y cambiar permisos para las existentes aquí. También puede, por ejemplo, crear grupos de contactos.";
|
||||
App::$strings["You can accept new connections and change permissions for existing ones here. You can also e.g. create groups of contacts."] = "Puede aceptar nuevas conexiones y cambiar permisos para las que ya existen aquí. También puede, por ejemplo, crear grupos de contactos.";
|
||||
App::$strings["System notifications will arrive here"] = "Las notificaciones del sistema llegarán aquí";
|
||||
App::$strings["Search for content and users"] = "Buscar contenido y usuarios";
|
||||
App::$strings["Browse for new contacts"] = "Buscar nuevos contactos";
|
||||
@ -3270,7 +3270,7 @@ App::$strings["Connection Filtering"] = "Filtrado de conexiones";
|
||||
App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido";
|
||||
App::$strings["Conversation"] = "Conversación";
|
||||
App::$strings["Community Tagging"] = "Etiquetas de la comunidad";
|
||||
App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes";
|
||||
App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas";
|
||||
App::$strings["Emoji Reactions"] = "Emoticonos \"emoji\"";
|
||||
App::$strings["Add emoji reaction ability to posts"] = "Activar la capacidad de añadir un emoticono \"emoji\" a las entradas";
|
||||
App::$strings["Dislike Posts"] = "Desagrado de publicaciones";
|
||||
|
@ -544,7 +544,7 @@ function handleNotificationsItems(notifyType, data) {
|
||||
notify_menu.html('');
|
||||
|
||||
$(data).each(function() {
|
||||
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
|
||||
html = notifications_tpl.format(this.notify_link,this.photo,this.name,this.addr,this.message,this.when,this.hclass,this.b64mid,this.notify_id,this.thread_top,this.unseen,this.private_forum);
|
||||
notify_menu.append(html);
|
||||
});
|
||||
|
||||
@ -558,7 +558,8 @@ function handleNotificationsItems(notifyType, data) {
|
||||
if(filter) {
|
||||
$('#nav-' + notifyType + '-menu .notification').each(function(i, el){
|
||||
var cn = $(el).data('contact_name').toString().toLowerCase();
|
||||
if(cn.indexOf(filter) === -1)
|
||||
var ca = $(el).data('contact_addr').toString().toLowerCase();
|
||||
if(cn.indexOf(filter) === -1 && ca.indexOf(filter) === -1)
|
||||
$(el).addClass('d-none');
|
||||
else
|
||||
$(el).removeClass('d-none');
|
||||
|
@ -10,12 +10,16 @@
|
||||
<header><?php if(x($page,'header')) echo $page['header']; ?></header>
|
||||
<nav class="navbar fixed-top navbar-expand-lg navbar-dark bg-dark"><?php if(x($page,'nav')) echo $page['nav']; ?></nav>
|
||||
<main>
|
||||
<aside id="region_1"><div class="aside_spacer"><div id="left_aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside>
|
||||
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
<div class="content">
|
||||
<div class="columns">
|
||||
<aside id="region_1"><div class="aside_spacer"><div id="left_aside_wrapper"><?php if(x($page,'aside')) echo $page['aside']; ?></div></div></aside>
|
||||
<section id="region_2"><?php if(x($page,'content')) echo $page['content']; ?>
|
||||
<div id="page-footer"></div>
|
||||
<div id="pause"></div>
|
||||
</section>
|
||||
<aside id="region_3" class="d-none d-xl-table-cell"><div class="aside_spacer"><div id="right_aside_wrapper"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></div></div></aside>
|
||||
<div id="pause"></div>
|
||||
</section>
|
||||
<aside id="region_3" class="d-none d-xl-table-cell"><div class="aside_spacer"><div id="right_aside_wrapper"><?php if(x($page,'right_aside')) echo $page['right_aside']; ?></div></div></aside>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
<footer><?php if(x($page,'footer')) echo $page['footer']; ?></footer>
|
||||
</body>
|
||||
|
@ -36,7 +36,7 @@ head_add_js('/library/colorbox/jquery.colorbox-min.js');
|
||||
|
||||
head_add_js('/library/jquery.AreYouSure/jquery.are-you-sure.js');
|
||||
head_add_js('/library/tableofcontents/jquery.toc.js');
|
||||
head_add_js('/library/imagesloaded/imagesloaded.pkgd.min.js');
|
||||
head_add_js('/vendor/desandro/imagesloaded/imagesloaded.pkgd.min.js');
|
||||
/**
|
||||
* Those who require this feature will know what to do with it.
|
||||
* Those who don't, won't.
|
||||
|
@ -121,9 +121,9 @@ function toggleAside() {
|
||||
$('main').addClass('region_1-on')
|
||||
$('<div id="overlay"></div>').appendTo('section');
|
||||
$('#left_aside_wrapper').stick_in_parent({
|
||||
offset_top: $('nav').outerHeight(true) + 10,
|
||||
parent: '#region_1',
|
||||
spacer: '#left_aside_spacer'
|
||||
offset_top: parseInt($('aside').css('padding-top')),
|
||||
parent: 'main',
|
||||
spacer: '.aside_spacer'
|
||||
});
|
||||
}
|
||||
}
|
||||
|
@ -105,8 +105,9 @@
|
||||
|
||||
$("#nav-{{$notification.type}}-menu .notification").each(function(i, el){
|
||||
var cn = $(el).data('contact_name').toString().toLowerCase();
|
||||
var ca = $(el).data('contact_addr').toString().toLowerCase();
|
||||
|
||||
if(cn.indexOf(val) === -1)
|
||||
if(cn.indexOf(val) === -1 && ca.indexOf(val) === -1)
|
||||
$(this).addClass('d-none');
|
||||
else
|
||||
$(this).removeClass('d-none');
|
||||
@ -134,18 +135,18 @@
|
||||
{{$no_notifications}}<span class="jumping-dots"><span class="dot-1">.</span><span class="dot-2">.</span><span class="dot-3">.</span></span>
|
||||
</div>
|
||||
<div id="nav-notifications-template" rel="template">
|
||||
<a class="list-group-item clearfix notification {5}" href="{0}" title="{2}" data-b64mid="{6}" data-notify_id="{7}" data-thread_top="{8}" data-contact_name="{2}">
|
||||
<a class="list-group-item clearfix notification {6}" href="{0}" title="{3}" data-b64mid="{7}" data-notify_id="{8}" data-thread_top="{9}" data-contact_name="{2}" data-contact_addr="{3}">
|
||||
<img class="menu-img-3" data-src="{1}">
|
||||
<span class="contactname">{2}</span>
|
||||
<span class="dropdown-sub-text">{3}<br>{4}</span>
|
||||
<span class="dropdown-sub-text">{4}<br>{5}</span>
|
||||
</a>
|
||||
</div>
|
||||
<div id="nav-notifications-forums-template" rel="template">
|
||||
<a class="list-group-item clearfix notification notification-forum" href="{0}" title="{3}" data-b64mid="{6}" data-notify_id="{7}" data-thread_top="{8}" data-contact_name="{2}">
|
||||
<span class="float-right badge badge-{{$notification.severity}}">{9}</span>
|
||||
<a class="list-group-item clearfix notification notification-forum" href="{0}" title="{4} - {3}" data-b64mid="{7}" data-notify_id="{8}" data-thread_top="{9}" data-contact_name="{2}" data-contact_addr="{3}">
|
||||
<span class="float-right badge badge-{{$notification.severity}}">{10}</span>
|
||||
<img class="menu-img-1" data-src="{1}">
|
||||
<span class="">{2}</span>
|
||||
<i class="fa fa-{10} text-muted"></i>
|
||||
<i class="fa fa-{11} text-muted"></i>
|
||||
</a>
|
||||
</div>
|
||||
<div id="notifications" class="navbar-nav">
|
||||
|
Reference in New Issue
Block a user