ceylon-cayla icon indicating copy to clipboard operation
ceylon-cayla copied to clipboard

A web framework for Ceylon

Results 5 ceylon-cayla issues
Sort by recently updated
recently updated
newest added

This is a pain to type: ``` ceylon run --run=examples.cayla.helloworld.run examples.cayla/1.0.0 ``` It should be: ``` ceylon run examples.cayla.helloworld/1.0.0 ``` which is what you would get if each example were...

Salut Julien, This is Stéphane from the ceylon mailng list. I have had a quick look at cayla.I am not yet extremely familiar with the project so excuse me in...

Until now controllers can be declared as: - top level class declarations - nested object declarations Need to do more, for example shared void run() { shared object controllers {...

Allow a controller to be marked as asynchronous like: route("/foo") async shared class MyController() extends Controller() { ... } the controller would be wrapped by Cayla by a Promise .