Skip to content

Commit

Permalink
v5.6.3217
Browse files Browse the repository at this point in the history
  • Loading branch information
ITHitBuild committed Jul 17, 2018
1 parent 4dc980d commit 05584c9
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions ITHitWebDAVClient.js

Large diffs are not rendered by default.

Binary file modified Plugins/ITHitEditDocumentOpener.deb
Binary file not shown.
Binary file modified Plugins/ITHitEditDocumentOpener.msi
Binary file not shown.
Binary file modified Plugins/ITHitEditDocumentOpener.pkg
Binary file not shown.
Binary file modified Plugins/ITHitEditDocumentOpener.rpm
Binary file not shown.
4 changes: 2 additions & 2 deletions Tests/Locks/Lock.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ ITHit.DefineClass('ITHit.WebDAV.Client.Tests.Locks.Lock', null, {}, /** @lends I

});

QUnitRunner.test('Lock file and check that it can not moving', function (test) {
QUnitRunner.test('Lock file and check that it can not be moved', function (test) {
QUnit.stop();
Helper.Create([
'Locks/MoveDir/',
Expand Down Expand Up @@ -123,7 +123,7 @@ QUnitRunner.test('Lock file and check that it can not moving', function (test) {
ITHit.WebDAV.Client.Tests.Locks.Lock.SetUnLock(webDavSession, Helper.GetAbsolutePath('Locks/MoveDir/lockfile.txt'), oLockInfo.LockToken.LockToken, function(oAsyncResult) {
QUnit.start();

test.strictEqual(oAsyncResult.IsSuccess, true, 'Check success of unlock request');
test.strictEqual(oAsyncResult.IsSuccess, false, 'Check success of unlock request');
});
});
});
Expand Down
7 changes: 6 additions & 1 deletion Tests/WebDavSession/Events.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,12 @@ QUnitRunner.test('Subscribe on WebDavSession events: OnBeforeRequestSend, OnResp

test.strictEqual(oResponseData.Status, ITHit.WebDAV.Client.HttpStatus.MultiStatus.Code, 'Check status in response event data');
test.strictEqual(oResponseData.StatusDescription, ITHit.WebDAV.Client.HttpStatus.MultiStatus.Description, 'Check status description in response event data');
test.strictEqual(oResponseData.Headers['Content-Type'].replace(/; ?/g, '; '), 'application/xml; charset=utf-8', 'Check content type header in response event data');
for (var key in oResponseData.Headers) {
if (key.toLowerCase() == 'content-type') {
test.strictEqual(oResponseData.Headers[key].replace(/; ?/g, '; '), 'application/xml; charset=utf-8', 'Check content type header in response event data');
break;
}
}
test.strictEqual(oResponseData.BodyText.indexOf('event.txt') !== -1, true, 'Check body text in response event data');
});
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "webdav.client",
"version": "5.5.3197",
"version": "5.6.3217",
"description": "WebDAV ajax library for opening documents from a web page and managing WebDAV servers.",
"main": "ITHitWebDAVClient.js",
"keywords": [
Expand Down

0 comments on commit 05584c9

Please sign in to comment.