Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
18
Merge Requests
18
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
jio
Commits
008516f5
Commit
008516f5
authored
Aug 31, 2020
by
Romain Courteaud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Release 3.42.1
parent
24b938cb
Pipeline
#11258
failed with stage
in 0 seconds
Changes
5
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
31487 additions
and
19 deletions
+31487
-19
Makefile
Makefile
+1
-1
dist/jio-latest-node.js
dist/jio-latest-node.js
+15
-9
dist/jio-latest.js
dist/jio-latest.js
+15
-9
dist/jio-v3.42.1-node.js
dist/jio-v3.42.1-node.js
+15406
-0
dist/jio-v3.42.1.js
dist/jio-v3.42.1.js
+16050
-0
No files found.
Makefile
View file @
008516f5
...
...
@@ -26,7 +26,7 @@ TESTDIR = test
EXAMPLEDIR
=
examples
EXTERNALDIR
=
external
VERSION
=
3.42.
0
VERSION
=
3.42.
1
JIOVERSION
=
${DISTDIR}
/jio-v
${VERSION}
.js
JIOLATEST
=
${DISTDIR}
/jio-latest.js
JIONODEVERSION
=
${DISTDIR}
/jio-v
${VERSION}
-node
.js
...
...
dist/jio-latest-node.js
View file @
008516f5
...
...
@@ -14345,6 +14345,7 @@ var jIO = window.jIO,
result_list
,
local_roles
,
local_role_found
=
false
,
selection_domain_found
=
false
,
selection_domain
,
sort_list
=
[],
group_list
=
[];
...
...
@@ -14395,18 +14396,23 @@ var jIO = window.jIO,
result_list
=
isSingleDomain
(
sub_query
);
if
(
result_list
)
{
parsed_query
.
query_list
.
splice
(
i
,
1
);
query
=
jIO
.
Query
.
objectToSearchText
(
parsed_query
);
if
(
selection_domain
)
{
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
))
{
selection_domain
[
key
]
=
result_list
[
key
];
selection_domain_found
=
false
;
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
)
&&
((
selection_domain
===
undefined
)
||
(
!
selection_domain
.
hasOwnProperty
(
key
))))
{
if
(
selection_domain
===
undefined
)
{
selection_domain
=
{};
}
selection_domain
[
key
]
=
result_list
[
key
];
selection_domain_found
=
true
;
}
}
else
{
selection_domain
=
result_list
;
}
i
-=
1
;
if
(
selection_domain_found
===
true
)
{
parsed_query
.
query_list
.
splice
(
i
,
1
);
query
=
jIO
.
Query
.
objectToSearchText
(
parsed_query
);
i
-=
1
;
}
}
}
...
...
dist/jio-latest.js
View file @
008516f5
...
...
@@ -13806,6 +13806,7 @@ return new Parser;
result_list
,
local_roles
,
local_role_found
=
false
,
selection_domain_found
=
false
,
selection_domain
,
sort_list
=
[],
group_list
=
[];
...
...
@@ -13856,18 +13857,23 @@ return new Parser;
result_list
=
isSingleDomain
(
sub_query
);
if
(
result_list
)
{
parsed_query
.
query_list
.
splice
(
i
,
1
);
query
=
jIO
.
Query
.
objectToSearchText
(
parsed_query
);
if
(
selection_domain
)
{
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
))
{
selection_domain
[
key
]
=
result_list
[
key
];
selection_domain_found
=
false
;
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
)
&&
((
selection_domain
===
undefined
)
||
(
!
selection_domain
.
hasOwnProperty
(
key
))))
{
if
(
selection_domain
===
undefined
)
{
selection_domain
=
{};
}
selection_domain
[
key
]
=
result_list
[
key
];
selection_domain_found
=
true
;
}
}
else
{
selection_domain
=
result_list
;
}
i
-=
1
;
if
(
selection_domain_found
===
true
)
{
parsed_query
.
query_list
.
splice
(
i
,
1
);
query
=
jIO
.
Query
.
objectToSearchText
(
parsed_query
);
i
-=
1
;
}
}
}
...
...
dist/jio-v3.42.1-node.js
0 → 100644
View file @
008516f5
This diff is collapsed.
Click to expand it.
dist/jio-v3.42.1.js
0 → 100644
View file @
008516f5
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment