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
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Stefane Fermigier
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
Changes
5
Expand all
Show 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,19 +14396,24 @@ 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
)
{
selection_domain_found
=
false
;
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
))
{
selection_domain
[
key
]
=
result_list
[
key
];
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
;
}
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,19 +13857,24 @@ 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
)
{
selection_domain_found
=
false
;
for
(
key
in
result_list
)
{
if
(
result_list
.
hasOwnProperty
(
key
))
{
selection_domain
[
key
]
=
result_list
[
key
];
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
;
}
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