[web2py] Configurar servidor web2py na Linode

2011-12-05 Thread Bruno Barbosa
Pessoal,

Estou querendo contratar um plano na Linode para hospedar minha aplicação
em web2py.
A minha dúvida é que não sei como configurar o servidor lá... Alguém tem
alguma experiência ou link de artigos sobre como fazer e poderia
compartilhar?

--
Bruno Barbosa
Web Developer and Free Software Enthusiast
http://brunobarbosa.com.br/
http://twitter.com/bruninbsb


Re: [web2py] Re: [OFF] Protect the web2py app of DDoS atack in GAE

2011-06-30 Thread Bruno Barbosa
Thanks!

I take a look, then return here =)

# ---
# Bruno Barbosa
# Web Developer - Linux user and Free Software Enthusiast
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


2011/6/30 pbreit 

> Check out CloudFlare which caches all your static files, prevents threats
> and more. All for free with a simple setup.
>
> Info on GAE:
> http://blog.cloudflare.com/zone-apex-naked-domain-root-domain-cname-supp
>


[web2py] [OFF] Protect the web2py app of DDoS atack in GAE

2011-06-29 Thread Bruno Barbosa
know if my web2py app is being attacked in the GAE?

The requests have tripled suddenly and very resource consuming is the
outgoing badwidth.

Does anyone have tips to soften it in the GAE?


# ---
# Bruno Barbosa
# Web Developer - Linux user and Free Software Enthusiast
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


[web2py] Re: [web2py-users-brazil:2025] web2py wallpaper

2011-05-21 Thread Bruno Barbosa
Excelent!

I saved here. =)

# ---
# Bruno Barbosa
# Web Developer - Linux user and Free Software Enthusiast
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


2011/5/21 Bruno Rocha 

> Hi all, I just installed a fresh Ubuntu 11.04 and finished the
> customization (I will give a chance to Unity). I missed some web2py
> wallpaper, so I created a very simple one based on the new Ubuntu's
> wallpaper.
>
> If it interest for someone, here is a screenshot
>
> http://is.gd/zmNnlh
>
> Download High resolution wallpaper
>
> http://db.tt/Xp8qRWF
>
> Somebody else has web2py artwork for sharing?
>
> --
> Bruno Rocha
> [ About me: http://zerp.ly/rochacbruno ]
>
>  --
> Você recebeu essa mensagem por estar inscrito no grupo web2py-users-brazil.
> Para enviar uma mensagem ao grupo, envie email a:
> web2py-users-bra...@googlegroups.com
> Para se desinscrever, envie email a:
> web2py-users-brazil+unsubscr...@googlegroups.com
> Para mais opções, visite o site do grupo em:
> http://groups.google.com/group/web2py-users-brazil?hl=en


Re: [web2py] Re: Solução de e-commerce em web2py / e-commerce solution in web2py

2011-05-12 Thread Bruno Barbosa
oh, thanks!

I'll take a look =)

regards,

# ---
# Bruno Barbosa
# Web Developer - Linux user and Free Software Enthusiast
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


Em 12 de maio de 2011 20:16, pbreit  escreveu:

> I researched it awhile back and all I could really find was the old
> appliance:
> http://code.google.com/p/web2py-estore/
> http://web2py.com/appliances/default/show/24
>
> It's a bit outdated but seems to work. I ended up coding my own:
> http://pricetack.com
>


[web2py] Solução de e-commerce em web2py / e-commerce solution in web2py

2011-05-12 Thread Bruno Barbosa
Is there an e-commerce solution in web2py?

__

Já existe alguma solução de e-commerce em web2py?


# ---
# Bruno Barbosa
# Web Developer - Linux user and Free Software Enthusiast
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


[web2py] Field 'time' and standard time

2011-04-03 Thread Bruno Barbosa
Hello,

how do I set the default time in 'time' field?

ex:

db.define_table('register_time',
 Field('name'),
 Field('hour', 'time', default=*???*))

obs: I do not want to use the field type 'datetime'.

thanks.

# ---
# Bruno Barbosa
# Seja livre - Use Linux!!!
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


Re: [web2py] Re: web2py in the Pypi

2011-03-11 Thread Bruno Barbosa
I believe that Gilson is proposing to assist and update if necessary...

# ---
# Bruno Barbosa
# Seja livre - Use Linux!!!
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


2011/3/11 pbreit 

> Weird. The version is listed as 1.95.6 when we are only at 1.93.2.
>
> Best to get it from here:
> http://web2py.com/examples/default/download
>


[web2py] PDF report

2011-03-11 Thread Bruno Barbosa
Hello,

how to pdf report in web2py?
any tips?

# ---
# Bruno Barbosa
# Seja livre - Use Linux!!!
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


Re: [web2py] explanation of corrections in version 1.93.2

2011-03-05 Thread Bruno Barbosa
Ovidio,

Para definir writable e readable fazemos o seguinte:

db.define_table('tabela',
   Field('nome'),
   Field('idade'))

db.tabela.nome.writable=db.tabela.nome.readable = False

O Massimo falou que estava cansado de ter que escrever toda vez writable...
readable

Então ele criou essa estrutura:

Field(':hidden'), Field('.readonly'), Field('name=value')


Na tabela que defini acima, fica da seguinte forma:

Field(':nome') é o mesmo que: Field('nome', writable=False, readable=False)
Field('.nome') é o mesmo que: Field('nome', writable=False, readable=True)
Field('nome=Bruno') é o mesmo que Field('nome', default='Bruno')
Field(':nome=Bruno') é o mesmo que Field('nome', default='Bruno',
writable=False)

Espero que tenha ajudado em algo...

# ---
# Bruno Barbosa
# Seja livre - Use Linux!!!
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---


2011/3/5 Ovidio Marinho 

>
> File read-me 193.2
>
> ## 1.63.1-2 -
> This and an error? correct 1.93.2??
> - support for multiple interfaces, thanks Jonathan What is This???
> - jquery 1.5.1
> - simplejson 2.1.3
> - customizable simplejson
> - leaner app.yaml
> - css3 buttons in welcome - What is This???
> - android support (experimental) What is This???
> - Field(':hidden'), Field('.readonly'), Field('name=value') What is
> This???
> - combined expressions print db.data.body.len().sum() What is This???
> - wizard can download plugins What is This???
> - better json serilization (object.custom_json)
> - better xml serialization (object.custom_xml)
> - better formstyle support
> - better comet_messaging.py (needs more testing) What is This???
> - many bug fixes
> --
> Ovidio Marinho Falcao Neto
>  ovidio...@gmail.com
>  Tecnologia da Informaçao
>  Casa Civil do Governador
>  83 3214 7885 - 88269088
>   Paraiba
>
>


[web2py] how to change checkbox to button delete in SQLFORM

2011-03-04 Thread Bruno Barbosa
I want change default checkbox to button in SQLFORM, suggestions?


# ---
# Bruno Barbosa
# Seja livre - Use Linux!!!
# http://algoritmizando.com
# http://twitter.com/bruninbsb
# ---