mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 08:34:42 +01:00
update jquery-ui to 1.12.1
This commit is contained in:
parent
cd4dbd7b05
commit
fdef749794
@ -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
30
composer.lock
generated
@ -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
36
doc/ldif2sql.php
Executable 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";
|
Loading…
Reference in New Issue
Block a user