Commit 19429d4d authored by Xiaowu Zhang's avatar Xiaowu Zhang

Release version 3.10.1

parent 4c99f38f
......@@ -9182,7 +9182,8 @@ return new Parser;
parsed_query,
sub_query,
result_list,
local_roles;
local_roles,
tmp_list = [];
if (options.query) {
parsed_query = jIO.QueryFactory.create(options.query);
......@@ -9224,6 +9225,13 @@ return new Parser;
}
}
if (options.sort_on) {
for (i = 0; i < options.sort_on.length; i += 1) {
tmp_list.push(JSON.stringify(options.sort_on[i]));
}
options.sort_on = tmp_list;
}
return jIO.util.ajax({
"type": "GET",
"url": UriTemplate.parse(site_hal._links.raw_search.href)
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This diff is collapsed.
This source diff could not be displayed because it is too large. You can view the blob instead.
{
"name": "jio",
"version": "v3.10.0",
"version": "v3.10.1",
"license": "LGPLv3",
"author": "Nexedi SA",
"contributors": [
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment