Posted: Thu May 05, 2005 8:02 am Post subject: OpenLaszlo - Web Development Platform
This is just way too impressive. Check it out: http://www.openlaszlo.org/
It has a J2EE core in the backend and the client end is flash based. This pwns the Rails and Trails anyday. You dont necessarily have to code in java, it's all XML based.
NOTE: While Trails and Rails are better suited for a common "coder", development using markup languages are actually better suited for the web developers.
Web Developers prefer describing their webpages (web development) verus coding them out, and hence they prefer the markup language to the imperative one. Thus OpenLaszlo is simply a fantastic choice. Of course functionality can be added through servlets, if needed.
Also: Here's an eclipse plugin for Laszlo development: here
Sponsor Sponsor
wtd
Posted: Thu May 05, 2005 12:08 pm Post subject: (No subject)
Isn't this basically what Rails does? A template looks like:
code:
<html>
<head>
<title>Hello world</title>
</head>
<body>
<% 5.times do %>
Hello world!</br>
<% end %>
</body>
</html>
That's pretty much just describing the page, and the syntax is about as developer-friendly as XML.
rizzix
Posted: Thu May 05, 2005 2:10 pm Post subject: (No subject)
nope u see thats not declarative any more.. its imperative... actually its a hybrid like in PHP and JSP or XSLT.