Hi everybody!! How could I make a google like in web2py, I mean I have:
db.define_table('article',
Field('site', db.site),
Field('section',db.section),
Field('date,'datetime'),
Field('author','string'),
Field('header','string'),
Field('body','text'))
and I like to have a google like form (I need it to be customizable via
CSS), so the user can search any word that is in article.header and
article.body.

