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
Stefane Fermigier
jio
Commits
df49c0f1
Commit
df49c0f1
authored
Jan 18, 2013
by
Tristan Cavelier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
end newlines added to several files
parent
8ef4e6cc
Changes
17
Hide whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
19 additions
and
19 deletions
+19
-19
src/jio.dummystorages.js
src/jio.dummystorages.js
+1
-1
src/jio.storage/conflictmanagerstorage.js
src/jio.storage/conflictmanagerstorage.js
+1
-1
src/jio.storage/cryptstorage.js
src/jio.storage/cryptstorage.js
+1
-1
src/jio.storage/davstorage.js
src/jio.storage/davstorage.js
+3
-3
src/jio.storage/indexstorage.js
src/jio.storage/indexstorage.js
+1
-1
src/jio.storage/localstorage.js
src/jio.storage/localstorage.js
+1
-1
src/jio.storage/replicatestorage.js
src/jio.storage/replicatestorage.js
+1
-1
src/jio.storage/xwikistorage.js
src/jio.storage/xwikistorage.js
+1
-1
src/jio.waitstorage.js
src/jio.waitstorage.js
+1
-1
src/jio/activityUpdater.js
src/jio/activityUpdater.js
+1
-1
src/jio/commands/getCommand.js
src/jio/commands/getCommand.js
+1
-1
src/jio/commands/postCommand.js
src/jio/commands/postCommand.js
+1
-1
src/jio/commands/putCommand.js
src/jio/commands/putCommand.js
+1
-1
src/jio/commands/removeCommand.js
src/jio/commands/removeCommand.js
+1
-1
src/jio/jobs/job.js
src/jio/jobs/job.js
+1
-1
src/jio/jobs/jobManager.js
src/jio/jobs/jobManager.js
+1
-1
src/jio/jobs/jobRules.js
src/jio/jobs/jobRules.js
+1
-1
No files found.
src/jio.dummystorages.js
View file @
df49c0f1
...
...
@@ -507,4 +507,4 @@
}
else
{
jioDummyStorageLoader
(
jIO
);
}
}());
\ No newline at end of file
}());
src/jio.storage/conflictmanagerstorage.js
View file @
df49c0f1
...
...
@@ -1082,4 +1082,4 @@ jIO.addStorageType('conflictmanager', function (spec, my) {
};
// end remove
return
that
;
});
\ No newline at end of file
});
src/jio.storage/cryptstorage.js
View file @
df49c0f1
...
...
@@ -274,4 +274,4 @@ jIO.addStorageType('crypt', function (spec, my) {
};
// end remove
return
that
;
});
\ No newline at end of file
});
src/jio.storage/davstorage.js
View file @
df49c0f1
...
...
@@ -185,7 +185,7 @@ jIO.addStorageType('dav', function (spec, my) {
priv
.
username
+
'
:
'
+
priv
.
password
)
},
// xhrFields: {withCredentials: 'true'},
// xhrFields: {withCredentials: 'true'},
success
:
function
()
{
that
.
success
({
ok
:
true
,
...
...
@@ -219,7 +219,7 @@ jIO.addStorageType('dav', function (spec, my) {
priv
.
username
+
'
:
'
+
priv
.
password
)
},
// xhrFields: {withCredentials: 'true'},
// xhrFields: {withCredentials: 'true'},
success
:
function
(
response
)
{
that
.
success
({
ok
:
true
,
...
...
@@ -886,4 +886,4 @@ jIO.addStorageType('dav', function (spec, my) {
};
return
that
;
});
\ No newline at end of file
});
src/jio.storage/indexstorage.js
View file @
df49c0f1
...
...
@@ -223,4 +223,4 @@ jIO.addStorageType('indexed', function (spec, my) {
};
// end remove
return
that
;
});
\ No newline at end of file
});
src/jio.storage/localstorage.js
View file @
df49c0f1
...
...
@@ -333,4 +333,4 @@ jIO.addStorageType('local', function (spec, my) {
};
return
that
;
});
\ No newline at end of file
});
src/jio.storage/replicatestorage.js
View file @
df49c0f1
...
...
@@ -107,4 +107,4 @@ jIO.addStorageType('replicate', function (spec, my) {
};
return
that
;
});
\ No newline at end of file
});
src/jio.storage/xwikistorage.js
View file @
df49c0f1
...
...
@@ -338,4 +338,4 @@
return
that
;
};
jIO
.
addStorageType
(
'
xwiki
'
,
newXWikiStorage
);
}(
jQuery
,
Base64
));
\ No newline at end of file
}(
jQuery
,
Base64
));
src/jio.waitstorage.js
View file @
df49c0f1
...
...
@@ -76,4 +76,4 @@
}
}
());
\ No newline at end of file
());
src/jio/activityUpdater.js
View file @
df49c0f1
...
...
@@ -72,4 +72,4 @@ var activityUpdater = (function (spec, my) {
};
return
that
;
}());
\ No newline at end of file
}());
src/jio/commands/getCommand.js
View file @
df49c0f1
...
...
@@ -47,4 +47,4 @@ var getCommand = function (spec, my) {
};
return
that
;
};
\ No newline at end of file
};
src/jio/commands/postCommand.js
View file @
df49c0f1
...
...
@@ -29,4 +29,4 @@ var postCommand = function (spec, my) {
storage
.
post
(
that
);
};
return
that
;
};
\ No newline at end of file
};
src/jio/commands/putCommand.js
View file @
df49c0f1
...
...
@@ -39,4 +39,4 @@ var putCommand = function (spec, my) {
storage
.
put
(
that
);
};
return
that
;
};
\ No newline at end of file
};
src/jio/commands/removeCommand.js
View file @
df49c0f1
...
...
@@ -42,4 +42,4 @@ var removeCommand = function (spec, my) {
};
return
that
;
};
\ No newline at end of file
};
src/jio/jobs/job.js
View file @
df49c0f1
...
...
@@ -200,4 +200,4 @@ var job = function (spec) {
priv
.
command
.
execute
(
priv
.
storage
);
};
return
that
;
};
\ No newline at end of file
};
src/jio/jobs/jobManager.js
View file @
df49c0f1
...
...
@@ -298,4 +298,4 @@ var jobManager = (function (spec) {
return
a
;
};
return
that
;
}());
\ No newline at end of file
}());
src/jio/jobs/jobRules.js
View file @
df49c0f1
...
...
@@ -267,4 +267,4 @@ var jobRules = (function () {
// end adding rules
////////////////////////////////////////////////////////////////////////////
return
that
;
}());
\ No newline at end of file
}());
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