Re: [web2py] Re: OpenID, facebook, twitter, linkedin, etc etc

2010-07-18 Thread mat --
I got RPXAccount working now. I think I was using the wrong domain in my settings. Thanks. On Fri, Jul 16, 2010 at 5:25 PM, mr.freeze wrote: > Also, does this only happen with OpenID? > > On Jul 16, 9:22 am, "mr.freeze" wrote: > > OpenID works for me. Did you create your own profile mapping

[web2py] Re: web2py performance issue or rather my fault?

2010-07-18 Thread mdipierro
Last week I run some tests. I can confirm I have NO dropped requests on web2py.com running with the recommended configuration (apache +mod_wsgi 3.1). Here is the httpserver.log for 3 days of running (I removed the IPs from the logs and requests for static files served directly by apache). htt

[web2py] Issues with Forms

2010-07-18 Thread Tyler Laing
I've been struggling with forms all day. Here are the issues I've run into: 1) There is no way to manually insert the hidden form values with FORM. This should be an option, so people can customize the layout of their forms better. 2) We need an ability to say what fields to NOT use in the table w

[web2py] Re: Issues with Forms

2010-07-18 Thread mdipierro
On Jul 17, 9:41 pm, Tyler Laing wrote: > I've been struggling with forms all day. > > Here are the issues I've run into: > 1) There is no way to manually insert the hidden form values with > FORM. This should be an option, so people can customize the layout of > their forms better. form=FORM(..

[web2py] Re: cube2py news

2010-07-18 Thread mdipierro
thanks. In trunk! On Jul 17, 11:33 pm, Scott wrote: > Better late than never!  Here are a few cosmetic changes for the > Widget Builder page.  Please note that I've only included the lines to > be changed; the rest of the lines should remain as-is. > > Thanks! > > bar_chart: Uses Google charting

[web2py] Tiny doubt about a phrase from book.

2010-07-18 Thread GoldenTiger
At http://web2py.com/book/default/section/11/12 says: "No Google App Engine files are stored by default in the database without need to define an uploadfield, one is created by default." Maybe I don't understand english very well, but I don't know how to translate it. This phrase has no sense

[web2py] Re: Tiny doubt about a phrase from book.

2010-07-18 Thread mdipierro
This sentence makes no sense to me either. :-( It should have been: "On Google App Engine files are stored by default in the database without need to define an uploadfield, one is created by default." which means 1) On Google App Engine files are stored in the database. 2) You do not need to de

[web2py] download from trunk

2010-07-18 Thread dbb
Massimo, can not download from trunk, will you include me. Debebe

[web2py] Re: download from trunk

2010-07-18 Thread mdipierro
Sorry. I do not not understand. There is no restriction from downloading web2py trunk. On Jul 18, 7:56 am, dbb wrote: > Massimo, can not download from trunk, will you include me. Debebe

[web2py] Re: download from trunk

2010-07-18 Thread dbb
Thank you Massimo for your prompt response. May be the mistake on my part, I will try to correct it, now I am getting forbidden 403, this may be in .hgrc file my email and user id are not properly populated. Debebe On Jul 18, 9:29 am, mdipierro wrote: > Sorry. I do not not understand. There is no

[web2py] Re: jpgrid field names translation

2010-07-18 Thread sarsar
Hi again

[web2py] Re: jpgrid field names translation

2010-07-18 Thread sarsar
Hi again Trying to solve my problems with forms , i ve begun to use datatable plugin , and finally i got it working with my tables and data . Now i am trying to localise and change lenth and features of the results . -Can somebody help me to understand how i can intergrate with the T('name...

[web2py] Re: download from trunk

2010-07-18 Thread dbb
Massimo: what is the difference between web2py.googlecode.com/hg/web2py_src.zip and web2py.com/example/static/nightly/web2py_src.zip. Debebe On Jul 18, 9:29 am, mdipierro wrote: > Sorry. I do not not understand. There is no restriction from > downloading web2py trunk. > > On Jul 18, 7:56 am, dbb

[web2py] Re: Issues with Forms

2010-07-18 Thread Tyler Laing
I found the fields keyword, and used that to limit the new post form. For those searching the google groups archives for the answer to this: to make some fields not show with SQLFORM, use fields = []. Only those fields will be included and validated from the form. However, this creates incomplete

[web2py] Re: Response.Flash help me understand

2010-07-18 Thread Chris S
You know what I didn't even know about the optional keepvalues argument. However reading on it here's how I see that working out (I'll test to verify when I get a chance to code some more). Form loads, pre-populating check boxes based on current data in database. Submission is made Form is reset

[web2py] Re: Response.Flash help me understand

2010-07-18 Thread Chris S
Also, looking at that link I just read: "In order to set a flash on the next page instead of the current page you must use session.flash instead of response.flash. web2py moves the former into the latter after redirection. Note that using session.flash requires that you do not session.forget()" W

[web2py] Re: web2py 1.81.4 is OUT

2010-07-18 Thread Chris S
Is there a better explanation of how RPX integrates with the native web2py now that it's included in trunk? I would very much like to read a little more on how this works. For example: *Can you use RPX in combination with local user registration? *If we use a custom auth_user table can we use thi

[web2py] Did web2py ever consider joining the Software Freedom Conservancy?

2010-07-18 Thread jelkner
Did web2py ever consider joining the Software Freedom Conservancy? (http://conservancy.softwarefreedom.org/) I made a donation recently to web2py through the website, and then was disappointed to find out my contribution would not be tax deductible. If it was, would be willing to donate more. I'm

[web2py] Re: web2py performance issue or rather my fault?

2010-07-18 Thread MikeEllis
I was just about to create new topic, but thought I'd start by reporting here since it could be related. The short description is: 1. Serve web2py (rocket.py, sqlite3, etc) over a lan connection from a laptop 2. Open a page from my app on another laptop. 3. Also open the same page on the server l

[web2py] Possible with SQLFORM or SQLFORM.factory

2010-07-18 Thread Kenneth
Hello, I have a case where I have a table of sellers, a table of campaigns and then a tracker to follow how much each seller is selling. All sellers are not in all campaigns, the tracker keeps track of witch seller belongs to which campaign. To adminitrate this I´m trying to make a drop down list

[web2py] Re: Possible with SQLFORM or SQLFORM.factory

2010-07-18 Thread mr.freeze
You could probably do it with IS_IN_DB depending on your model. I would personally create a widget since they are more flexible and intuitive to me. If you show your model then I can help you. On Jul 18, 6:27 pm, Kenneth wrote: > Hello, > > I have a case where I have a table of sellers, a table o

[web2py] Re: Tiny doubt about a phrase from book.

2010-07-18 Thread GoldenTiger
Ok, errata then ? I've seen some things like that on the book, where can i inform of book erratas? code.google or book online? Max, are you still at EuroPython? On 18 jul, 13:10, mdipierro wrote: > This sentence makes no sense to me either. :-( > > It should have been: > > "On Google App Engi

Re: [web2py] Re: web2py performance issue or rather my fault?

2010-07-18 Thread Thadeus Burgess
I am wondering if this is a web2py issue or a DAL issue. I would like to re-run my tests just rendering a simple template with no dbio and see if I still get the same results. I love the DAL and there is nothing else quite like it, and would hate for it to be the cause. I would like to compare th

[web2py] Re: Can web2py be used as a node in a P2P app or store data in a DHT?

2010-07-18 Thread GoldenTiger
One of my favourite application over internet is CSpace, a very complete app that implements that you want, working perfectlly. http://cspace.in or its successor http://www.teamtalkapp.com/ I know the code of CSpace, coded in Python, uses PyQt, implements DHT based on Kademlia, NAT Transvers

[web2py] Re: web2py performance issue or rather my fault?

2010-07-18 Thread David Marko
I can see the same problems with failed requests on many my machines. (WinXP, Debian 5) . The simple test using default web2py examples shows me, that template rendering is OK e.g. http://localhost:8000/examples/template_examples/test_for but when using form example like in http://localhost:8000/

[web2py] Re: Possible with SQLFORM or SQLFORM.factory

2010-07-18 Thread Kenneth
Here is the model för tracker_person_product that tracks sellings, if a person doesn´t have a entry in the tracker on an specific campaign he doesn´t belong to that campaign. Troop_person is the table where sellers a stored and well campaign is the campaign table. db.define_table('tracker_person_p