[web2py] Re: Web2py like clone in Java?

2017-07-16 Thread Rimantas Nedzinskas
Hi, Take a look at cuba-platform (www.cuba-platform.com) You'll find all the features you have listed and much more. On Friday, October 15, 2010 at 12:38:19 AM UTC+1, DJ wrote: > > Hello web2py people, > > I was in a discussion recently telling my friend how great Web2Py was > for programmer pr

[web2py] Re: Web2py like clone in Java?

2017-07-15 Thread Joe Barnhart
As long as we're adding interesting but obscure and little-used web platforms, I'd like to submit Seaside, the Smalltalk web platform. Just... well... because Smalltalk! -- Joe -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source

[web2py] Re: Web2py like clone in Java?

2017-07-13 Thread pbreit
Check out https://grails.org/ -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) - http://github.com/web2py/web2py (Source code) - https://code.google.com/p/web2py/issues/list (Report Issues) --- You received this message because you are subscribed to the Google Groups "

[web2py] Re: Web2py like clone in Java?

2010-10-16 Thread Mengu
going with grails or play framework is teh only way. :) On 16 Ekim, 23:22, Michele Comitini wrote: > C# ? > > 2010/10/16 Christopher Steel : > > > > > > > > > then what is the new RPG? > > > On Oct 14, 8:08 pm, Jonathan Lundell wrote: > >> On Oct 14, 2010, at 4:38 PM, DJ wrote: > > >> > I was in

Re: [web2py] Re: Web2py like clone in Java?

2010-10-16 Thread Michele Comitini
C# ? 2010/10/16 Christopher Steel : > then what is the new RPG? > > On Oct 14, 8:08 pm, Jonathan Lundell wrote: >> On Oct 14, 2010, at 4:38 PM, DJ wrote: >> >> >> >> > I was in a discussion recently telling my friend how great Web2Py was >> > for programmer productivity with all the inbuilt feat

[web2py] Re: Web2py like clone in Java?

2010-10-16 Thread Christopher Steel
then what is the new RPG? On Oct 14, 8:08 pm, Jonathan Lundell wrote: > On Oct 14, 2010, at 4:38 PM, DJ wrote: > > > > > I was in a discussion recently telling my friend how great Web2Py was > > for programmer productivity with all the inbuilt features (server, > > CRUD, auth). We were wondering

Re: [web2py] Re: Web2py like clone in Java?

2010-10-16 Thread Michele Comitini
@Massimo @Bruno http://web2py.com/book/default/chapter/09#JSONRPC-and-Pyjamas It is already there and can do much more that wicket! but what I try to say is that it would be nice to use the standard html helpers + .load and having (later) nice degradation for javascript disabled scenarios. Wil

Re: [web2py] Re: Web2py like clone in Java?

2010-10-15 Thread Bruno Rocha
I used this http://www.gnu.org/software/pythonwebkit/ sometime with Pylons. But I think it is the base of Pyjamas. 2010/10/15 Michele Comitini > Lately I have been "forced" to use wicket (wicket.apache.org). > Wicket is by no means "agile" compared to web2py. Wicket is not a > full stack framew

[web2py] Re: Web2py like clone in Java?

2010-10-15 Thread mdipierro
Notice that all the logic (from user prospective) is here: button = BUTTON('click me',_id='abc') button.addListener('xyz',lambda button:"jQuery('# %s').hide()"%button.id) def index(): return dict(mybutton = button) The logic in the class BUTTON could be injected in all helpers withou

Re: [web2py] Re: Web2py like clone in Java?

2010-10-15 Thread Michele Comitini
no idea at this time, I need some sleep ... tomorrow ;-) 2010/10/16 mdipierro : > Make a mode called button_event.py > >  objects={} >  class BUTTON(DIV): >     def __init__(self,*a,**b): >          self.tag = 'button' >          DIV.__init__(self,*a,**b) >          self.id=self['_id'] >          

[web2py] Re: Web2py like clone in Java?

2010-10-15 Thread mdipierro
Make a mode called button_event.py objects={} class BUTTON(DIV): def __init__(self,*a,**b): self.tag = 'button' DIV.__init__(self,*a,**b) self.id=self['_id'] objects[self.id]=self def addListener(self,name,f): service.run_procedures[n

Re: [web2py] Re: Web2py like clone in Java?

2010-10-15 Thread Michele Comitini
2010/10/16 mdipierro : > Do you mean client-side events or server-side events, or something in > between? client side events calling listeners on the server. For instance we have a button. Having an interface to add listeners and managing ajax responses would allow writing similar code in a contr

[web2py] Re: Web2py like clone in Java?

2010-10-15 Thread mdipierro
Do you mean client-side events or server-side events, or something in between? I think while we lack server-side events we actually have a system for handling client side events using jQuery and LOAD. I will post an example. I need to resume and fix this: http://groups.google.com/group/web2py/br

Re: [web2py] Re: Web2py like clone in Java?

2010-10-15 Thread Michele Comitini
Lately I have been "forced" to use wicket (wicket.apache.org). Wicket is by no means "agile" compared to web2py. Wicket is not a full stack framework it needs a lot of other things to serve pages. As with any java coding wicket takes ages and pages to do things that python does in one line. Agai

[web2py] Re: Web2py like clone in Java?

2010-10-15 Thread Savio Sabino
You can see the alternatives to agile frameworks in Java: Grails; Spring Roo; Scooter Framework; Play Framework; Next Framework. But none compares to Python Web Frameworks or Rails in respect to simplicity, amount of features and the maturity in the field of agile frameworks. And I think beyond

[web2py] Re: Web2py like clone in Java?

2010-10-14 Thread David Marko
My favourite for clean java is http://www.playframework.org/ Better experience than with Grails. David On 15 říj, 02:21, Bruno Rocha wrote: > Grails uses a template language > > > > You can't write Java or Groove in views as we can do with web2py writing > pure Python direclty in views. > It is

[web2py] Re: Web2py like clone in Java?

2010-10-14 Thread cjrh
On Oct 15, 2:06 am, Bruno Rocha wrote: > I tought Python was the language with more web frameworks, but Java wins. hehe

Re: [web2py] Re: Web2py like clone in Java?

2010-10-14 Thread Bruno Rocha
> > http://java-source.net/open-source/web-frameworks > > However, I have no experience whatsoever with any of these. If you > find something similar to web2py, please do report back here. I would > be very impressed to find it achievable in java. I tought Python was the language with more web

[web2py] Re: Web2py like clone in Java?

2010-10-14 Thread cjrh
On Oct 15, 1:38 am, DJ wrote: > Hello web2py people, > > I was in a discussion recently telling my friend how great Web2Py was > for programmer productivity with all the inbuilt features (server, > CRUD, auth). We were wondering if there was anything similar in Java? > Quick google search brought