16
votes
12answers
6k views
Anyone out there using web2py?
Is anyone out there* using web2py?
Specifically:
In production?
With what database?
With Google Application Engine?
by "out there" I mean at stackoverflow.
6
votes
8answers
1k views
Which web development framework works best with Google App Engine?
Now that Google allows Java on App Engine, I'm wondering what effect this has on a choice of web framework for App Engine.
I realize Google provides the webapp
framework which is …
6
votes
4answers
944 views
@Rails users: have you tried web2py? Pros? Cons?
web2py to is a Python framework but shares the "convention over configuration" design that Ruby on Rails has. On the plus side it packages a lot more functionality with its s stan …
5
votes
2answers
852 views
Credit card payments and notifications on the Google App Engine
I ported gchecky to the google app engine. you can try it here
It implements both level 1 (cart submission) and level 2 (notifications from google checkout).
Is there any other p …
4
votes
4answers
650 views
How to debug Web2py applications?
Is it possible?
By debug I mean setting breakpoints, inspect values and advance step by step.
3
votes
1answer
403 views
Can I do this in Web2Py?
As a way of evaluating Web2Py I tried to reimplement a web page in Web2Py.
It seemed quite simple to start with but I'm not sure if it works the way I think.
I have a simple page …
2
votes
1answer
24 views
allow system to support multiple languages
How to use T.force('ar') to allow the system support multiple language.
i have two links into my page when Arabic link is pressed the system will converted to Arabic version and a …
2
votes
1answer
139 views
Multiple jQuery functions & Autocomplete
I found that using declaring jQuery Autocomplete as the first function in your script prevents other functions from being executed.
The second and third functions below will not …
2
votes
2answers
110 views
Finding the domain name of a site that is hotlinking in Google app engine using web2py
Let's say we have an image in the Google App Engine and sites are hotlinking it.
How can I find the domain names of the sites?
My first thought was:
request.client
and then …
2
votes
1answer
179 views
Using mx:RemoteObject with web2py’s @service.amfrpc decorator.
I am using web2py (v1.63) and Flex 3. web2py v1.61 introduced the @service decorators, which allow you to tag a controller function with @service.amfrpc. You can then call that fun …
1
vote
1answer
23 views
web2py (and other MVC frameworks): How to execute base code on all controllers
In web2py, is there a way to have a piece of common code be executed before all controllers are called? For example, I want to add some code that will log client IPs to a log of r …
1
vote
1answer
30 views
web2py - select value from dropdown
i have a table member that include SQLField("year", db.All_years)
and All_years table as the following:
db.define_table("All_years",
SQLField("fromY","integer"),
SQLField("to …
1
vote
1answer
35 views
mod_wsgi, wsgi daemon visible behind _both_ http and https
Hi,
I have apache vhost configured with SSL and mod_wsgi its working fine:
< VirtualHost 127.0.0.1:443 >
#[...]
SSLEngine on
#[...]
WSGIScriptAlias / /home/maciek/workspace/i …
1
vote
1answer
31 views
SQLTable - transpose
i have a
rows=db(db.member.membership_id==request.args[0]).select(db.member.membership_id,db.member.first_name,db.member.middle_name,db.member.last_name,db.member.birthdate,db.me …
1
vote
1answer
53 views
web2py - generate multiselect list
I have an application using web2py.
I have a table in the database called member:
db.define_table("member",
SQLField("membership_id", "integer",notnull=True),
SQLField("first …
