Robert Grant
Robert Grant
This is still in the latest docs; was it fixed?
@gocom - that sort of makes sense, except the readme has this example: ``` Javascript // load jquery and plugin at the same time. name it 'bundle' $script(['jquery.js', 'my-jquery-plugin.js'], 'bundle');...
Yeah it should still be green, but with a note that a drop-in replacement exists?
[PyMySQL](https://github.com/PyMySQL/PyMySQL) also seems to work nicely - pure-Python replacement that doesn't have a compile step on install. Nice for us fortunate enough to have to use Windows :)
This could possibly be done with [django-waffle](https://github.com/jsocol/django-waffle).
PEBKAC! Sorry.
Okay, there's actually a genuine, verified-by-someone-who-is-clever bug (or enhancement opportunity rather) here as well, but I'll open a separate issue.
Sorry for taking so long to reply. It's not exactly a bug report, but here goes :) 1. Because you've hardcoded Mako into your code [here](https://github.com/fizyk/pyramid_fullauth/blob/master/pyramid_fullauth/__init__.py#L25), if someone's using a...
Cool thanks! 1. On committing configuration, the problem as I see it is the routes that you redirect to post-login (e.g. the route after login failure) is still the default...
One advantage of not doing the scan is then you can do something like this: ``` # There's probably a better way to do overrides than this login_template = config.registry.settings['fullauth.basic.logintemplate']...