[web2py:24137] Using appliance "Ajax Shell" behind routes.py

2009-06-14 Thread Bernd das Brot
Hi, this is Bernd, the guy with "routes.py" like routes_in = (('/prefix/(?P.*)','/\g'),) routes_out = (('/(?P.*)','/prefix/\g'),) to have web2py alongside other web applications - and therefore finding "dirty" URLs ;-) The very cool "Ajax Shell" from http://mdp.cti.depaul.edu/appliances works f

[web2py:22073] Re: open issues?

2009-05-18 Thread Bernd das Brot
Another thing... looking at the time you created the 1.62.0 release: when do you sleep ? Your book is excellent, thank you ! http://www.lulu.com/content/4968879 On 18 Mai, 15:42, Bernd das Brot wrote: > I checked Version 1.62.0 (2009-05-18 01:35:01) - look perfectly fine > to me (and my

[web2py:22072] Re: open issues?

2009-05-18 Thread Bernd das Brot
as indeed > > from gluon.tools import * > > was reimporting the wrong URL. It is fixed in google.code abd I am > trying to upload the fix on launchpad. I seem to have a problem > logging it today. Must be a problem on their side. > > Massimo > > On May 17, 5:38 pm, Bernd

[web2py:22044] Re: open issues?

2009-05-17 Thread Bernd das Brot
18:00, mdipierro wrote: > On May 17, 2:39 am, Bernd das Brot wrote: > > > Hello, > > I checked web2py Version 1.62 rc4 (2009-05-15 15:41:03) for my issue > > > "web2py alongside other applications, > > mod_proxy"http://groups.google.at/group/web2py/

[web2py:22010] Re: open issues?

2009-05-17 Thread Bernd das Brot
Hello, I checked web2py Version 1.62 rc4 (2009-05-15 15:41:03) for my issue "web2py alongside other applications, mod_proxy" http://groups.google.at/group/web2py/browse_thread/thread/c49124199d820fca/8120f6d0022273c9 to find it fixed (big thank you !) EXCEPT in the (new and cool) "welcome" appli

[web2py:20790] Re: web2py alongside other applications, mod_proxy

2009-04-28 Thread Bernd das Brot
that settings in "routes.py" are used (by using URL() systematically) ? Bernd mdipierro schrieb: > in routes you can do > > routes_in=(('/prefix/(?P.*)','/$a'),) > routes_out=(('/(?P.*)','/prefix/$a'),) > > then you visit > >

[web2py:20633] web2py alongside other applications, mod_proxy

2009-04-27 Thread Bernd das Brot
Hi, I (still) need to implement web2py with a prefixed URL without using apache mod_proxy_html. Am I really the only one who needs this ? Obviously not - see the AlterEgo Article http://www.web2py.com/AlterEgo/default/show/136 I believe that web2py should work _without_ the mod_proxy_html part (

[web2py:20339] Re: Problems with web2py behind Proxy and mod_proxy_html

2009-04-23 Thread Bernd das Brot
ou should not do this: > >   jQuery(document).ready(function(){ setTimeout("keepalive('/yourapp/ > default/action')",1); }); > > You should do this instead > >   jQuery(document).ready(function(){ setTimeout("keepalive('{{=URL > (&#x

[web2py:20259] Problems with web2py behind Proxy and mod_proxy_html

2009-04-22 Thread Bernd das Brot
Hi web2py fans ! I want to use web2py (current production version 1.61.1) behind an apache proxy, alongside other applications. Therefore I need a unique URL-Prefix to guide mod_proxy to the (standalone) web2py-Server (Application "cookbook": https://server:port/prefix/cookbook/...) 1) I followe