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
Roque
jio
Commits
54d630e4
Commit
54d630e4
authored
Jan 24, 2014
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
jslint fixes
parent
011ac6b4
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
12 additions
and
13 deletions
+12
-13
src/jio.storage/localstorage.js
src/jio.storage/localstorage.js
+6
-6
src/jio.storage/qiniustorage.js
src/jio.storage/qiniustorage.js
+1
-2
src/jio.storage/s3storage.js
src/jio.storage/s3storage.js
+3
-3
test/queries/key-schema.tests.js
test/queries/key-schema.tests.js
+2
-2
No files found.
src/jio.storage/localstorage.js
View file @
54d630e4
...
...
@@ -506,7 +506,7 @@
*/
LocalStorage
.
prototype
.
genericRepair
=
function
(
command
,
param
,
repair
)
{
var
that
=
this
,
result
;
var
that
=
this
,
final_
result
;
function
referenceAttachment
(
param
,
attachment
)
{
if
(
param
.
referenced_attachments
.
indexOf
(
attachment
)
!==
-
1
)
{
...
...
@@ -660,14 +660,14 @@
param
.
referenced_attachments
=
[];
param
.
unreferenced_attachments
=
[];
if
(
typeof
param
.
_id
===
'
string
'
)
{
result
=
repairOne
(
param
,
repair
)
||
{};
final_
result
=
repairOne
(
param
,
repair
)
||
{};
}
else
{
result
=
repairAll
(
param
,
repair
)
||
{};
final_
result
=
repairAll
(
param
,
repair
)
||
{};
}
if
(
result
.
error
)
{
return
command
.
error
.
apply
(
command
,
result
.
answers
||
[]);
if
(
final_
result
.
error
)
{
return
command
.
error
.
apply
(
command
,
final_
result
.
answers
||
[]);
}
command
.
success
.
apply
(
command
,
result
.
answers
||
[]);
command
.
success
.
apply
(
command
,
final_
result
.
answers
||
[]);
};
jIO
.
addStorage
(
'
local
'
,
LocalStorage
);
...
...
src/jio.storage/qiniustorage.js
View file @
54d630e4
...
...
@@ -333,8 +333,7 @@
var
LIST_HOST
=
"
http://rsf.qiniu.com
"
,
LIST_PREFIX
=
"
/list?bucket=
"
+
this
.
_bucket
,
list_url
=
LIST_HOST
+
LIST_PREFIX
,
data
=
LIST_PREFIX
+
'
\n
'
,
token
=
b64_hmac_sha1
(
this
.
_secret_key
,
data
);
token
=
b64_hmac_sha1
(
this
.
_secret_key
,
LIST_PREFIX
+
'
\n
'
);
jIO
.
util
.
ajax
({
"
type
"
:
"
POST
"
,
...
...
src/jio.storage/s3storage.js
View file @
54d630e4
...
...
@@ -876,9 +876,9 @@
counter
=
0
;
keys
.
each
(
function
()
{
var
that
,
filename
,
docId
;
that
=
$
(
this
);
filename
=
that
.
context
.
textContent
;
var
$this
,
filename
,
docId
;
$this
=
$
(
this
);
filename
=
$this
.
context
.
textContent
;
docId
=
priv
.
idsToFileName
(
priv
.
fileNameToIds
(
filename
)[
0
]);
if
(
counter
===
0
)
{
counter
+=
1
;
...
...
test/queries/key-schema.tests.js
View file @
54d630e4
...
...
@@ -189,7 +189,7 @@
{
'
identifier
'
:
'
19
'
,
'
number
'
:
'
19
'
},
{
'
identifier
'
:
'
100
'
,
'
number
'
:
'
100
'
}
];
},
key_schema
=
{
},
test_
key_schema
=
{
cast_lookup
:
{
intType
:
function
(
value
)
{
if
(
typeof
value
===
'
string
'
)
{
...
...
@@ -223,7 +223,7 @@
operator
:
'
=
'
,
value
:
'
19
'
}]
},
key_schema
).
},
test_
key_schema
).
exec
(
docList
()).
then
(
function
(
dl
)
{
deepEqual
(
dl
,
[
...
...
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