[web2py:29298] Googlemap in web2py

2009-08-24 Thread rondevu
Is there any examples of implementation of GoogleMap in web2py. I see there is one for Django. GeoDjango its called. Anything similar? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to

[web2py:29419] Re: web2py book, 2nd Ed

2009-08-26 Thread rondevu
Hi there, I remembered that you will give the book for free for students in certain countries is it still available that way. Thanks. On Aug 17, 6:47 pm, mdipierro wrote: > When it is out (only after it is out) email me a receipt of your > purchase and I will send you the new book. > > Moreover

[web2py:29476] Rename application

2009-08-26 Thread rondevu
Is it possible to rename an application. It does not seem obvious to me. Maybe its simple ...? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegr

[web2py:29611] Re: web2py course

2009-08-28 Thread rondevu
This is wholly an online course. If that so, I'm in. On Aug 29, 12:48 am, mdipierro wrote: > This is an online course. Nobody will be there. You watch the > recordings when you want but have to do the coursework to get the > certificate. I interact with the student my email more or less as we >

[web2py:29612] Re: web2py course

2009-08-28 Thread rondevu
You mean this is an entirely online course? If that is so I'm in! Hope enough people is interested, so that it actually takes off. Rjv On Aug 29, 12:48 am, mdipierro wrote: > This is an online course. Nobody will be there. You watch the > recordings when you want but have to do the coursework

[web2py:31188] Re: web2py course

2009-09-17 Thread rondevu
OK I'm in. My application at De' Paul was accepted and my institution decided to fund me. Cool. Rjv On Aug 29, 4:32 pm, mdipierro wrote: > yes this is entirely online. I record the lectures (2.5hrs/week) and > you watch them online. They will be intermediate level since they > assume no knowle

[web2py:33187] Komodo IDE web2py Setup

2009-10-20 Thread rondevu
Im new. How do you configure komodo to work with web2py? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this grou

[web2py:33190] Re: Komodo IDE web2py Setup

2009-10-20 Thread rondevu
Well I have tried WingIDE. And wanted to see the difference of the two IDEs. On Oct 20, 6:56 pm, Alex Fanjul wrote: > > Im new. How do you configure komodo to work with web2py? > > If you can use Wing + web2py its so > easyhttp://www.wingware.com/doc/howtos/web2pyand it works very good. > -- >

[web2py:33220] Re: Komodo IDE web2py Setup

2009-10-20 Thread rondevu
t; > on how to have a server run in Komodo (e.g. cherrypy); that much would give > > you a big step forward. > > > On Tue, Oct 20, 2009 at 6:55 AM, rondevu wrote: > > >> Well I have tried WingIDE. And wanted to see the difference of the two > >> IDEs. > > >

[web2py:33288] Re: Komodo IDE web2py Setup

2009-10-21 Thread rondevu
> forum:http://community.activestate.com/forum/implicit-python-code-completion > > Richard > > On Oct 21, 3:57 am, rondevu wrote: > > > Well the only way I got code completion to work is using this guide > > herehttp://kollerie.wordpress.com/2009/04/07/setting-

[web2py:33474] Re: Komodo IDE web2py Setup

2009-10-22 Thread rondevu
ing! Just waiting for feedback from > > Todd and a place to put it. > > > There is a Google Code project for Django integration > > withKomodo:http://code.google.com/p/django-komodo-kit/ > > Maybe it's worth starting one for web2py too... > > > Richard &g

[web2py:34006] Re: 1.69.1 is OUT

2009-10-28 Thread rondevu
Woohoo .. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web2py@googlegroups.com To unsubscribe from this group, send email to web2py+unsubscr...@googlegrou

[web2py:34587] FYI Malware

2009-11-04 Thread rondevu
Strangely http://www.web2pyslices.com/ has been categorised as malware by my corporate fortigate firewall. Can't access it for now. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this

[web2py:34598] Re: FYI Malware

2009-11-04 Thread rondevu
then it jumps up again. > If you have any idea about what to do, please let me know. > > Mind that this is all good. The fact that competition is doing this is > normal and inevitable. It means they seriously see their market shares > being threatened. > > Massimo

[web2py:34916] Re: Change layout from controller

2009-11-08 Thread rondevu
I didn't know that you can't bytecode compile with your own layout. Isn't it a limitation if you want to use your own layout? What is the solution if you'd want to compile your app with a custom layout? Ranjeev On Nov 8, 5:53 am, mdipierro wrote: > You can do > > {{extend mylayout}} > > where

[web2py:34919] Re: Change layout from controller

2009-11-08 Thread rondevu
ntime. > > for example {{extend 'mylayout.html'}} you can bytecode > > {{extend x}} you cannot bytecode compile because x is undefined at > compile time. > > Massimo > > On Nov 8, 9:19 pm, rondevu wrote: > > > I didn't know that you can't b

[web2py:35419] Multiple requires IS_IN_DB dropdown filter

2009-11-15 Thread rondevu
I am trying to create a dropdown using SQLFORM.factory using requires=IS_IN_DB(db,'field_val','represented_by') validator. I need to create a dropdown containing selected rows only. Is it possible to filter the resulting dropdown list that is returned to i.e. the column record which only has the

[web2py:35426] Re: Multiple requires IS_IN_DB dropdown filter

2009-11-16 Thread rondevu
B(db(db.table.field.like > ('%.dat')),'field_val','represented_by') > > will not work on GAE > > On Nov 15, 10:28 pm, rondevu wrote: > > > I am trying to create a dropdown using SQLFORM.factory using > > requires=IS_IN_DB(db,'field_val

[web2py:35460] Re: Multiple requires IS_IN_DB dropdown filter

2009-11-16 Thread rondevu
le.field.like > ('%.dat')),'field_val','represented_by') > > On Nov 16, 3:44 am, rondevu wrote: > > > I'm getting this error. > > >   File "C:\web2py\gluon\validators.py", line 330, in build_set > >     if self.dbset._db._dbn

[web2py:38433] Best way to implement who's online in web2py

2010-01-06 Thread rondevu
Should I have each user's session routinely log a timestamp with userid into a seperate db? or is auth.event useful for that? -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to web...@googlegroups.com. To unsubs

[web2py] Re: Share some wisdom

2010-01-11 Thread rondevu
Thadeus, thanks for asking these questions! I am loving the answers here. And, to all who answered here, many more thanks for the advices. Replies on this thread is really useful for a programming newbies like me and creates a good direction for organised work. Would love to hear more. On Jan 12