Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
jio_mebibou
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
Alexandra Rogova
jio_mebibou
Commits
544ba866
Commit
544ba866
authored
Mar 31, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dashboard supports parrallel actions
parent
2ef6bd5d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
42 additions
and
78 deletions
+42
-78
examples/jio_dashboard.html
examples/jio_dashboard.html
+42
-78
No files found.
examples/jio_dashboard.html
View file @
544ba866
...
@@ -50,16 +50,16 @@
...
@@ -50,16 +50,16 @@
</tr>
</tr>
<tr>
<tr>
<td
colspan=
"2"
style=
"text-align: center;"
>
<td
colspan=
"2"
style=
"text-align: center;"
>
<button
onclick=
"
post(
)"
>
post
</button>
<button
onclick=
"
command('post'
)"
>
post
</button>
<button
onclick=
"
put(
)"
>
put
</button>
<button
onclick=
"
command('put'
)"
>
put
</button>
<button
onclick=
"
get(
)"
>
get
</button>
<button
onclick=
"
command('get'
)"
>
get
</button>
<button
onclick=
"
window.remove(
)"
>
remove
</button>
<button
onclick=
"
command('remove'
)"
>
remove
</button>
-
<button
onclick=
"
putAttachment(
)"
>
putAttachment
</button>
-
<button
onclick=
"
command('putAttachment'
)"
>
putAttachment
</button>
<button
onclick=
"
getAttachment(
)"
>
getAttachment
</button>
<button
onclick=
"
command('getAttachment'
)"
>
getAttachment
</button>
<button
onclick=
"
removeAttachment(
)"
>
removeAttachment
</button>
<button
onclick=
"
command('removeAttachment'
)"
>
removeAttachment
</button>
-
<button
onclick=
"
allDocs(
)"
>
allDocs
</button>
-
<button
onclick=
"
command('allDocs'
)"
>
allDocs
</button>
-
<button
onclick=
"c
heck(
)"
>
check
</button>
-
<button
onclick=
"c
ommand('check'
)"
>
check
</button>
<button
onclick=
"
repair(
)"
>
repair
</button>
<button
onclick=
"
command('repair'
)"
>
repair
</button>
</td>
</td>
</tr>
</tr>
<tr>
<tr>
...
@@ -284,90 +284,54 @@ function logAnswer(begin_date, val) {
...
@@ -284,90 +284,54 @@ function logAnswer(begin_date, val) {
return
val
;
return
val
;
}
}
function
command
(
method
,
num
)
{
function
command
(
method
)
{
var
begin_date
=
Date
.
now
(),
doc
=
{},
opts
=
{}
;
var
doc
=
{},
opts
=
{},
lock
,
n
,
jio
;
if
(
!
my_jio
)
{
if
(
!
my_jio
)
{
error
(
'
no jio set
'
);
error
(
'
no jio set
'
);
return
;
return
;
}
}
doc
=
select
(
'
#metadata
'
).
value
;
jio
=
my_jio
;
opts
=
select
(
"
#options
"
).
value
;
if
(
num
!==
undefined
)
{
doc
=
doc
.
replace
(
/
\\
u0000/g
,
num
);
opts
=
opts
.
replace
(
/
\\
u0000/g
,
num
);
}
doc
=
JSON
.
parse
(
doc
);
opts
=
JSON
.
parse
(
opts
);
log
(
method
+
'
\n
doc:
'
+
JSON
.
stringify
(
doc
,
null
,
"
"
)
+
'
\n
opts:
'
+
JSON
.
stringify
(
opts
,
null
,
"
"
));
if
(
method
===
"
allDocs
"
)
{
return
my_jio
.
allDocs
(
opts
).
then
(
logAnswer
.
bind
(
null
,
begin_date
),
logError
.
bind
(
null
,
begin_date
)
);
}
else
{
return
my_jio
[
method
](
doc
,
opts
).
then
(
logAnswer
.
bind
(
null
,
begin_date
),
logError
.
bind
(
null
,
begin_date
)
);
}
}
function
doCommandNTimes
(
method
,
i
)
{
var
n
=
0
,
lock
,
promise_list
=
[];
i
=
i
>
0
?
i
:
0
;
n
=
parseInt
(
select
(
"
#times
"
).
value
,
10
);
n
=
parseInt
(
select
(
"
#times
"
).
value
,
10
);
lock
=
select
(
"
#times-lock
"
).
checked
;
lock
=
select
(
"
#times-lock
"
).
checked
;
if
(
!
lock
)
{
if
(
!
lock
)
{
select
(
"
#times
"
).
value
=
"
1
"
;
select
(
"
#times
"
).
value
=
"
1
"
;
}
}
if
(
!
isFinite
(
n
))
{
if
(
!
isFinite
(
n
))
{
n
=
1
;
n
=
1
;
}
}
return
command
(
method
,
++
i
).
then
(
function
(
answer
)
{
doc
=
select
(
"
#metadata
"
).
value
;
if
(
i
<
n
)
{
opts
=
select
(
"
#options
"
).
value
;
return
doCommandNTimes
(
method
,
i
);
return
jIO
.
util
.
range
(
n
,
function
(
index
)
{
var
param
=
doc
,
options
=
opts
,
begin
=
Date
.
now
(),
promise
;
param
=
param
.
replace
(
/
\\
u0000/g
,
index
);
options
=
options
.
replace
(
/
\\
u0000/g
,
index
);
param
=
JSON
.
parse
(
param
);
options
=
JSON
.
parse
(
options
);
if
(
method
===
"
allDocs
"
)
{
log
(
method
+
"
\n
opts:
"
+
JSON
.
stringify
(
options
,
null
,
"
"
));
promise
=
jio
.
allDocs
(
options
);
}
else
{
log
(
method
+
"
\n
doc:
"
+
JSON
.
stringify
(
param
,
null
,
"
"
)
+
"
\n
opts:
"
+
JSON
.
stringify
(
options
,
null
,
"
"
));
promise
=
jio
[
method
](
param
,
options
);
}
}
return
answer
;
});
}
function
post
()
{
return
promise
.
return
doCommandNTimes
(
"
post
"
);
then
(
logAnswer
.
bind
(
null
,
begin
),
logError
.
bind
(
null
,
begin
));
}
}).
then
(
null
,
function
(
e
)
{
function
put
()
{
error
(
e
.
toString
());
return
doCommandNTimes
(
"
put
"
);
});
}
function
get
()
{
return
doCommandNTimes
(
"
get
"
);
}
function
remove
()
{
return
doCommandNTimes
(
"
remove
"
);
}
function
putAttachment
()
{
return
doCommandNTimes
(
"
putAttachment
"
);
}
function
getAttachment
()
{
return
doCommandNTimes
(
"
getAttachment
"
);
}
function
removeAttachment
()
{
return
doCommandNTimes
(
"
removeAttachment
"
);
}
function
allDocs
()
{
return
doCommandNTimes
(
"
allDocs
"
);
}
function
check
()
{
return
doCommandNTimes
(
"
check
"
);
}
function
repair
()
{
return
doCommandNTimes
(
"
repair
"
);
}
}
//////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////
...
...
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