So I must take some more testing and if it fails, I will paste sample
source.
--
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 b
I have followed the instructions in the book that detail how to distribute
applications as binaries.
(
http://web2py.com/books/default/chapter/29/14#How-to-distribute-your-applications-as-binaries
)
On my mac when I open the app, I am presented with the opportunity to set
an admin password and sta
Thanks for all this.
So, the world seems to back UWSGI as the preferrred solution. I'll get
over it. I see that you are saying that once when one does need
performance tuning with multiple workers, uwsgi is both more performant and
more tunable.
I think having a fabric deploy script will sol
You cannot do it this way because you are not processing the form. You are
validating and changing requirement after it is validated and therefore
they are ignored.
You should look into the form.process(onvalidate = ) option.
On Sunday, 7 June 2015 19:58:59 UTC-5, 黄祥 wrote:
>
> hi,
>
>
It is a bug. I just fixed it in trunk. Now request_reset_password uses
request_reset_password_onaccept
request_reset_password_onvalidation
On Sunday, 7 June 2015 19:46:33 UTC-5, James McGlynn wrote:
>
> Hello,
>
> I have a few questions about using callbacks with reset_password and
> request_res
hi,
form validate check form vars seems not working when put the conditional
logic on it. already tried :
- form.vars
- request.vars
- request.get_vars
- request.post_vars
but it seems that everything is ignore by the form logic.
e.g.
*models/db.py*
db.receipt_header.receipt_type.requires = IS_IN
The maintainers of web2pyslices do not want to do it any more. The domain
has been donated to me (although we are in the process of transferring it)
so if Ivica want to put the effort of maintaining an alternate site, that
is better for me than maintaining web2pyslices, as long as info is not lo
This issue was fixed by updating to Web2Py v2.11.2
On Sunday, May 31, 2015 at 2:11:16 PM UTC-7, Michael Jackson wrote:
>
> I have a simple UI for interacting with a database set up on a Google
> AppEngine application using Web2Py. I'm using the default Grid builder to
> settings to display it. H
hi . i am milad . i downloaded web2py for mac . but when i want extract zip
file it will need password . i don't have password . where is password ?
help meee
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- htt
Hello,
This is my web page. Iam showing the questions using loop. If for example
student has answered for 1st question I should be able to save answer for
that corresponding id.Also I want to save the student id as well. I would
appreciate if someone helps.
[image: Inline image 1]
On Fri, Jun 5,
Hello.
I am trying to use the web2py.test example to do testing in my app and
while I am successfully adding users to the temporary database, I can't
figure out how to log in. The web2py generated login form has no ID. How do
I go around that?
This is the testing setup I'm referring to created
hi . i am milad . i downloaded web2py for mac . but when i want extract zip
file it will need password . what should i do ?
--
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (R
In case you want some nice formatted prints, I am using json dumps to check
on large dicts otherwise very complex to read in the console:
import json
print json.dumps(my_dict, sort_keys=True, indent=4)
On Saturday, 6 June 2015 05:26:39 UTC+2, am...@gettalent.com wrote:
>
> One debugging method
I think Hostgator is a good web host but it's certainly not the best one
you can find out there. The problem is that all those companies are
shouting out loud that they are the best and most of them use the same
arguments such as 99.9% up time etc. It has become too much all of the
same. The mo
Hello,
I have a few questions about using callbacks with reset_password and
request_reset_password. I'm using web2py 2.9.5, but I checked the
corresponding code from the master branch and github in gluon/tools.py and
it seems to be the same.
Why does the callback auth.settings.reset_password_
YouTube videos of
U.S. Congress money laundering hearing
of
Saudi Billionaire " Maan Al sanea"
with *bank of America*
and The owner of Saad Hospital and Schools
in the Eastern Province in *Saudi Arabia*
and the Chairman of the Board of Directors of Awal Bank in *Bahrain*
Wit
Maybe also deleting all the existing sessions will also help.
Good luck with it.
--
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 messa
Hi,
The following works
db=DAL('sqlite:memory')
db.define_table('tt',
Field('vv', 'integer'),
Field.Virtual('x', lambda row: row.tt.vv * 10))
db.tt.insert(vv='1')
print db(db.tt).select().first()
printing
We need more details to understand what is failing in your case. Can you
post a fa
I checked older version on PythonAnywhere and exact same code works
perfectly, so It's not my browser or form code.
What has changed are changes I made somewhere, but where?
Recently added this session-related code but disabled it and problem
persists
session.saved_purpose = dict(the_purpose
Is anybody developing with PTVS who's got debugging and everything setup
and willing to share your config?
--
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)
---
In addition to Anthony's idea. Check these:
1. On the example you posted maybe the indentation was wrong, but
'redirect' should have another indent otherwise it would redirect every
time!
2. Make sure you are displaying the form in your view with simply this:
{{=form}}
All the best. D
--
I believe 'extracolumns' is an undocumented feature of SQLTABLE, however,
it doesn't seem to work because it throws a ticket. Maybe someone could
try something like this and let me know what I'm doing wrong.
extracolumns = [{'label': A('Extra', _href='#'),
'class': '',
'width
Is it possible your browser isn't returning cookies or you have added some
code that is clearing the sessions somewhere? By default, form.process()
provides CSRF protection, which involves the session and therefore the
session cookie -- messing with those will cause form processing to fail
sile
okay, didn't want to use factory anyway. Reason I asked is because all of
my previously-working forms quit working.
They don't stop to let user type in content. No errors, control just
proceeds past the form. Did I change change some global config setting?
This used to work:
form = SQLFORM
paid or not, I like the idea of having "one" site than two. Its confusing
enough just to log in sometimes. lol., let alone looking for which site to
go.
On Sunday, June 7, 2015 at 8:27:59 AM UTC-4, villas wrote:
>
> I agree with Niphlod about the danger of creating another 'repository of
> unte
Hi Alex,
You wouldn't usually use factory if you are updating a specific DB record.
Anyhow update_record takes a dict:
record.update_record(**dict(form.vars))
Maybe read the book chapter on forms again.
Best wishes D
On Sunday, 7 June 2015 06:50:38 UTC+1, Alex Glaros wrote:
>
> I cannot find
I agree with Niphlod about the danger of creating another 'repository of
untested thingies'. The existing web2pyslices is already pretty good and
maybe this one could be better. But what we are missing is the dedicated
effort required to keep things up to date. I guess we are all hoping that
27 matches
Mail list logo