[web2py] Re: Float field error when using wizard

2010-12-10 Thread Luther Goh Lu Feng
Yes thanks, it has been fixed. On Dec 11, 6:17 am, mdipierro wrote: > I think it is fixed now in trunk, please check. > > Massimo > > On Dec 10, 2:15 pm, Luther Goh Lu Feng wrote: > > > > > > > > > I am running the nightly build. I am using sqlite. When creating > > fields in step 3 of the wizar

[web2py] having trouble with python to json to javascript parameters

2010-12-10 Thread dmm99
Background: - javascript routine for drawing hierarchical trees (from jit) - init routine takes data as a json object that works, like this: var tabl = {"children": [{"children": [{"id": "node24", "name": "2.4"}], "id": "node13", "name": "1.3"}], "id": "node02", "name": "0.2"} window.onload=functi

[web2py] Cached View in Development?

2010-12-10 Thread Enchanted
Hi all, I am developing using web2py under Eclipse, Pydev (GAE projects) in Windows. I find that whenever I changed code in controllers or models file, I can get immediate effect. However if I try to change code in all views (html file), I have to restart the dev_appserver.py to see the effect. D

[web2py] Re: doc not showing properly in firefox

2010-12-10 Thread weheh
In case this wasn't obvious, by doc, I mean the web2py online documentation at web2py.com/book. On Dec 10, 11:54 pm, weheh wrote: > Anybody having trouble with not being able to read doc in Firefox? > Looks OK in Chrome, but Firebug in Firefox throws error: > "NetworkError: 404 Not Found > -http

[web2py] how to implement multi-select list with presets?

2010-12-10 Thread weheh
I'm trying to make an ajax-ed multi-select widget, but I'm having a brain fart and need some help. My model is something like this: #model db.define_table('member',Field('groups','list:string')) db.define_table('group',Field('name')) #controller ... db.member.groups.requires=IS_IN_DB(db,'group.id

[web2py] Re: how to generate database dumps with DAL

2010-12-10 Thread Richard
Thanks Massimo. My understanding is those functions are for importing a CSV file into the database, or dumping the database into a CSV file. However I am trying to avoid writing to the database because I want to generate dumps for databases I don't have installed, such as Oracle and MSSQL. Also I

[web2py] doc not showing properly in firefox

2010-12-10 Thread weheh
Anybody having trouble with not being able to read doc in Firefox? Looks OK in Chrome, but Firebug in Firefox throws error: "NetworkError: 404 Not Found - http://web2py.com/book/static/plugin_wiki/ui/redmond/jquery-ui-1.8.1.custom.css"; when trying to access doc index page.

[web2py] Re: new dal

2010-12-10 Thread Brian M
Thanks Massimo, executesql() seems to be working well now for SQLite & MS SQL

[web2py] Re: SEO Tips & How this can be applied in web2py apps?

2010-12-10 Thread GoldenTiger
I have a Firefox PageRank toolbar, so I remember the pagerank for my most visited websites. However, the shown pagerank is outdated (a few months), and it is not very accurate. Urltrends displays old recorded stats, when someone checked it time ago. http://www.urltrends.com/viewtrend.php?url=http%

[web2py] Re: it case you missed it...

2010-12-10 Thread pbreit
Did I read correctly that you might evaluate Web2py's license? It does seem like GPL could potentially discourage usage since it makes the code harder to modify. That might be why very few frameworks are GPL: http://en.wikipedia.org/wiki/Comparison_of_web_application_frameworks

Re: [web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread Bruno Rocha
Thank you! 2010/12/10 Thadeus Burgess > Just make sure to include an '__init__.py' in your plugin_datatable > folder Then you can have file named whatever you want and import as > > /modules/plugin_datatable/ >__init__.py >

Re: [web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread Thadeus Burgess
Just make sure to include an '__init__.py' in your plugin_datatable folder Then you can have file named whatever you want and import as /modules/plugin_datatable/ __init__.py util.py

Re: [web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread Bruno Rocha
Sorry, the correct is: /modules/plugin_datatable/ plugin_datatablex.py plugin_datatabley.py ... then I will import this modules at /models/plugin_datatable.py local_import

Re: [web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread Bruno Rocha
No Problem. I'll put aditional functions in /modules/plugin_datatablex.py plugin_datatabley.py etc.. and them import this at my model in models/plugin_datatable.py ok? 2010/12/10 mdipierro > I am not sure this is intended. This may create problems for > compilation. Moreover I was planning to

[web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread mdipierro
I am not sure this is intended. This may create problems for compilation. Moreover I was planning to reserve this syntax (subfolder in models) for models that should be executed conditionally. If it works good but do not rely on it. Massimo On Dec 10, 6:21 pm, Thadeus Burgess wrote: > It will w

Re: [web2py] Re: how to generate database dumps with DAL

2010-12-10 Thread Thadeus Burgess
db.export_to_csv_file will only contain the raw data, it will not include any of the database specific things (such as indexies, mysql/postgres users, stored procedures, sequence stores, etc...) -- Thadeus On Fri, Dec 10, 2010 at 5:24 PM, mdipierro wrote: > if you do > > > db.export_to_csv_

Re: [web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread Thadeus Burgess
It will work within a subfolder (I have done it) unless things have changed it will work just fine (and still execute in alphabhetical order) 1 a_settings.py b(folder) -> 2 -> a.py 3 -> c.py 4 -> d.py 5 c.py It should execute correctly in the above order -- Thadeus On Fri, Dec 10, 2010

[web2py] Re: More than one model/controller file for plugins.

2010-12-10 Thread mdipierro
No. Sorry. The problem is that the more complex we make this the slower it gets. On Dec 10, 6:03 pm, Bruno Rocha wrote: > Hi, > > regarding the creation of plugins, > can I have more than one file in /models or /controllers for each plugin? > > I tried: > /models/ > plugin_datatable.py > plugin_d

[web2py] More than one model/controller file for plugins.

2010-12-10 Thread Bruno Rocha
Hi, regarding the creation of plugins, can I have more than one file in /models or /controllers for each plugin? I tried: /models/ plugin_datatable.py plugin_datatable.secondmodel.py plugin_datatable.thirdmodel.py Also in /controllers But web2py does not execute the files named in this way plug

[web2py] Re: how to generate database dumps with DAL

2010-12-10 Thread mdipierro
if you do db.export_to_csv_file(open('myfile.csv','wb')) you get a csv dump of the db and you do db.import_from_csv_file(open('myfile.csv','rb')) you get a restore. The myfile.csv is a csv file and it is not specific of one db engine. Massimo On Dec 10, 4:38 pm, Richard wrote: > I have a

[web2py] how to generate database dumps with DAL

2010-12-10 Thread Richard
I have a CSV file and want to generate dumps of the data for sqlite, mysql, postgres, etc. My current workflow is to insert the data in each database and then use mysqldump, etc to generate the dump files. I read that the DAL is now a standalone module - great! Is it possible to use the DAL to p

[web2py] Re: SEO Tips & How this can be applied in web2py apps?

2010-12-10 Thread mdipierro
where do you see this? > Maybe, that's the reason of recent decrease of web2py.com's pagerank > from 6 to 4. On Dec 10, 3:17 pm, GoldenTiger wrote: > I am thinking about it too. > > Concerning Pagerank, the 301 redirection it is important for web2py > domains. > > Google seehttp://web2py.comandht

Re: [web2py] grid

2010-12-10 Thread Bruno Rocha
in my TODO: plugin.datatable.fixed = ['header','column'] I'll try to release it for testing today, and put it to bitbucket. 2010/12/10 Richard Vézina > It have a fixed column feature : > > http://www.datatables.net/release-datatables/extras/FixedColumns/index.html > > >

[web2py] Re: Logging of impersonation events

2010-12-10 Thread mdipierro
I added the log. Can you please check it? On Dec 8, 1:12 am, Markus Schmitz wrote: > Hi everybody, > > I am working on a new site, where we also plan to use the > impersonation feature for support purposes, which is very helpful. > The impersonation works perfectly, but it looks like there is no

[web2py] Re: Float field error when using wizard

2010-12-10 Thread mdipierro
I think it is fixed now in trunk, please check. Massimo On Dec 10, 2:15 pm, Luther Goh Lu Feng wrote: > I am running the nightly build. I am using sqlite. When creating > fields in step 3 of the wizard, entering "amount float" results in the > following error: > > == > Tr

Re: [web2py] grid

2010-12-10 Thread Richard Vézina
It have a fixed column feature : http://www.datatables.net/release-datatables/extras/FixedColumns/index.html Great! Richard On Fri, Dec 10, 2010 at 5:08 PM, Richard Vézina wrote: > What's about fixed column with Dat

Re: [web2py] grid

2010-12-10 Thread Richard Vézina
What's about fixed column with DataTables or other grid plugin? My table are very large... I can't remeber if jqgrid where exposing a lateral scroll bar when width is fixed. Regards Richard On Fri, Dec 10, 2010 at 3:58 PM, Thadeus Burgess wrote: > I really enjoy working with DataTables. It is

Re: [web2py] grid

2010-12-10 Thread Richard Vézina
Can help test! Just ask. Richard On Fri, Dec 10, 2010 at 4:20 PM, Bruno Rocha wrote: > 2010/12/10 Thadeus Burgess > > I really enjoy working with DataTables. It is easy to use and extremely >> configurable! >> >> Not only that, but it can load results from any JSON request, so you can >> hand

[web2py] Re: SEO Tips & How this can be applied in web2py apps?

2010-12-10 Thread GoldenTiger
I am thinking about it too. Concerning Pagerank, the 301 redirection it is important for web2py domains. Google see http://web2py.com and http://www.web2py.com as different domains. Maybe, that's the reason of recent decrease of web2py.com's pagerank from 6 to 4. Helpful links about this: Prefe

Re: [web2py] Re: it case you missed it...

2010-12-10 Thread Bruno Rocha
latinux is using this in production: http://pressroom.latinux.com/ 2010/12/10 Bruno Rocha > > > 2010/12/10 pbreit > > Is there a decent Web2py-based blogging appliance? > > > Instant Press! instant2press.com > > > >> It would be great to have some good implementations of some core apps like >>

Re: [web2py] Web2py Application Exhibition and Samsung Galaxy Tab p1000

2010-12-10 Thread Mr admin
Bruno, Yes the plugin will be eligible, and as far as finishing the app... all good programs change and evolve over time, so they're never REALLY ever finished right? They just get a version bump :-) Good Luck! Mr.NetAdmin On Fri, Dec 10, 2010 at 3:00 PM, Bruno Rocha wrote: > If I can fini

Re: [web2py] Re: it case you missed it...

2010-12-10 Thread Bruno Rocha
2010/12/10 pbreit > Is there a decent Web2py-based blogging appliance? Instant Press! instant2press.com > It would be great to have some good implementations of some core apps like > blog, forums, CRM, etc. -- Bruno Rocha http://about.me/rochacbruno/bio

Re: [web2py] Web2py Application Exhibition and Samsung Galaxy Tab p1000

2010-12-10 Thread Bruno Rocha
If I can finish my new open source app until the deadline I will send. I am also writing a new plugin dor datatables.net, is this elegible? 2010/12/10 NetAdmin > > Hello All, > > *IF* I were eligible to win the Web2py Application Exhibition, I'd > totally use > the winnings as a down-payment on

[web2py] Re: it case you missed it...

2010-12-10 Thread pbreit
Is there a decent Web2py-based blogging appliance? It would be great to have some good implementations of some core apps like blog, forums, CRM, etc.

Re: [web2py] grid

2010-12-10 Thread Thadeus Burgess
I really enjoy working with DataTables. It is easy to use and extremely configurable! Not only that, but it can load results from any JSON request, so you can handle filtering, ordering, and pagination in your queries on the server. -- Thadeus On Fri, Dec 10, 2010 at 9:43 AM, Richard Vézina

[web2py] Web2py Application Exhibition and Samsung Galaxy Tab p1000

2010-12-10 Thread NetAdmin
Hello All, *IF* I were eligible to win the Web2py Application Exhibition, I'd totally use the winnings as a down-payment on a Samsung Galaxy Tab! The deadline for submissions for the Web2py Application Exhibition is December 15th 2010 You can start submitting and voting for the entries for

[web2py] Float field error when using wizard

2010-12-10 Thread Luther Goh Lu Feng
I am running the nightly build. I am using sqlite. When creating fields in step 3 of the wizard, entering "amount float" results in the following error: == Traceback (most recent call last): File "/Users/elfgoh/Projects/mustardjuice/web2py/gluon/ restricted.py", line 188,

[web2py] XML service

2010-12-10 Thread villas
If I make a function with named fields, e.g. def cargroup(): carlist = db(db.cargroup).select('descr','seats',orderby="descr").as_list() return dict(carlist=carlist) Then call it with .xml extension, I get an <_extra> tag element for each row, e.g.: <_extra>Chevrolet Matiz3 Why do we

[web2py] upload files in specific sub-folders

2010-12-10 Thread Carlos
Hi, Is there any way to upload files in specific sub-folders?. I have multiple organizations and I have a requirement to upload all files to the respective organization sub-folder. Thanks, Carlos

[web2py] Re: What's the preferred way to clean up the URLs?

2010-12-10 Thread Wikus van de Merwe
Put following rules into your routes.py to get exactly what you described: routes_in = ( ("/", "/myapp/default/index"), ("/([a-z0-9]+)/?", r"/myapp/default/\1"), ("/(.*)", r"/myapp/\1") ) routes_out = ( ("/myapp/default/index", "/"), ("/myapp/default/(.*)", "r/\1"), ("/myapp/(.*)", r"/\1") ) Noti

[web2py] Re: new dal

2010-12-10 Thread mart
apologies, I may have posted this in the wrong thread. Reposting, just in case: when I made the switch, this (just below) was working great. With the latest code it doesn't. I was able to switch my import statements "from blablabla.sql import DAL" to "from blablabla.dal import DAL". Has the syn

[web2py] Re: needs more new dal testers

2010-12-10 Thread mart
when I made the switch, this (just below) was working great. With the latest code it doesn't. I was able to switch my import statements "from blablabla.sql import DAL" to "from blablabla.dal import DAL". Has the syntax changed? Thanks, Mart :) tbl = tableParam for mTbl in db.tab

[web2py] Re: Logging of impersonation events

2010-12-10 Thread Markus Schmitz
Hi Massimo, excellent and appreciated. We stumble forward in our quest for the perfect web2py application. Thanks Markus On Dec 8, 9:16 am, mdipierro wrote: > I will add logging. > > Mind that it has pointed out that impersonate/0 presents a mild > security risk. We have already changed the im

Re: [web2py] grid

2010-12-10 Thread Richard Vézina
Here other links fruit of my search for a fixed header and left column jQuery plugin : http://cross-browser.com/x/lib/view.php?s=xlibrary Other library like jQuery (as far as I understand) seems very rich GPL http://johnsobrepena.blogspot.com/se

[web2py] Re: in link i will post a string

2010-12-10 Thread mdipierro
you can make it shorter with var button = "Anmelden"; console.log(button); $.ajax({ url: "{{=URL('user')}}",button: button }); but are you sure you want to call the 'user' action? On Dec 10, 7:49 am, pk wrote: > my js: > var button = "Anmelden"; >             console.lo

[web2py] Re: how to do content negotiation with web2py

2010-12-10 Thread mdipierro
Actually this is done automatically. if you call http://.../index.html web2py will use view index.html if you call http://.../index.xml web2py will use view index.xml etc. Anyway, programmatically you have access to request.extension == 'xml' and request.env which contains the http header + w

[web2py] Re: it case you missed it...

2010-12-10 Thread mdipierro
You are right. turning it into a "new web2py blog" has been on my todo list. On Dec 10, 7:23 am, Albert Abril wrote: > Agree too, 'old web2py blog' and the 'flash' informing that the info could > be oudated... > ..If we're linking to the new DAL, recently wrote. :D > > Hopefully this is construct

[web2py] Re: Trying to test DAL vs. CouchDB but still getting errors ...

2010-12-10 Thread mdipierro
I do not think you have the latest dal.py. Please download a clean new one. On Dec 10, 1:25 am, David Marko wrote: > I'm running latest trunk version of web2py and trying using DAL with > CouchDB. I'm still getting following error. > > Traceback (most recent call last): > File "c:\java\web2py\gl

[web2py] Re: needs more new dal testers

2010-12-10 Thread mdipierro
On Dec 9, 11:49 pm, Michael McGinnis wrote: > I could run 1.89.5 (2010-11-21 22:12:54) > with ./jython web2py/web2py.py (no cron because no file locking, > though) just fine onhttp://127.0.0.1:8000/admin/default/site > though I got errors on several other apps > includinghttp://127.0.0.1:8000/w

[web2py] how to do content negotiation with web2py

2010-12-10 Thread selecta
how to do content negotiation with web2py? something like def myfkt(): if reques.header ??? xml: redirect(URL(r=request, f="myfkt.xml", vars=request.vars, args=request.args))

[web2py] jquery UI Widgets: wijmo

2010-12-10 Thread Massimiliano
Looks interesting http://wijmo.com/ -- Massimiliano

[web2py] Re: in link i will post a string

2010-12-10 Thread pk
my js: var button = "Anmelden"; console.log(button); $.ajax({ url: "{{=URL(r=request,c='default',f='user')}}", button: button }); my default-controller: return(request.vars.button) but why is the return value: none ?? thanks

Re: [web2py] Re: it case you missed it...

2010-12-10 Thread Albert Abril
Agree too, 'old web2py blog' and the 'flash' informing that the info could be oudated... ..If we're linking to the new DAL, recently wrote. :D Hopefully this is constructive criticism too ;) On Fri, Dec 10, 2010 at 9:24 AM, Bruno Rocha wrote: > ego should wear the same layout as web2py main sit

[web2py] in link i will post a string

2010-12-10 Thread pk
Hi together, i think it is a very small problem. i need a stringvariable that i post to the function user in my default controller when the user is clicking this link: string = 'Anmelden' Anmelden how can i do this? and how can i catch the string in the controller like this? def user(): m

[web2py] Re: how to use GAE deferred

2010-12-10 Thread Richard
thanks - just what I wanted

[web2py] Re: Help with Database

2010-12-10 Thread CesarBustios
Thanks! :) On Dec 10, 4:36 am, Kenneth Lundström wrote: > http://web2py.com/book/default/chapter/06?search=csv#Exporting-and-Im... > > Kenneth > > > > > > > > > Thaks Kenneth, do you know where can i find some examples or > > documentation about this? > > > On Dec 10, 4:16 am, Kenneth Lundstr m >

Re: [web2py] Re: Help with Database

2010-12-10 Thread Kenneth Lundström
http://web2py.com/book/default/chapter/06?search=csv#Exporting-and-Importing-Data Kenneth Thaks Kenneth, do you know where can i find some examples or documentation about this? On Dec 10, 4:16 am, Kenneth Lundström wrote: One way of doing this is to export all data while connected to Postgre

[web2py] Re: Help with Database

2010-12-10 Thread CesarBustios
Thaks Kenneth, do you know where can i find some examples or documentation about this? On Dec 10, 4:16 am, Kenneth Lundström wrote: > One way of doing this is to export all data while connected to Postgres > and then import to MySQL. And doing the import and export via web2py. > > Kenneth > > > >

Re: [web2py] Help with Database

2010-12-10 Thread Kenneth Lundström
One way of doing this is to export all data while connected to Postgres and then import to MySQL. And doing the import and export via web2py. Kenneth Hi, i wanto to know if there is a way to change from Postgres to MySQL and keep all the information in the db. How can i do that? Thanks a lot

[web2py] Help with Database

2010-12-10 Thread CesarBustios
Hi, i wanto to know if there is a way to change from Postgres to MySQL and keep all the information in the db. How can i do that? Thanks a lot! Cesar B.

Re: [web2py] Re: it case you missed it...

2010-12-10 Thread Bruno Rocha
> The new DAL looks fantastic Massimo. > > So that people don't get the wrong impression though: It's a bit > disconcerting to click the initial link in the Reddit article about 'brand > new DAL' and then get a very large title saying 'Old web2py blog' and > response flash saying 'Some info may be

Re: [web2py] Re: it case you missed it...

2010-12-10 Thread Tom Atkins
The new DAL looks fantastic Massimo. So that people don't get the wrong impression though: It's a bit disconcerting to click the initial link in the Reddit article about 'brand new DAL' and then get a very large title saying 'Old web2py blog' and response flash saying 'Some info may be out of date