Andreas Jung
Andreas Jung
An textarea like ``` .. ``` is converted by the new ZPublisher in Zope 4/Python 3 to list of byte strings instead of list of `str`. This is inconsistent with...
I have this basic code ``` from keycloak import KeycloakAdmin keycloak_admin = KeycloakAdmin(server_url="http://localhost:8080/auth/", username='admin', password='admin', realm_name="master", client_secret_key="client-secret", verify=True) ```` Where can I find/set the `client_secret_key` in Keycloak?
The following script gives me the attached error ``` from fs.contrib.davfs import DAVFS from fs.osfs import OSFS import fs.utils source = OSFS('/tmp/bookalope') target = DAVFS('http://localhost:6080/exist/webdav/db', credentials=dict(username='admin', password='onkopedia')) print source.listdir() print...
Using DAVFS I can point the connection to a resource rather than a directory and read the resource like this: handle = DAVFS('https:/.../path/to/foo.txt') fp = handle.open('.') print fp.read() ..... Doing...
Point SFTPFS to a file instead of a directory returns improper results for isdir() ``` from fs.sftpfs import SFTPFS handle = SFTPFS('localhost', '/tmp') print handle.isdir('.') # True print handle.isfile('.') #...
Perhaps you could add a section to installation notes how to install Websauna with a Dockerized Postgres installation for the sake of making the initial setup less painless. Although the...
Vivliostyle is the only PrintCSS renderer that renders the footnotes after the complete text block and not on the same page where the footnote reference occurs. See example. This looks...
Any plans for making pyes compatible with the most decent ES 5 version?
collective.exportimport uses this code ``` deserializer = getMultiAdapter((new, self.request), IDeserializeFromJson) ``` which sometimes produces a validation error like (from some field value not matching the field constraints) ``` BadRequest([{'message': 'The...
I wonder why @actions does not include the URLs of actions? When I need to render actions then I need their URLs. Otherwise the @actions endpoint has no value. Or?...