Stephane Martin
Stephane Martin
Sure Redhat (through yum plugins) and Debian/Ubuntu (through unattended-packages) already have tools. But what i'm looking for is a unified way to send security advisories to syslog. Syslog logs are...
AFAIK pthread_yield does not exist on MacOSX. > cd /usr/include/pthread > grep -r yield * > pthread.h:void pthread_yield_np(void); > sched.h:extern int sched_yield(void);
+1, please :)
I have the same problems with URL prefixing. just as you i patched create_app to generate a custom prefix in python code. But the editor theming happens in javascript code....
oh, and by the way, the github/twitter/... oauth login does not work with a custom URL prefix too. Haven't succeeded to fix that one :-/
- what do you mean, by "the editor stopped working" ? what happens ? - the fix about aced.js is only used when you have a subdir in BASE_URL. In...
looks like the JS is not loading. with firefox or chrome dev tools you can look at the list of network requests and hopefully see why they fail
Not without patching as far i understand the code. In `realms-wiki/realms/__init__.py`, function `create_app`, replace `app = Application(__name__)` by `app = Application(__name__, static_url_path='/yourprefix')` It would be nice if the author could...
Probably means that your LDAP configuration is not working. Which version of realms-wiki are you using? Can you post your realms-wiki config file ? (masking passwords of course)
- it looks like you're trying to do "bind search" method see https://github.com/ContinuumIO/flask-ldap-login/blob/master/examples/bind_search.py but there is no 'USER_SEARCH' option to tell the ldap client where to find the users. maybe...