On Feb 19, 3:14*am, "rf" <r...@invalid.com> wrote:
[snip]
>
> They are certainly not living at the above URL 
>
> Not even a bloody doctype!
Yes, it is a bizarre melange of HTML 3.2 and XHTML-style markup. No
doctype (what would it be anyway?), no character encoding specified,
tables-in-tables (despite the spartan layout), no top-level headline,
entitities in odd places, hyperlinks that break without script,
etc., etc. The really irony here is that the pages are clearly
template-driven and very small, so they only had a to get a very
limited amount of markup right once.
Here is an interesting sample:
<a href=""><a href="#" onClick="alert('Coming soon...')"
fref="feedback.jsp?appid=28">[App Feedback]</a><br/>
Then there is the script. This is a new one:
window.onload = document.onload = appCallOnLoad;
I can see why somebody might feel compelled to do such a thing, but at
the very least there should be logic to account for the fact that
appCallOnLoad might be called twice (there isn't.)
The most shocking display of incompetence can be found on the feedback
page, which features half a dozen lines of client-side validation,
which require (drum roll please) Prototype. (!)
Developing applications to run in this framework would be akin to
developing a condo complex in a swamp.
>
> background-color: 666666; is probably why I get my shocking pink background
>
I didn't bother to look at the CSS, but that sample doesn't surprise
me. Perhaps the devil made them do it (twice.)
Back to the drawing board guys!