Skip to content
Snippets Groups Projects

Release 0.7.2

Merged LE GAC Renaud requested to merge master into production
+ 218
214
Compare changes
  • Side-by-side
  • Inline
Files
+ 3
3
@@ -13,7 +13,7 @@ def index():
url = URL('plugin_dbui', 'debug', args=request.args, vars=request.vars)
else:
url = URL('plugin_dbui', 'index', args=request.args, vars=request.vars)
return redirect(url)
@@ -22,7 +22,7 @@ def pack_plugin():
Used by the script buildVersion when building a new release.
Light version of the appadmin/default/pack_plugin controller.
"""
pname = 'dbui'
fname = 'web2py.plugin.%s.w2p' % pname
@@ -32,7 +32,7 @@ def pack_plugin():
response.headers['Content-Type'] = 'application/w2p'
disposition = 'attachment; filename=%s' % fname
response.headers['Content-Disposition'] = disposition
fi = open(filename, 'rb')
try:
return fi.read()
Loading