Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
officejs
Commits
0be25721
Commit
0be25721
authored
May 02, 2012
by
Tristan Cavelier
Committed by
Sebastien Robin
May 18, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DavStorage tests completed.
DavStorage in jio.storage.js completed.
parent
b2654ba5
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
474 additions
and
318 deletions
+474
-318
jiotest/debug.html
jiotest/debug.html
+11
-211
jiotest/jiotests.js
jiotest/jiotests.js
+296
-15
jiotest/unhosted/jio.storage.js
jiotest/unhosted/jio.storage.js
+167
-92
No files found.
jiotest/debug.html
View file @
0be25721
...
@@ -2,221 +2,21 @@
...
@@ -2,221 +2,21 @@
<html
lang=
"en"
>
<html
lang=
"en"
>
<head>
<head>
<meta
charset=
"utf-8"
/>
<meta
charset=
"utf-8"
/>
<title>
JIO
</title>
<title>
JIO QUnit/Sinon Test
</title>
<link
rel=
"stylesheet"
href=
"qunit/qunit-1.5.0.css"
/>
</head>
<body>
<div
id=
"qunit"
></div>
<script
type=
"text/javascript"
src=
"js/jquery/jquery.js"
></script>
<script
type=
"text/javascript"
src=
"js/jquery/jquery.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/localorcookiestorage.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/base64.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/base64.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.storage.js"
></script>
<script
type=
"text/javascript"
src=
"unhosted/jio.storage.js"
></script>
<!-- <script type="text/javascript" src="unhosted/sjcl.js"></script> -->
<script
type=
"text/javascript"
>
</head>
var
jio
=
JIO
.
createNew
({
'
type
'
:
'
dav
'
,
'
userName
'
:
'
davremove
'
,
'
password
'
:
'
test
'
,
<body>
'
location
'
:
'
https://ca-davstorage:8080
'
},
<!-- <div id="test" class="test"><div1></div>
{
'
ID
'
:
'
jiotests
'
});
<div id="test" class="test"><div2></div> -->
jio
.
removeDocument
({
'
fileName
'
:
'
file
'
,
'
callback
'
:
function
(
r
){
alert
(
JSON
.
stringify
(
r
));}});
<div
id=
"divbody"
>
<div
id=
"divmessage"
></div>
<div
id=
"divdebug"
style=
"color: grey"
></div>
<div
id=
"diverror"
style=
"color: red"
></div>
</div>
<script
type=
"text/javascript"
>
<!--
////////////////////////////////////////////////////////////////////////////////
// little functions
var
objectDump
=
function
(
o
)
{
console
.
log
(
JSON
.
stringify
(
o
));
};
var
toString
=
function
(
o
)
{
return
JSON
.
stringify
(
o
);
};
var
is_array
=
function
(
v
)
{
return
Object
.
prototype
.
toString
.
apply
(
v
)
===
'
[object Array]
'
;
};
////////////////////////////////////////////////////////////////////////////////
// Preparing jio
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
job_done
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divdebug
'
).
html
(
$
(
'
#divdebug
'
).
html
()
+
'
<br />
'
+
toString
(
o
));
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
job_fail
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#diverror
'
).
html
(
$
(
'
#diverror
'
).
html
()
+
'
<br />
'
+
toString
(
o
));
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
start_saving
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Saving ...
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
stop_saving
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Saving ended.
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
start_loading
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Loading ...
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
stop_loading
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Loading ended.
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
start_checkingNameAvailability
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Checking name
'
+
o
.
job
.
userName
+
'
...
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
stop_checkingNameAvailability
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Checking name ended:
'
+
o
.
job
.
message
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
start_gettingList
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Getting list ...
'
);
}});
$
.
jio
(
'
subscribe
'
,{
'
event
'
:
'
stop_gettingList
'
,
'
func
'
:
function
(
o
)
{
$
(
'
#divmessage
'
).
html
(
$
(
'
#divmessage
'
).
html
()
+
'
<br />
'
+
'
Getting list ended:
'
+
toString
(
o
)
);
}});
$
.
jio
({
'
storage
'
:{
'
type
'
:
'
local
'
,
'
userName
'
:
'
tristan
'
},
'
applicant
'
:{
'
ID
'
:
'
www.ungproject.org
'
}});
// $.jio({'storage':{'type':'dav','userName':'tristan','password':'test',
// 'location':'https://ca-davstorage:8080','provider':'Unknown'},
// 'applicant':{'ID':'www.ungproject.org'}});
// TODO
// doc string
// localStorage.status
$
.
jio
(
'
checkNameAvailability
'
,{
'
userName
'
:
'
toto
'
});
// $.jio('isAvailable',{'userName':'tristan'});
// $.jio('saveDocument',{'fileName':'SonNom','fileContent':'SonContenu'});
// $.jio({'fileName':'SonNom','fileContent':'SonContenu','method':'saveDocument'});
// $.jio({'fileName':'SonNom2','fileContent':'SonContenu2','method':'saveDocument'});
// $.jio('loadDocument',{'fileName':'SonNom'});
// $.jio('removeDocument',{'fileName':'SonNom'});
// $.jio('getDocumentList');
////////////////////////////////////////////////////////////////////////////////
/*
// Preparing JIO
//// Setting events reactions
JIO.subscribe('job_done', function (job) {
switch(job.method) {
case 'load':
objectDump(job);
$('#divdebug').html($('#divdebug').html() + '<br />' +
job.method + ': "' + job.fileName + '" OK!' +
' Content : "' + job.file.content + '"');
break;
case 'userNameAvailable':
objectDump(job);
$('#divdebug').html($('#divdebug').html() + '<br />' +
job.method + ': "' + job.userName + '" OK!' +
' isAvailable ? "' + job.userIsAvailable + '"' +
' message : ' + job.message);
break;
default:
objectDump(job);
$('#divdebug').html($('#divdebug').html() + '<br />' +
job.method + ': "' + job.fileName + '" OK!');
break;
}
});
JIO.subscribe('job_fail', function (job) {
$('#diverror').html($('#diverror').html() + '<br/>' +
job.method + ': "' + job.fileName + '" FAILED! ' +
job.message);
});
JIO.subscribe('start_saving', function () {
console.log ('start_saving received');
$('#divmessage').html($('#divmessage').html() + '<br/>' +
'Saving ...');
// $('#divdebug').html($('#divdebug').html() + '<br/>' +
// 'save remainingjobs: ' + o.remaining.save);
});
JIO.subscribe('stop_saving', function () {
console.log ('stop_saving received');
$('#divmessage').html($('#divmessage').html() + '<br/>' +
'Saving ended.');
});
JIO.subscribe('start_loading', function () {
console.log ('start_loading received');
$('#divmessage').html($('#divmessage').html() + '<br/>' +
'Loading ...');
});
JIO.subscribe('stop_loading', function () {
console.log ('stop_loading received');
$('#divmessage').html($('#divmessage').html() + '<br/>' +
'Loading ended.');
});
// JIO.subscribe('start_deleting', function (e,o,r) {
// console.log ('start_deleting received');
// objectDump(o);
// $('#divmessage').html($('#divmessage').html() + '<br/>' +
// 'Deleting "' + o.fileName + '"...');
// $('#divdebug').html($('#divdebug').html() + '<br/>' +
// 'delete remainingjobs: ' + r);
// });
// JIO.subscribe('stop_deleting', function (e,o) {
// console.log ('stop_deleting received');
// objectDump(o);
// $('#divmessage').html($('#divmessage').html() + '<br/>' +
// 'Deleting ended with result: ' + o.status + ', message: ' + o.message);
// });
// JIO.subscribe('start_gettinglist', function (e,o) {
// console.log ('start_deleting received');
// objectDump(o);
// $('#divmessage').html($('#divmessage').html() + '<br/>' +
// 'Getting list...');
// });
// JIO.subscribe('stop_gettinglist', function (e,o) {
// console.log ('stop_deleting received');
// objectDump(o);
// $('#divmessage').html($('#divmessage').html() + '<br/>' +
// 'Getting list ended with result: ' + o.status + ', message: ' + o.message);
// $('#divdebug').html($('#divdebug').html() + '<br/>' +
// 'getList: ' + JSON.stringify(o.list));
// });
//// events set
//// init JIO
JIO.initialize({"type":"local","userName":"tristan"},"www.ungproject.com");
//// end init
//// Let's test!
if ( !JIO.isReady() ) alert('Not ready');
else {
// JIO.userNameAvailable("tristan");
// JIO.userNameAvailable("json");
// JIO.loadDocument("SonNom");
// JIO.saveDocument("Inside the document.","SonNom");
// JIO.saveDocument("Inside the document.","SonNom");
// JIO.saveDocument("Inside the document.","SonNom2");
// JIO.getDocumentList();
// JIO.loadDocument("SonNom");
// JIO.deleteDocument("SonNom");
// JIO.deleteDocument("SonNom");
// JIO.deleteDocument("SonNom3");
// JIO.getDocumentList();
}
////////////////////////////////////////////////////////////////////////////////
/* */
//-->
</script>
</script>
</body>
</body>
</html>
</html>
jiotest/jiotests.js
View file @
0be25721
This diff is collapsed.
Click to expand it.
jiotest/unhosted/jio.storage.js
View file @
0be25721
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