Path: mv.asterisco.pt!mvalente
From: mvale…@ruido-visual.pt (Mario Valente)
Newsgroups: mv
Subject: The Right Way for Web Development
Date: Sat, 14 Jul 07 20:03:21 GMT
http://wicket.sourceforge.net/
These guys have it ..almost.. right…
———————————-
Separation of Concerns
Wicket does not mix markup with Java code and adds
no special syntax to your markup files.
<span wicket:id=”message”>Message goes here</span&>
public HelloWorld()
{
add(new Label(“message”, “Hello World!”));
}
———————————-
Now if only they didnt use XML namespaces for the
wicket: namespace (there’s no need, id could be used
directly) and there was no Java (Javascript could be
used to do asynchronous server requests, probably REST,
to get the data, probably JSON), this would be the
perfect thing.
— MV