Andrea Agili
Andrea Agili
the cmis url is at line 354 of js/cmisbrowser.js it should not be hard to extract all these urls and put them in js/config.js, but even changing these lines, you...
Maybe if you take a look at yhe javascript console, you should see more details on the error
a way to make it work by not changing the template is to make the query like this: "select D.cmis:objectId as cmis:objectId, D.cmis:name as cmis:name,..."
The problem with datalist results has been resolved in commit 7563bc9 (it was an exception showing file size) To filter out folders the easiest way would be to specify a...
Could you be more precise? If you are meaning editing of roles/permissions (as it is not included in CMIS specification) it's out of scope at the moment..
At he moment workflow support is out of scope as it is out of CMIS specification, and I'm trying to begin covering CMIS browser binding as a starting point.
I think it's a bug, probably the line https://github.com/agea/CmisJS/blob/master/src/cmis.ts#L1342 it's wrong, you may create a pull request with the correction, and if possible even a test (the tests were run...
hello, it's possibile that the test server specified in the tests (https://cmis.alfresco.com/cmisbrowser) is no longer available to everyone.. if you have an internal alfresco available you can change the url...
These parameters are available in OpenCmis, AFAIK they are not part of the CMIS specification. The library does not provide any caching mechanism. So the parameter would be useless. I...
Maybe it's a subtle difference, usually in "catch error" commits, there is a try/catch clause explicitly catching errors In this case, you wouldn't have a try/catch; instead, for instance, by...