[web2py] Re: ImportError with packages in site-packages.

2018-03-29 Thread AlighaThor
And yes...I restarted the server several times without any effect. The same 
ImportError excepction.

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: ImportError with packages in site-packages.

2018-03-29 Thread AlighaThor
Hi. Thanks for anwser. Well, I was trying to import "requests" in 
PythonAnywhere. I found that they have it pre-installed (I did'nt know). 
So, problem solved by now. I could'nt import the standalone request package 
inside site-packages or the app specific "modules" directory neither.

El jueves, 29 de marzo de 2018, 13:39:16 (UTC-5), Leonel Câmara escribió:
>
> The application's modules folder is the last place the importer looks 
> that's why you get the error there. Have you restarted web2py after putting 
> requests in the site-packages folder? 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How could I create a validator to show the field based on the membership?

2018-03-29 Thread 黄祥
*pls try (not tested)*
has_membership_admin = 'Admin' in set(auth.user_groups.values() )
db.table.field.readable = has_membership_admin
or 
has_membership_admin = 'Admin' in set(auth.user_groups.values() )
db.table.field.show_if = has_membership_admin

best regards,
stifan

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] How could I create a validator to show the field based on the membership?

2018-03-29 Thread greenpoise
Is it possible to create a validator (in this case readable) only if the 
user belongs to a specific membership??

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] on delete event callbacks and versioned tables

2018-03-29 Thread Richard Vézina
They are intent to be used to specify something before or after the
delete... I mean even if there is no "pure" deletion occuring your record
doesn't exist anymore for the end user once you "deleted" it even if
versioning mechanism keep trace of it for the purpose of the audit trail
integrity...

Do you have any issue related to how those callbacks operate in context of
the version table web2py functionality?

Richard

On Thu, Mar 29, 2018 at 10:55 AM, Manuele Pesenti  wrote:

>
> Are actually _before_delete and _after_delete callbacks called on record
> delete event even if on versioned tables?
>
> I mean on versioned tables records are just updated from is_active True to
> False and not really deleted... right? So what is in thees cases the called
> list of callback function?
>
> Thak you very mutch
>
> Cheers
>
> Manuele
>
> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> --- You received this message because you are subscribed to the Google
> Groups "web2py-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread Greenpoise
sorry if you copied and pasted my solution, it had a typo. This worked for 
me:

db.define_table('table1',
  Field('field_1'),
  format='%(field_1)s')

db.define_table('table2',
  Field('field_1', 'reference table1'),
  Field('field_2', 'string'),
  format='%(field_1)s')
db.table2.field_1.requires = IS_IN_DB(db,db.table1.field_1,'%(field_1)s')



On Thursday, March 29, 2018 at 10:56:14 AM UTC-7, LoveWeb2py wrote:
>
> Thank you so much for your help.
>
> db.table2.field_1.requires = IS_IN_DB 
> (db,db.table_1.
> field_1,'%(field_1)s')
> rows = db(db.table1).select()
>
> rows shows db.table1 = 1 and not 'some_value'
>
> Unfortuantely still does not work. I am running pyDal on its own and when 
> I try to query the run 
>
> On Thursday, March 29, 2018 at 12:50:45 PM UTC-4, Greenpoise wrote:
>>
>> Like this, in the model:
>> db.define_table('table1',
>>   Field('field_1'),
>>   format='%(field_1)s')
>>
>> db.define_table('table2',
>>   Field('field_1', 'reference table1'),
>>   Field('field_2', 'string),
>>   format='%(field_1)s')
>> db.table2.field_1.requires = IS_IN_DB 
>> (db,db.
>> table_1.field_1,'%(field_1)s')
>>
>>
>>
>>
>>
>> On Thursday, March 29, 2018 at 9:29:35 AM UTC-7, LoveWeb2py wrote:
>>>
>>> Do I define that in the model.py file? Can I do it before the query? 
>>>
>>> On Thursday, March 29, 2018 at 12:28:02 PM UTC-4, Greenpoise wrote:

 db.table2.field_1.requires = IS_IN_DB 
 (db,db.table_1.field_1,'%(field_1)s')


 On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:
>
>
> How can I select a foreign key and represent the value? I want to 
> represent the entire group and now have to do individual queries for each 
> foreign key. Is that possible?
>
> db.define_table('table1',
>Field('field_1'),
>format='%(field_1)s')
>
> db.define_table('table2',
>Field('field_1', 'reference table1'),
>Field('field_2', 'string),
>format='%(field_1)s')
>
> So in this example I would do data = db(db.table1).select() which 
> returns a rows object. But the reference table1 returns an integer 
> instead 
> of the actual value stored in the field.
>
> How could I retrieve the value instead of the integer and is it 
> possible to do it in bulk? 
>


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: ImportError with packages in site-packages.

2018-03-29 Thread Leonel Câmara
The application's modules folder is the last place the importer looks 
that's why you get the error there. Have you restarted web2py after putting 
requests in the site-packages folder? 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread LoveWeb2py
I found that by adding 

db.table2.field_1.represent = lambda id, row: db.table1(row.field_1).field_1
db(db.table1).select().render()

It accomplishes the task. Thank you so much!
On Thursday, March 29, 2018 at 1:56:14 PM UTC-4, LoveWeb2py wrote:
>
> Thank you so much for your help.
>
> db.table2.field_1.requires = IS_IN_DB 
> (db,db.table_1.
> field_1,'%(field_1)s')
> rows = db(db.table1).select()
>
> rows shows db.table1 = 1 and not 'some_value'
>
> Unfortuantely still does not work. I am running pyDal on its own and when 
> I try to query the run 
>
> On Thursday, March 29, 2018 at 12:50:45 PM UTC-4, Greenpoise wrote:
>>
>> Like this, in the model:
>> db.define_table('table1',
>>   Field('field_1'),
>>   format='%(field_1)s')
>>
>> db.define_table('table2',
>>   Field('field_1', 'reference table1'),
>>   Field('field_2', 'string),
>>   format='%(field_1)s')
>> db.table2.field_1.requires = IS_IN_DB 
>> (db,db.
>> table_1.field_1,'%(field_1)s')
>>
>>
>>
>>
>>
>> On Thursday, March 29, 2018 at 9:29:35 AM UTC-7, LoveWeb2py wrote:
>>>
>>> Do I define that in the model.py file? Can I do it before the query? 
>>>
>>> On Thursday, March 29, 2018 at 12:28:02 PM UTC-4, Greenpoise wrote:

 db.table2.field_1.requires = IS_IN_DB 
 (db,db.table_1.field_1,'%(field_1)s')


 On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:
>
>
> How can I select a foreign key and represent the value? I want to 
> represent the entire group and now have to do individual queries for each 
> foreign key. Is that possible?
>
> db.define_table('table1',
>Field('field_1'),
>format='%(field_1)s')
>
> db.define_table('table2',
>Field('field_1', 'reference table1'),
>Field('field_2', 'string),
>format='%(field_1)s')
>
> So in this example I would do data = db(db.table1).select() which 
> returns a rows object. But the reference table1 returns an integer 
> instead 
> of the actual value stored in the field.
>
> How could I retrieve the value instead of the integer and is it 
> possible to do it in bulk? 
>


-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread LoveWeb2py
Thank you so much for your help.

db.table2.field_1.requires = IS_IN_DB 
(db,db.table_1.field_1,
'%(field_1)s')
rows = db(db.table1).select()

rows shows db.table1 = 1 and not 'some_value'

Unfortuantely still does not work. I am running pyDal on its own and when I 
try to query the run 

On Thursday, March 29, 2018 at 12:50:45 PM UTC-4, Greenpoise wrote:
>
> Like this, in the model:
> db.define_table('table1',
>   Field('field_1'),
>   format='%(field_1)s')
>
> db.define_table('table2',
>   Field('field_1', 'reference table1'),
>   Field('field_2', 'string),
>   format='%(field_1)s')
> db.table2.field_1.requires = IS_IN_DB 
> (db,db.
> table_1.field_1,'%(field_1)s')
>
>
>
>
>
> On Thursday, March 29, 2018 at 9:29:35 AM UTC-7, LoveWeb2py wrote:
>>
>> Do I define that in the model.py file? Can I do it before the query? 
>>
>> On Thursday, March 29, 2018 at 12:28:02 PM UTC-4, Greenpoise wrote:
>>>
>>> db.table2.field_1.requires = IS_IN_DB 
>>> (db,db.table_1.field_1,'%(field_1)s')
>>>
>>>
>>> On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:


 How can I select a foreign key and represent the value? I want to 
 represent the entire group and now have to do individual queries for each 
 foreign key. Is that possible?

 db.define_table('table1',
Field('field_1'),
format='%(field_1)s')

 db.define_table('table2',
Field('field_1', 'reference table1'),
Field('field_2', 'string),
format='%(field_1)s')

 So in this example I would do data = db(db.table1).select() which 
 returns a rows object. But the reference table1 returns an integer instead 
 of the actual value stored in the field.

 How could I retrieve the value instead of the integer and is it 
 possible to do it in bulk? 

>>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread Greenpoise
Like this, in the model:
db.define_table('table1',
  Field('field_1'),
  format='%(field_1)s')

db.define_table('table2',
  Field('field_1', 'reference table1'),
  Field('field_2', 'string),
  format='%(field_1)s')
db.table2.field_1.requires = IS_IN_DB 
(db,db.table_1.field_1,
'%(field_1)s')





On Thursday, March 29, 2018 at 9:29:35 AM UTC-7, LoveWeb2py wrote:
>
> Do I define that in the model.py file? Can I do it before the query? 
>
> On Thursday, March 29, 2018 at 12:28:02 PM UTC-4, Greenpoise wrote:
>>
>> db.table2.field_1.requires = IS_IN_DB 
>> (db,db.table_1.field_1,'%(field_1)s')
>>
>>
>> On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:
>>>
>>>
>>> How can I select a foreign key and represent the value? I want to 
>>> represent the entire group and now have to do individual queries for each 
>>> foreign key. Is that possible?
>>>
>>> db.define_table('table1',
>>>Field('field_1'),
>>>format='%(field_1)s')
>>>
>>> db.define_table('table2',
>>>Field('field_1', 'reference table1'),
>>>Field('field_2', 'string),
>>>format='%(field_1)s')
>>>
>>> So in this example I would do data = db(db.table1).select() which 
>>> returns a rows object. But the reference table1 returns an integer instead 
>>> of the actual value stored in the field.
>>>
>>> How could I retrieve the value instead of the integer and is it possible 
>>> to do it in bulk? 
>>>
>>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread Greenpoise


db.table2.field_1.requires = IS_IN_DB 
(db,db.table_1.field_1,'%(field_1)s')


On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:
>
>
> How can I select a foreign key and represent the value? I want to 
> represent the entire group and now have to do individual queries for each 
> foreign key. Is that possible?
>
> db.define_table('table1',
>Field('field_1'),
>format='%(field_1)s')
>
> db.define_table('table2',
>Field('field_1', 'reference table1'),
>Field('field_2', 'string),
>format='%(field_1)s')
>
> So in this example I would do data = db(db.table1).select() which returns 
> a rows object. But the reference table1 returns an integer instead of the 
> actual value stored in the field.
>
> How could I retrieve the value instead of the integer and is it possible 
> to do it in bulk? 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] Re: How to select a table and represent the foreign key values

2018-03-29 Thread LoveWeb2py
Do I define that in the model.py file? Can I do it before the query? 

On Thursday, March 29, 2018 at 12:28:02 PM UTC-4, Greenpoise wrote:
>
> db.table2.field_1.requires = IS_IN_DB 
> (db,db.table_1.field_1,'%(field_1)s')
>
>
> On Thursday, March 29, 2018 at 9:20:34 AM UTC-7, LoveWeb2py wrote:
>>
>>
>> How can I select a foreign key and represent the value? I want to 
>> represent the entire group and now have to do individual queries for each 
>> foreign key. Is that possible?
>>
>> db.define_table('table1',
>>Field('field_1'),
>>format='%(field_1)s')
>>
>> db.define_table('table2',
>>Field('field_1', 'reference table1'),
>>Field('field_2', 'string),
>>format='%(field_1)s')
>>
>> So in this example I would do data = db(db.table1).select() which returns 
>> a rows object. But the reference table1 returns an integer instead of the 
>> actual value stored in the field.
>>
>> How could I retrieve the value instead of the integer and is it possible 
>> to do it in bulk? 
>>
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] How to select a table and represent the foreign key values

2018-03-29 Thread LoveWeb2py

How can I select a foreign key and represent the value? I want to represent 
the entire group and now have to do individual queries for each foreign 
key. Is that possible?

db.define_table('table1',
   Field('field_1'),
   format='%(field_1)s')

db.define_table('table2',
   Field('field_1', 'reference table1'),
   Field('field_2', 'string),
   format='%(field_1)s')

So in this example I would do data = db(db.table1).select() which returns a 
rows object. But the reference table1 returns an integer instead of the 
actual value stored in the field.

How could I retrieve the value instead of the integer and is it possible to 
do it in bulk? 

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] ImportError with packages in site-packages.

2018-03-29 Thread AlighaThor
Hi! I'm stuck importing packages within site-packages (the web2py one). I'm 
trying to import the Request library:




Ticket ID

127.0.0.1.2018-03-29.10-43-13.c356e4d3-44b6-4b74-a896-d0da7de9d0b1
 (ImportError("Cannot import module 
'applications.myapp.modules.requests'",), )Versión
web2py™ Version 2.16.1-stable+timestamp.2017.11.13.23.50.07
Python Python 2.7.12: 
/home/alighathor/Documentos/python-virtual-envs/web2py/bin/python2.7 
(prefix: /home/alighathor/Documentos/python-virtual-envs/web2py)Rastreo

1.
2.
3.
4.
5.
6.
7.
8.
9.

Traceback (most recent call last):
  File 
"/home/alighathor/Documentos/Desarrollo/web2py/web2py/gluon/restricted.py", 
line 219, in restricted
exec(ccode, environment)
  File 
"/home/alighathor/Documentos/Desarrollo/web2py/web2py/applications/myapp/controllers/default.py"
 , 
line 7, in 
import requests
  File 
"/home/alighathor/Documentos/Desarrollo/web2py/web2py/gluon/custom_import.py", 
line 104, in custom_importer
raise ImportError(e1, import_tb)  # there an import error in the module
ImportError: (ImportError("Cannot import module 
'applications.myapp.modules.requests'",), )


I don't get why is telling me is trying to import from 
*applications.myapp.modules.requests*, when the package is not even there.

Thanks!



-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


[web2py] on delete event callbacks and versioned tables

2018-03-29 Thread Manuele Pesenti


Are actually _before_delete and _after_delete callbacks called on record 
delete event even if on versioned tables?


I mean on versioned tables records are just updated from is_active True 
to False and not really deleted... right? So what is in thees cases the 
called list of callback function?


Thak you very mutch

Cheers

    Manuele

--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups "web2py-users" group.

To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [web2py] btn-default

2018-03-29 Thread andfae
Ok...now there is web2py-bootstrap4 in the last version. But, doesn't
matter, here I cannot modify nothing because thisi is a jquery instruction
to addClass. This is not the definition of the class itself.


2018-03-28 21:01 GMT+02:00 Dave S :

>
>
> On Wednesday, March 28, 2018 at 11:43:00 AM UTC-7, Andrea Fae' wrote:
>>
>> Yes...I know this, but in web2py application I need to change the style.
>> Where is the definition of this class in the files css? Inside the web
>> application I mean...
>>
>>
> grep btn-default */static/js/*.js tells me it is the app's static
> folder.  For instance:
>
> welcome/static/js/web2py-bootstrap3.js:$('form
> input[type="submit"]:not([class^="btn"]), form 
> input[type="button"]:not([class^="btn"])',
> target).addClass('btn btn-default');
>
>  /dps
>
>
>> Il giorno mercoledì 28 marzo 2018 16:50:15 UTC+2, Richard ha scritto:
>>>
>>> Bootstrap : https://getbootstrap.com/
>>>
>>> On Tue, Mar 27, 2018 at 4:02 PM, Andrea Fae'  wrote:
>>>
 Where is the definition btn-default in any welcome clone application? I
 need to change the style...thanks

 --
 Resources:
 - http://web2py.com
 - http://web2py.com/book (Documentation)
 - http://github.com/web2py/web2py (Source code)
 - https://code.google.com/p/web2py/issues/list (Report Issues)
 ---
 You received this message because you are subscribed to the Google
 Groups "web2py-users" group.
 To unsubscribe from this group and stop receiving emails from it, send
 an email to web2py+un...@googlegroups.com.
 For more options, visit https://groups.google.com/d/optout.

>>>
>>> --
> Resources:
> - http://web2py.com
> - http://web2py.com/book (Documentation)
> - http://github.com/web2py/web2py (Source code)
> - https://code.google.com/p/web2py/issues/list (Report Issues)
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "web2py-users" group.
> To unsubscribe from this topic, visit https://groups.google.com/d/
> topic/web2py/wtxeZUsysLI/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> web2py+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.