[web2py] Re: web2py 2.0.2 is out

2012-09-06 Thread bapster
Today I downloaded 2.0.7 for Windows and am running it under Windows XP Professional, service pack 3. It seems to work fine, although I've only done very cursory testing. --

[web2py] Oracle connection string: Hiding password not working

2013-05-15 Thread bapster
*Running latest Version 2.4.6* When connecting to an Oracle database, I noticed that response.toolbar ("db tables" button) is not hiding the password in the connection string. *dal.py* REGEX_NOPASSWD = re.compile('(?<=\:)([^:@/]+)(?=@.+)') ... def hide_password(uri): return REGEX_NOPASSWD.sub

[web2py] define_table: deletable, editable, create

2013-05-15 Thread bapster
Similar to the deletable/editable/create arguments for grids, would it make sense to have those same arguments for table definitions: db.define_table(...) ? I have a use-case where several tables in my database need to be strictly read-only. Rather than worrying about setting applicable argumen

[web2py] Problem with smartgrid linked tables: 'Row' object has no attribute 'f_name'

2013-05-15 Thread bapster
*Running on latest web2py v2.4.6 from trunk (but also occurs in Version 2.4.6-stable+timestamp.2013.04.06.17.37.38).* When traversing linked tables with a smartgrid, the breadcrumbs code in sqlhtml.py is causing an error, due to a mixup of the table/record association. The problem is easily du

[web2py] Re: define_table: deletable, editable, create

2013-05-15 Thread bapster
It helps, but is not ideal. There are interesting side effects with that approach, like allowing the creation of a record where all field values are None, resulting in an error. -- --- You received this message because you are subscribed to the Google Groups "web2py-users" group. To unsubscr

[web2py] Re: Oracle connection string: Hiding password not working

2013-05-15 Thread bapster
Done. Issue #1492 -- --- 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/gr

[web2py] Re: Oracle connection string: Hiding password not working

2013-05-15 Thread bapster
It replaces the username and password both with the asterisks mask, which isn't quite what I expected, but it's fine with me. Before the fix: oracle://username/password@database After your fix (trunk): oracle:**@database Expected: oracle://username/**@database -- --- You recei