update jquery-ui to 1.12.1

This commit is contained in:
Ralf Becker 2021-08-11 15:38:06 +02:00
parent cd4dbd7b05
commit fdef749794
3 changed files with 50 additions and 18 deletions

View File

@ -77,7 +77,7 @@
"bower-asset/fastclick": "1.0.*",
"bower-asset/jquery": "^1.12.4",
"bower-asset/jquery-touchswipe": "1.6.*",
"bower-asset/jquery-ui": "=1.11.2",
"bower-asset/jquery-ui": "=1.12.1",
"egroupware/activesync": "self.version",
"egroupware/adodb-php": "self.version",
"egroupware/bookmarks": "self.version",

30
composer.lock generated
View File

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "ecdc3fddca0c9dcad5155d7aad711dab",
"content-hash": "239bd7fe0d55cfccca0e0ce18c8a7503",
"packages": [
{
"name": "adldap2/adldap2",
@ -350,27 +350,24 @@
},
{
"name": "bower-asset/jquery-ui",
"version": "1.11.2",
"version": "1.12.1",
"source": {
"type": "git",
"url": "https://github.com/components/jqueryui.git",
"reference": "396781474d936959061271505f506b78398fe6a2"
"reference": "44ecf3794cc56b65954cc19737234a3119d036cc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/components/jqueryui/zipball/396781474d936959061271505f506b78398fe6a2",
"reference": "396781474d936959061271505f506b78398fe6a2"
"url": "https://api.github.com/repos/components/jqueryui/zipball/44ecf3794cc56b65954cc19737234a3119d036cc",
"reference": "44ecf3794cc56b65954cc19737234a3119d036cc"
},
"require": {
"bower-asset/jquery": ">=1.6"
},
"type": "bower-asset-library",
"extra": {
"bower-asset-main": [
"jquery-ui.js"
],
"bower-asset-ignore": []
}
"type": "bower-asset",
"license": [
"MIT"
]
},
{
"name": "celtic/lti",
@ -1291,16 +1288,15 @@
"source": {
"type": "git",
"url": "https://github.com/EGroupware/projectmanager.git",
"reference": "94d182778b2fc04c68c51e295259fa2c09548de3"
"reference": "74f9be3b29e9ece0f68201158863aa058443939a"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/EGroupware/projectmanager/zipball/94d182778b2fc04c68c51e295259fa2c09548de3",
"reference": "94d182778b2fc04c68c51e295259fa2c09548de3",
"url": "https://api.github.com/repos/EGroupware/projectmanager/zipball/74f9be3b29e9ece0f68201158863aa058443939a",
"reference": "74f9be3b29e9ece0f68201158863aa058443939a",
"shasum": ""
},
"require": {
"fxp/composer-asset-plugin": "^1.2.2",
"npm-asset/dhtmlx-gantt": "~6.2"
},
"type": "egroupware-app",
@ -1324,7 +1320,7 @@
],
"description": "EGroupware project-management application",
"homepage": "https://www.egroupware.org/",
"time": "2021-03-30T17:20:21+00:00"
"time": "2021-08-10T22:59:19+00:00"
},
{
"name": "egroupware/registration",

36
doc/ldif2sql.php Executable file
View File

@ -0,0 +1,36 @@
#!/usr/bin/env php
<?php
if (!$_SERVER['argc'])
{
echo "cat test.ldif | ".basename($_SERVER['argv'][0])."attr1[, attr2[, ...]]\n";
exit(1);
}
$attrs = array_slice($_SERVER['argv'], 1);
$values = $rows = [];
while(!feof(STDIN))
{
$line = trim(fgets(STDIN));
if (empty($line) || $line[0] === '#' ||
!preg_match('/^([^:]+): (.*)$/', $line, $matches))
{
$values = [];
continue;
}
if ($matches[1] === 'dn') $values = [];
$values[$matches[1]] = $matches[2];
if (count(array_intersect(array_keys($values), $attrs)) === count($attrs))
{
$cols = [];
foreach($attrs as $attr)
{
$cols[$attr] = "'".addslashes($values[$attr])."'";
}
$cols = '('.implode(', ', $cols).')';
if (!in_array($cols, $rows)) $rows[] = $cols;
}
}
echo implode(",\n", $rows)."\n";