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
89aa1436
Commit
89aa1436
authored
Nov 22, 2012
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing all metadata_only option in jio.outro.js
parent
f3451213
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
8 deletions
+0
-8
src/jio/jio.outro.js
src/jio/jio.outro.js
+0
-8
No files found.
src/jio/jio.outro.js
View file @
89aa1436
...
...
@@ -218,7 +218,6 @@
* @param {string} docid The document id (the path).
* @param {object} options (optional) Contains some options:
* - {number} max_retry The number max of retries, 0 = infinity.
* - {boolean} metadata_only Load only document metadata.
* - {string} rev The revision we want to get.
* - {boolean} revs Include revision history of the document.
* - {boolean} revs_info Include list of revisions, and their availability.
...
...
@@ -233,9 +232,6 @@
function
()
{
var
param
=
priv
.
parametersToObject
(
arguments
);
param
.
options
.
max_retry
=
param
.
options
.
max_retry
||
3
;
param
.
options
.
metadata_only
=
(
param
.
options
.
metadata_only
!==
undefined
?
param
.
options
.
metadata_only
:
false
);
priv
.
addJob
(
getCommand
,{
docid
:
param
.
doc
,
options
:
param
.
options
,
...
...
@@ -276,7 +272,6 @@
* @method allDocs
* @param {object} options (optional) Contains some options:
* - {number} max_retry The number max of retries, 0 = infinity.
* - {boolean} metadata_only Load only document metadata
* - {boolean} descending Reverse the order of the output table.
* - {boolean} revs Include revision history of the document.
* - {boolean} revs_info Include revisions.
...
...
@@ -291,9 +286,6 @@
function
()
{
var
param
=
priv
.
parametersToObject
(
arguments
,
'
no doc
'
);
param
.
options
.
max_retry
=
param
.
options
.
max_retry
||
3
;
param
.
options
.
metadata_only
=
(
param
.
options
.
metadata_only
!==
undefined
?
param
.
options
.
metadata_only
:
true
);
priv
.
addJob
(
allDocsCommand
,{
options
:
param
.
options
,
callbacks
:{
success
:
param
.
success
,
error
:
param
.
error
}
...
...
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