Sadly, there is a cadre of redditors who simply reflexively downvote any 
post or comment that is remotely positive about web2py (usually without 
making any response). Even the most innocuous and friendly comment will be 
downvoted. Conversely, any comment criticizing web2py will be upvoted. 
That's reddit. :(

On Thursday, January 6, 2011 8:07:32 PM UTC-5, Luther Goh Lu Feng wrote:

>
>
> On Jan 7, 6:06 am, Anthony <abas...@gmail.com> wrote: 
> > In case anyone is interested... 
> > 
> > http://www.reddit.com/r/Python/comments/ex54j/seeking_clarification_o... 
>
>
> Seriously downvoting this comment is ridiculous 
>
> ======================================= 
>
> mdipierro -3 points 9 hours ago[-] 
> Example of full web2py program (on top of scaffolding app). Perhaps 
> others can write the same in Pyramid to give you an idea of the 
> differences: 
>  #in model db.py append 
>  db.define_table('person',Field('name',notnull=True),Field('address')) 
>
>  #in controllers/default.py add 
>  @auth.requires_login() 
>  def index(): 
>       return dict(form=crud.create(db.person), 
>                   rows=db(db.person).select()) 
>
>  # in views/default/index.html (optional works without) 
>  {{extend 'layout.html'}} 
>  <h1>Hello World</h1> 
>  {{=form}} 
>  {{=rows}}

Reply via email to