There are two URLs:
http://www.vimeo.com/5432441
http://www.web2py.com/appliances/default/show/53
--
Álvaro Justen
Peta5 - Telecomunicações e Software Livre
21 3021-6001 / 9898-0141
http://www.peta5.com.br/
Cool!
Are there options to save values that user entered (maybe in session)?
I was using some jQuery plugins (like jEditable[1]) to do something
like this (save user edited data from tables).
[1] http://www.appelsiini.net/projects/jeditable/default.html
This error is shown when this block of code generates an exception:
try:
upfile = open(upname, 'wb')
upfile.write(fobj.read())
upfile.close()
path = apath(app, request)
os.mkdir(path)
did_mkdir = True
w2p_unpack(upname, path)
if extension != 'tar':
os.unlink(upname)
fix_newlines(path)
So, probably you don't have permission to open upname (file that was
uploaded), write in app file, mkdir to new app etc.
Same here with fresh download (correct .w2p extension now)
I only have md5sum:
> Here are some checksums:
> $ ls -l sp*
> -rw-rw-r--. 1 yak007 yak007 65798 2009-07-02 22:09 spreadsheet.tar
> $ sha1sum spreadsheet.tar
> f0630cc59ea064783618cb5500fb65fc8b9c57cd spreadsheet.tar
> $ sha256sum spreadsheet.tar
> b7cae50943cd5f8c02565b8be7b08bde003b4578a401b4afe83c28a4ca82d3f6
> spreadsheet.tar
6b86730634305c8bf7729395177175bd *web2py.app.spreadsheet.w2p
>
> with that looks like this: http://www.web2py.com/examples/spreadsheet
I'm new to the web2py game, so pardon me if this is a settled question.
I'm wondering whether you wouldn't want to try to do stuff like this
in an (x)html-compliant manner. Neither an empty <form> nor an empty
<style> is permitted, for example.
I realize that web2py isn't entirely compliant anyway, but might we
not work in the direction of compliance?
> Thank you. I will fix this as soon as I have time although this is not
> a priority since it is only an example app BUT if you find other
> similar problems in admin or examples or welcome and could submit a
> patch that would be excellent.
Glad to.
Do you have an established format and procedure for patches?
Also, I note that the issue of the empty form action <form action="">
for self-submission came up on this list back in IIRC January of this
year. It's too bad it's not legal, since interpretation as self-
submission would be reasonable, and in fact all browsers so interpret
it. But it won't verify.