[web2py] Re: Plain Text and HTML Email with auth.messages.verify_email

2015-06-20 Thread Falko Delarue
how did you do it? could you please explain ┐(・。・┐) ♪ On Saturday, September 15, 2012 at 1:17:50 AM UTC+2, c h wrote: > > for what it's worth i have re-implemented some of the auth functions that > send mail so that i can send both plain text and HTML emails (i don't read > email in HTML so i st

[web2py] Guess what server is powering Silk Road Reloaded (a anonymous online drug market) on i2p

2015-01-16 Thread Falko Delarue
If you have no clue what I'm talking about http://motherboard.vice.com/read/silk-road-reloaded-i2p ... well you guessed right I don't know if this is good or bad, just thought is was curious. Something for the powered by page @massimo? hehe ... -- Resources: - http://web2py.com - http://web2py

Re: [web2py] how to: tumblr login for web2py

2015-01-05 Thread Falko Delarue
er python-oauth2 > > making it portable to any environment where web2py works > > 2015-01-03 13:44 GMT+01:00 Falko Delarue >: > >> This is how you login to your web2py app with Tubmblr >> >> Register a Tubmblr app (you will of course need a Tubmblr account) >&g

[web2py] how to: tumblr login for web2py

2015-01-03 Thread Falko Delarue
This is how you login to your web2py app with Tubmblr Register a Tubmblr app (you will of course need a Tubmblr account) https://www.tumblr.com/oauth/register and configure later at https://www.tumblr.com/settings/apps get the consumer key and secret install the oauth2 lib (instructions onl

[web2py] Re: no basic auth via wget because current.request.env.http_authorization is none

2014-11-06 Thread Falko Delarue
wget --user he...@gmail.com --password test1234 -q -O- http://test.com/testing/pages/list_pages On Tuesday, November 4, 2014 9:57:20 AM UTC+1, Niphlod wrote: > > how do you call wget ? > > On Monday, November 3, 2014 11:51:34 PM UTC+1, Falko Delarue wrote: >> >> w

[web2py] Re: no basic auth via wget because current.request.env.http_authorization is none

2014-11-03 Thread Falko Delarue
wget and the browser http://email:p...@mysite.com On Monday, November 3, 2014 4:24:15 PM UTC+1, Niphlod wrote: > > how are you trying to access the function (wget, curl, some cmdline > script, etc etc etc) ? > > On Monday, November 3, 2014 2:34:51 PM UTC+1, Falko Delarue wrote: &

[web2py] no basic auth via wget because current.request.env.http_authorization is none

2014-11-03 Thread Falko Delarue
I tried to access web2py via basic auth as described in http://web2py.com/books/default/chapter/29/09/access-control#Access-Control-and-Basic-Authentication since it did not work i tried to track the error down and put some debug print in gluon/tools.py Auth basic() I can see that the basic fun

[web2py] Re: RESTful PATCH request not working

2014-08-13 Thread Falko Delarue
Ok just I tried this @request.restful() def page(): def PATCH(*args, **vars): if args[0]: print 'PATCH args: ', args But I still get a 400 "Bad Request" error (it does not say 400 "invalid arguments") that why I think it does not even come to this point. Also request.arg

[web2py] Re: RESTful PATCH request not working

2014-08-12 Thread Falko Delarue
On Tuesday, August 12, 2014 6:10:28 PM UTC+2, Leonel Câmara wrote: > > The problem is probably that in your PATCH function you're accessing > request.args(0) when you should be using args[0]. > What? this cannot be right, the request.args(0) is a standard function globally available for a long

[web2py] RESTful PATCH request not working

2014-08-12 Thread Falko Delarue
The backbone.js framwork defines the following request type map http://backbonejs.org/docs/backbone.html#section-153 // Map from CRUD to HTTP for our default `Backbone.sync` implementation. var methodMap = { 'create': 'POST', 'update': 'PUT', 'patch': 'PATCH', 'delete': 'DELETE'