[web2py:22740] Re: Is there a way to place apps in a separate directory from the "applications" directory?

2009-05-27 Thread virhilo
ln -s /opt/web2py_apps /opt/web2py/applications/ On 27 Maj, 15:55, cesmiga wrote: > All: > > I've been looking around and was wondering if there is a way to place > apps in a separate directory from the "applications" directory? > > From: > /opt/web2py/applications > > To: > /opt/web2py_apps > >

[web2py:22655] Re: auth example

2009-05-26 Thread virhilo
Thanks:) On 26 Maj, 03:50, mdipierro wrote: > auth.settings.actions_disabled.append('register') > > On May 25, 6:29 pm, virhilo wrote: > > > Hello > > Can anyone show me a custom auth example with users registration > > turned

[web2py:22635] auth example

2009-05-25 Thread virhilo
Hello Can anyone show me a custom auth example with users registration turned off or only for admin user? Thanks a lot:) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this gr

[web2py:22207] only models and appadmin controllers are compiled

2009-05-20 Thread virhilo
Only models and appadmin controllers are compiled, there are no any views or user controllers compiled. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email t

[web2py:21976] Re: Feature Request: Pagination

2009-05-16 Thread virhilo
maybe look at: http://mdp.cti.depaul.edu/AlterEgo/default/show/63 and http://mdp.cti.depaul.edu/AlterEgo/default/show/95 On 16 Maj, 18:39, Jason Brower wrote: > It would be nice to have integrated pagination, or perhaps some > documentation on how it's done.  And both would be a dream. :D > I am

[web2py:21975] Re: open issues?

2009-05-16 Thread virhilo
My version is ~2 times faster, but you right-there are no any() in python 2.4 :) On 16 Maj, 15:53, mdipierro wrote: > Thanks. Excellent point. I modified your patch since I am not sure any > () is compatible with 2.4 but it is in trunk. > > Massimo > > On May 16, 4:24 

[web2py:21942] Re: open issues?

2009-05-16 Thread virhilo
The 'Remove compiled' shouldn't be visible in we have *only* compiled version of application. Here is the patch for 'admin' application: http://spof.pl/~virhilo/rm_compiled.patch On 15 Maj, 22:43, mdipierro wrote: > BTW... you can test the latest at > > htt

[web2py:21941] Re: open issues?

2009-05-16 Thread virhilo
The 'Remove compiled' shouldn't be visible in we have *only* compiled version of application. Here is the patch for 'admin' application: http://virhilo.spof.pl/~virhilo/rm_compiled.patch On 15 Maj, 22:43, mdipierro wrote: > BTW... you can test the latest at > &

[web2py:21917] Re: python path in web2py files

2009-05-15 Thread virhilo
Fri, May 15, 2009 at 8:09 AM, Kacper Krupa wrote: > > >>> yep, i told about it: > > >>>http://groups.google.com/group/web2py/browse_thread/thread/71bb1897b4... > > >>> On 15 Maj, 10:22, virhilo wrote: > >>> > I think the python path in web2py

[web2py:21889] python path in web2py files

2009-05-15 Thread virhilo
I think the python path in web2py files stould be: /usr/bin/env python instead of /usr/bin/python I make a patch for 796 revision of devel version which correcting it. You can found it here: http://spof.pl/~virhilo/python_path.patch Greets

[web2py:20091] Re: GET forms without _formname

2009-04-20 Thread virhilo
accepts(request.vars,formname=None): >          response.flash="done" > > Massimo > > On 20 Apr, 11:16, virhilo wrote: > > > No i don't want redirections-i want to stay on the same site:) Only > > don't want to have _formname in url. > > for

[web2py:20088] Re: GET forms without _formname

2009-04-20 Thread virhilo
_name='arch'), >     INPUT(_type='submit', _value='Search...'), >     _method='get', >     _action=None) >     if request.vars and form.accepts(request.vars,formname=None): >          session.flash="searching..." >          redire

[web2py:20087] Re: imported apps corrupted

2009-04-20 Thread virhilo
assimo > > On 20 Apr, 09:28, virhilo wrote: > > > Apps which I exported using previous version(1.61) and imported in > > current version. > > > On 20 Kwi, 16:16, mdipierro wrote: > > > > Which imported apps? > > > > Massimo > > > >

[web2py:20081] Re: imported apps corrupted

2009-04-20 Thread virhilo
Apps which I exported using previous version(1.61) and imported in current version. On 20 Kwi, 16:16, mdipierro wrote: > Which imported apps? > > Massimo > > On 20 Apr, 07:40, virhilo wrote: > > > Hello:) > > Inported aplications don't have web2py_aj

[web2py:20068] imported apps corrupted

2009-04-20 Thread virhilo
Hello:) Inported aplications don't have web2py_ajax.html file and have corrupted layout.html file(coping that files from another applications solves problem) Sorry for short description but I don't have time now. --~--~-~--~~~---~--~~ You received this message beca

[web2py:20067] Re: GET forms without _formname

2009-04-20 Thread virhilo
Issue still existing :( On 13 Kwi, 00:03, virhilo wrote: > Hello:) > I want to send a form using get method, so i make form like this: > > form=FORM('Package name: ', >     INPUT(_name='name', requires=IS_LENGTH(25), value=''), >     '

[web2py:20066] Re: GET forms without _formname

2009-04-20 Thread virhilo
That issue is still existing :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py Web Framework" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to

[web2py:19699] invalid gluton.tools.Mail docstring

2009-04-13 Thread virhilo
Hello:) The part of gluton.tools.Mail class doc string should look like that: from gluon.tools import Mail mail=Mail() mail.settings.server='smtp.gmail.com:587' mail.settings.sender='y...@somewhere.com' mail.settings.login=None or 'username:password' instead of: from gluon.contrib.utils import *

[web2py:19625] GET forms without _formname

2009-04-12 Thread virhilo
Hello:) I want to send a form using get method, so i make form like this: form=FORM('Package name: ', INPUT(_name='name', requires=IS_LENGTH(25), value=''), 'Arch: ', SELECT(OPTION('Wszystkie', _value='all'), OPTION('i686', _value='32'), OPTION('x86_64', _value='64'), requ