I updated my local web2py hg repo, but the problem persists.
Solved it although by changing an admin view function parameter. Attached
is the view diff
--
diff -r 0e9febcd8445 applications/admin/views/default/plugin.html
--- a/applications/admin/views/default/plugin.html Sun Aug 19 13:53:45 2012 -0500
+++ b/applications/admin/views/default/plugin.html Sun Aug 19 16:59:30 2012 -0300
@@ -29,7 +29,7 @@
INPUT(_type="submit",_value=T("submit")),_action=URL('create_file'))
return form
def deletefile(arglist):
- return A(TAG[''](IMG(_src=URL('static', 'images/delete_icon.png')), SPAN(T('Delete this file (you will be asked to confirm deletion)'))), _class='icon delete tooltip', _href=URL('delete',args=arglist,vars=dict(sender=request.function+'/'+app)))
+ return A(TAG[''](IMG(_src=URL('static', 'images/delete_icon.png')), SPAN(T('Delete this file (you will be asked to confirm deletion)'))), _class='icon delete tooltip', _href=URL('delete',args=arglist,vars=dict(sender=request.function+'/'+app+'/'+request.args[1])))
}}
{{block sectionclass}}plugin{{end}}