WHATWG calls for 'Last' Comments on Web Forms 22
hixie writes " The W3C recently acknowledged
a version of the Web Forms 2.0 draft submitted to the W3C by Mozilla
and Opera. Meanwhile the WHATWG has updated the Web Forms draft and
released a new
call for comments. Send them in!"
What Working Group?? (Score:3, Funny)
Re:What Working Group?? (Score:5, Informative)
What is the Web Hypertext Application Technology Working Group?
It is a loose unofficial collaboration of Web browser manufacturers and interested parties who wish to develop new technologies designed to allow authors to write and deploy Applications over the World Wide Web.
The working group mailing list is an open subscription public mailing list and anyone is welcome to contribute.
The focus of this working group is limited to technologies that will need to be directly implemented in Web browsers. It is not the right forum for very domain-specific proposals that would not be suitable for implementation in, for instance, Safari, Firefox, or Opera.
Re:What Working Group?? (Score:2)
Re:What Working Group?? (Score:1)
Brilliant! [baseball-almanac.com]
Re:What Working Group?? (Score:2)
Input validation schemes (Score:3, Informative)
Re:Input validation schemes (Score:4, Insightful)
No need to pick on the PHP coders -- you can just as easily write unchecked Perl, ASP, Python, etc -- but yes, some of the biggest website vulnerabilities are caused by relying too much on JavaScript to validate input.
I mean, essentially you're just having to check everything twice... what was wrong with returning a page informing the user of his or her mistakes, exactly?
It's a little faster for the user (instant feedback on any mistakes), and it saves a tiny bit of server resources. And it should replace all the JavaScript hacks with one standard interface.
Re:Input validation schemes (Score:2, Informative)
Depends on what's being uploaded. If it's large, then it could be a lot faster for the user and save a lot of server resources.
Re:Input validation schemes (Score:3, Interesting)
What's to stop server side code from parsing the XForms (or Web Forms or whatever your choice of poison is) to extract validation information, and then do the _exact_ same checks on the server side? Why, it even makes your code more easily maintainable.
I do something similar to this with my PHP framework using XML do
Re:Input validation schemes (Score:2)
http://www.w3.org/TR/2002/WD-xforms-20020118/sl
Re:Input validation schemes (Score:2)
There's nothing to stop you from doing it that way. It's just slower by a round-trip to the server (which could be a little or a lot), and uses server resources instead of client resources, when the latter are generally more available.
Personally, I like to occasionally try my software using a slow dialup account several time-zones away from the server, since that will be the environment for plenty of my users. I avoid network round trips like the
Re:Input validation schemes (Score:1)
I may be wrong, but I believe one of the greatest advantages of XForms for the developer is exactly that, since you have all those rules and constraints defined in a XML format, it is incredibly easy (provided your server-side language supports this) for you to use the very same XML to produce a HTML form (through Web Forms) and to do server-side checking.
All you ha
Re:Input validation schemes (Score:2)
this bit made me laugh... (Score:3, Funny)
Authors must not do this. User agent implementors may curse authors who violate these rules, and may persecute them to the full extent allowed by applicable international law.
You can tell these guys have experience doing real implementations...
Re:this bit made me laugh... (Score:1)
Grid Needed (Score:2)
Re:Grid Needed (Score:1)
Re:Grid Needed (Score:2)
Oh and would it kill you guys to include some sort of early-bound scripting language? ECMA is nice and all but I can write VB code about 3 times faster than JavaScript all thanks to AutoComplete...
Seems awfully dismissive (Score:2)