web2py Questions
3
Solved
As an alternative to Socket.io, there is SockJS (https://github.com/sockjs/sockjs-client), which seems to be better maintained and more stable than Socket.io.
This question is about the conceptual...
Meissen asked 3/5, 2012 at 17:24
3
Solved
(This question is related to this one)
I have a web2py application which I want to extend with some ember.js code. The delimiters of the templating systems in web2py and ember.js conflict (both ar...
7
Solved
Have been trying out Web2Py for a couple of days now and I decided it to be a keeper. But there is one thing that concerns me a lot and that might be a showstopper in the end. I need a nice develop...
1
The web2py book states
The administrative interface, admin, is only accessible from localhost
unless you run web2py behind Apache with mod_proxy. If admin detects a
proxy, the session cookie ...
3
In search of technologies for developing web applications and portals, I recently dabbled into Ruby and Python (from a non-sysadmin point of view .. ie, towards web application development) and imm...
London asked 17/11, 2011 at 3:11
3
I have a form with inputs and dropdown lists:
[...]
<select>
<option></option>
<option>Test User 1</option>
<option>Test User 2</option>
</select>
[...
2
Solved
I have the following scenario:
We are using web2py in the server side
We are serving some ember.js pages
Currently those ember.js pages are inside an iframe, because ember.js and web2py conflict ...
2
Solved
web2py is an awesome python framework which has great documentation including several deployment recipes. Yet what I miss there is the recipe for deploying using nginx (preferably with uwsgi). Ther...
10
Solved
Given the size of web2py and the lack of resources and corporate support, do you think it would be advisable to learn web2py as the only web development framework I know. I'm considersing lea...
Microsurgery asked 4/9, 2009 at 15:52
2
Solved
I have a thread doing a lot of CPU-intensive processing, which seems to be blocking out other threads. How do I limit it?
This is for web2py specifically, but a general solution would be fine.
Pinpoint asked 3/3, 2012 at 0:5
3
Solved
I just recently had a chance to take a look at web2py framework and although I have some prior experience with Django and more so with plain Python, I couldn't make sense out of the Query system th...
1
3
Solved
Web2py docs have two methods for inserting into a database
db.tbl[0] = newRow
and
db.tbl.insert(newRowAsDict)
The documentation implies that they are synonyms, but they appear to be differen...
1
Solved
db.define_table('person', Field('name'), format='%(name)s')
What does this format do here?
Impaction asked 5/1, 2012 at 15:19
3
Solved
I need to to handle a large (time and memory-consuming) process asynchronously in a web2py application called inside a controller method.
My specific use case is to call a process via stdlib.subpr...
Hutto asked 29/12, 2011 at 13:20
1
Solved
I am trying to dynamically build tables called db.blog and db.code with exactly the same SQL definitions. After I define them, I want to populate them with 10 rows of random data, and never execute...
1
Solved
I have some reusable HTML snippets that I want to 'include' in a number of web2py views.
Using components with LOAD means having to write separate controller functions which need to load their ow...
3
Solved
I want to upload file with SQL.factory()
I would just like to maintain the original filename
my code currently is
form = SQLFORM.factory(
Field('file_name', requires=IS_NOT_EMPTY()),
Field('fil...
3
Solved
I am running web2py on a Windows machine.
I'm working on an application, but it keeps erroring because it says the module I'm trying to use isn't installed. It is however installed in my local pyt...
1
Solved
I would like to learn the benefits of using HTML helpers in web2py instead of plain HTML markup elements. As an example, I read the following HTML markup builder code in a web2py application ...
1
Solved
What is the 'correct' way to extend the base auth_user table/the
whole auth system in order to support a number of custom user
profile fields (such as username, location, birthday, etc.)?
I'v...
3
Solved
At the moment we are running few smaller PHP sites (small company, private, non-profit org, friends...) and would like to migrate them to Python in order to be able to tweak them more easily ...
Pinelli asked 5/8, 2011 at 5:44
2
Solved
My controllers are getting a bit cluttered in my web2py app, and I would like to move functions to another place.
I was initially thinking of moving them to modules, but I access the db sometimes,...
Dm asked 24/7, 2011 at 22:51
2
I am comparing these 3 very different frameworks on a few precise points. I already know Django has more users and that Pylons is more flexible. I am a bad programmer so I am looking for a fr...
Beria asked 22/5, 2011 at 12:16
2
Solved
What is the recommended way to log application-specific messages in web2py? I found the documentation on HTTP logging, but I'm thinking more of messages for debugging and tracking.
Should I simply...
© 2022 - 2024 — McMap. All rights reserved.