0
I Use This!
Low Activity

Commits : Listings

Analyzed about 7 hours ago. based on code collected about 13 hours ago.
Apr 28, 2023 — Apr 28, 2024
Commit Message Contributor Files Modified Lines Added Lines Removed Code Location Date
Document Flask module support. More... over 13 years ago
Support for Flask modules is now implemented, thanks to Olivier Poitrey. More... over 13 years ago
Fixed some tests that broke due to the recent changes, and added new tests specifically for the new module support. More... over 13 years ago
Actually, it turns out that it is slightly easier to build the path manually, because url_for() requires an application on the stack, which is not guaranteed in cases where our extension is bound permanently to an app object (in which case it may be used outside of an request). More... over 13 years ago
Slightly change the behavior of Olivier's Flask module support. First, 'url' and 'directory' behave now identically, that is, if the user sets a custom value, he completely disables our handling of module-specific paths. Previously, this was only the case for 'url', while in the case of setting a custom 'directory' value, it would only affect where we looked for global application-level static files. More... over 13 years ago
Merge branch 'master' into modsupport More... over 13 years ago
Fixed a test: The KeyError is of course not raised if the get() helper is used, only when indexing into the config object. More... over 13 years ago
Note alternative option that we're now only aware of because the confusion about the use of app.static_path is cleared up. More... over 13 years ago
Merge branch 'master' into modsupport More... over 13 years ago
app.static_path should instead be used to build the url. More... over 13 years ago
Olivier copied my mistake in his patch. More... over 13 years ago
Merge remote branch 'rs/master' into modsupport More... over 13 years ago
Actually, the use of static_path is incorrect here - it's the url. The directory the static files are served *from* is currently hardcoded in Flask to be 'static'. More... over 13 years ago
Make the script command return a status code. Not that it is currently used. More... over 13 years ago
Add support for Flask modules More... over 13 years ago
Document the Flask-Script integration. More... over 13 years ago
Document ues of init_app(). More... over 13 years ago
Added recent changes to CHANGES file. More... over 13 years ago
Integrate with Flask-Script, if it's avaialble. This requires the latest webassets HEAD. More... over 13 years ago
Actually, protocol dictates we need to raise a KeyError here, not IndexError. More... over 13 years ago
Setup is possible more complicated than it needs to be when running a Flask app under a path. More... over 13 years ago
Before the init_app refactor, it was not possible to override the default url and directory settings via the config, since the values set by the user were always overwritten by the Flask-Assets defaults. More... over 13 years ago
Made a design decision to not allow global across-app defaults, as the previous commit supported. Now, if you do not bind the extensions to an application, you can basically only use the extension object within a request context. This is less functionality, but keeps things simpler. More... over 13 years ago
Add init_app() method, support for using one extension instance with multiple applications. More... over 13 years ago
Inc to next dev version. More... over 13 years ago
I can't seem to get PyPI to accept the umlaut. More... over 13 years ago
Include a whole bunch of new stuff in the source distribution. More... over 13 years ago
Need to use a unicode string for my name. More... over 13 years ago
Fixed the url in setup.py. More... over 13 years ago
Added changes file. More... over 13 years ago