On Fri, Feb 12, 2016 at 12:01:04PM -0800, Anthony wrote:
> On Thursday, February 11, 2016 at 11:39:49 PM UTC-5, /dev/sdc3 wrote:
> >
> >
> > OK. Is it useful for me to submit a patch?
> >
>
> Maybe. We would want to confirm that the div is hidden and takes up no
> space in all (non-text-based) browsers, probably going back to at least IE
> 7 or 8.
Patch attached.
>
>
> > Browser, BTW, is text-mode links: latest version, but doesn't see
> > a lot of development.
> >
>
> Sorry, I missed that. I assume you mean Lynx, though. I guess we really
> haven't been worried about catering to Lynx users.
>
Links (links.twibright.com) is a more recent browser with a very lynx-
like interface but, AFAIK, no shared code. I'll grab a copy of lynx,
too, and see how that behaves.
-mg
> Anthony
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to the Google Groups
> "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> For more options, visit https://groups.google.com/d/optout.
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.
--- gluon/html.py.orig 2016-02-04 22:08:20.000000000 -0800
+++ gluon/html.py 2016-02-13 09:59:26.000000000 -0800
@@ -2175,7 +2175,7 @@
if hasattr(self, 'formname') and self.formname:
c.append(INPUT(_type='hidden', _name='_formname',
_value=self.formname))
- return DIV(c, _style="display:none;")
+ return DIV(c)
def xml(self):
newform = FORM(*self.components, **self.attributes)