Tagged Questions

web2py is a free, open-source web framework for agile development of secure database-driven web applications; it is written in Python2 and programmable in Python. web2py is a full-stack framework, meaning that it contains all the components you need to build fully functional web applications.

learn more… | top users | synonyms

0
votes
1answer
22 views

Error in Fullcalendar with json and web2py

I´m calling: events: { url: '/CondominioVip/evento/evento_json.json', error: function() { alert('there was an error while fetching events!'); } ...
1
vote
1answer
7 views

Static file serving web2py/apache2

I have a setup with web2py (1.89) and Apache2, as in the example in the web2py book. Apache is supposed to be serving the static files according to this directive, but it does not: AliasMatch ...
2
votes
1answer
45 views

Should I be installing my Python modules?

I generally don't bother to install Python modules. I use web2py, and just dump them in the modules folder and let it take care of the local imports. It just always seemed like the most ...
1
vote
1answer
32 views

Need help understanding module import errors

I'm trying to use the sendgrid Python API as a module in web2py. After testing it successfully from the command line, I dropped it into my modules folder, but as soon as I try to import sendgrid into ...
0
votes
1answer
36 views

How to set simple form alignment style in web2py?

I am using simple form in web2py. In controller I create a form like this: form=FORM(DIV(INPUT(_id='itemId',_name='itemId',_value='102737069',requires=[IS_NOT_EMPTY("please input correct ...
0
votes
2answers
53 views

Sending HTML form input to python script

I'm trying to send a HTML form input from a page to a python script. This is just for testing purposes so ignore the poor code. Basically I don't know how to define the action= part to reference the ...
0
votes
1answer
16 views

How to set a form's input text to a specific value in web2py when the form is submitted?

I have a form with two submit button: form=FORM(DIV(INPUT(_name='itemId', requires=[IS_NOT_EMPTY(),IS_LENGTH(maxsize=12)]), INPUT(_type='submit',_value='search',_name='search'), ...
0
votes
0answers
39 views

Chat app - Python - Attach files & < 150 users in 10 rooms

I'm completely confused as to what stack I should use & turning here for some guidance. The requirements I've set for myself are simple : 1.) I know python (web2py to be more specific), hence ...
0
votes
0answers
12 views

web2py, URL() error when dynamically serving static files

I am generating static files on the fly but cannot get the URL function to work: NB: here 'filename' is a key-value returned by the controller {{=P(A('Download ', filename,_href=URL('static', ...
1
vote
2answers
78 views

is it possible to have two submit button for one form?

I am using web2py to write a search engine like app. Is it possible to implement two submit button for one form such as google has two buttons "search" and "I am feeling lucky". Thanks in advance.
1
vote
2answers
26 views

ID3 Decision tree using web2py

I would just like to ask how to create a non-database application in web2py using MVC implementation in python. I am working on a thesis about creating/building an id3 decision tree and i decided to ...
0
votes
0answers
30 views

web2py new controller invalid functions

I have the following controllers in my Application with Web2py abook account ajax default factures letters payment all works perfectly except abook, which was the last create controller so its ...
0
votes
0answers
10 views

web2py url rewrite for a multilingual / international site and search engine visibility

url rewrite for a multilingual / international site and search engine visibility I am using web2py for a multilingual web-site. I want to manage language setting the same way as it is managed in ...
0
votes
1answer
17 views

web2py - translate long texts

I (think I) understand how to translate strings in web2py. My question is: what is the preferred way to translate large texts. For example "History of our company..." Including them in a dictionary ...
0
votes
1answer
16 views

Web2py ajax ':eval' action is not returning HTML functions

In my ajax function call am using target ':eval' to do some actions from controller. And my controller function returns value with web2py HTML functions def ajaxmessage(): return ...
0
votes
0answers
12 views

How to dynamically set a query for a crud.search

I am trying to modify a crud.search form to show a drop-down for a reference field. def test(): db.define_table('A', Field('name')) db.define_table('B', Field('type', db.A), ...
0
votes
1answer
27 views

element not placed on desired location : class=“ten columns” has no effect on the place of the element

According to web2py documentation page is divided in sixteen columns and this should be placed on 10th column but it does not work, I am new to all these so have no idea where to start debugging from. ...
0
votes
1answer
25 views

Generate a nested CRUD form

From a logical perspective it sometime doesn't make sense, for example, to add an Address before you add a Customer. db.define_table('address', Field('line1','string', required=True), ...
0
votes
1answer
33 views

Modifying SQLFORM text output - line breaks, paragraphs (web2py framework)

Model: Field('text1', type='text', length=1000, notnull=True) Function: def textinput(): f=SQLFORM(db.example, fields=['text1']) if f.accepts(request.vars, session): return dict(form=f) I want ...
1
vote
1answer
47 views

How to find the error on web2py and GAE SDK when I got Internal error - Ticket issued: unknow

I'm working with Web2py and Google App Engine SDK. I have an action that works using the WSGI version, but fails when running on SDK. Inside this action, there are no imports specific from GAE ...
1
vote
3answers
39 views

Module throws name error when imported from package

I'm trying to import a module that contains a single line: import logging, into my web2py project. When I try to import the module from within a package called mymodules, I get a <type ...
1
vote
3answers
69 views

Different ajax calls with polling cycle

Let's assume the first ajax call is immediately made, the controller-called function loops until something is read, for example: def FirstAjax(): while True: if something is read: ...
3
votes
1answer
51 views

Immediately start ajax call if other one is still running

Assuming I start a looping function via ajax that waits a response from a device (in this case a barcode reader), I need to do an other ajax call if a "Back" button is pressed (while the first ...
0
votes
0answers
24 views

web2py Rocket.Errors

I need other computers in my network to access to my website, I ran web2py with my ip address, for example: python web2py -a xxx -i 192.168.1.70 -p 8000. I can access to my site on 192.168.1.70:8000 ...
0
votes
1answer
83 views

upload files to ec2 from local using scp

I am using scp to upload files from local to ec2, and I got the permission error. Permission denied (publickey). lost connection How do i fix this?
1
vote
2answers
41 views

Select Widget Model Form with static content from a list in web2py

I have a simple model as follows: games = ['soccer', 'hockey', 'baseball', 'cricket', 'basketball'] db.define_table('Sportsmen', Field('gamer', db.auth_user), ...
4
votes
2answers
113 views

How to integrate SockJS with another web framework

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 ...
0
votes
1answer
37 views

web2py: creating doctests that pass parameters

Hopefully a simple question, but it doesn't seem to be covered in the documentation or web2py book... I've got a web2py controller method that looks something like: def mymethod(): ''' ...
0
votes
1answer
62 views

converting a MySQL query to use in web2py DAL

n a test (non-web2py) program, I'm using a MySQL query that invokes SELECT SUBSTRING_INDEX. What is the easiest way to convert this to the proper usage within web2py's DAL specifications? The query ...
3
votes
2answers
91 views

Record user voice from web browser

I am simulating something similar to Google Chrome's voice recognition plugin. I wish to record voice from web browser and send it to server for processing. In short, I wish to do as described in ...
-1
votes
2answers
49 views

is it possible to communicate over webservices in web2py application?

I have to develop one web2py application which will run on one machine (lets say SERVER), this machine will have MySql database also installed and running. Users can connect remotely to the Web2py app ...
1
vote
0answers
63 views

Change in the values of parameters - web2py application

I am new to web2py and trying out an application. Please see below for the relevant controller functions and the corresponding relevant views. I start by pointing my browser to ...
1
vote
3answers
51 views

How can I make SQLTABLE results link to outside pages?

New to Web2py, so my question might not be too clear. I'm trying to make a shipment tracking page, and I have a simple database with a tracking number and a shipper ID. Following the examples, my ...
1
vote
1answer
128 views

web2py - Dropdown menu

I'm trying to have a dropdown menu for the user to select the database table. I have defined few tables in db.py and I want the user the to select a particular table from a dropdown menu and insert ...
1
vote
3answers
45 views

Securing a financial application with a web interface

I am in the process of designing an application that users will be able to log on remotely and use - via a web interface. Security is of paramount importance (think credit card and personal banking ...
0
votes
0answers
41 views

Web2Py X GAE - gaehandler.py issue [closed]

The last 2 months I´ve been learning Python27, Web2Py and GAE, and I´m getting nuts with a gaehandler.py issue. I have my applications running localy in web2py (windows7), lets say Welcome, and I ...
0
votes
1answer
53 views

How to dynamically check logged-in state from View in web2py

I need to check that the user is still logged in so that I can prevent them from even opening the form if their session expired (logged out but page hasn't been refreshed). Here's the pseudo code of ...
1
vote
1answer
82 views

Web2Py - Create table from user input

I'm trying to create a table in a database in web2py. I'm new to this and trying to get a hold of the MVC structure and how to call in between. What I have done is in /modles/db.py I created a DB: ...
0
votes
1answer
47 views

Understanding shell setup script errors

I'm trying to run this web2py install script on a clean CentOS 6 install, and am getting the following set of errors: checkmodule: loading policy configuration from httpd.te httpd.te:1:ERROR ...
0
votes
1answer
71 views

Generate a multi-select option on a form using a junction table -> web2py

I have two tables with a many-to-many relationship between them. One table holds types of properties, the other holds regions. For the sake of simplicity let's say it goes something like this: ...
1
vote
0answers
54 views

Web2py - multiple options checkbox implementation

I am trying to implement a form where each field has multiple options and it has to be rows of checkboxes. I would like to display this form with field names in row header and checkbox options in the ...
1
vote
1answer
61 views

Getting error with simple select statement on web2py's 'image blog'

For my project, I need to connect to multiple databases and get information from them. I didn't think this would be a problem with web2py, but it was. I thought maybe I need to rebuild the db from ...
0
votes
0answers
32 views

web2py: Upload .csv to matrix

I'm a new user to Python/web2py working on a scientific application. I've generated a model of a table with a field of type 'upload' that accepts .csv files. db.define_table('conduction', ...
0
votes
1answer
70 views

web2py multiple form

i created a multiple form form = SQLFORM.factury(db.table1,db.table2) db.table2 has the following fields, the field invoice_id is linked to db.table1 and a catalogue_id is linked to another table ...
1
vote
0answers
102 views

Using Eclipse with PyWin32

I am running Eclipse (Indigo) with PyDev, Python 2.6 and PyWin32 (build 217, 32 bit), and having a problem that gets stranger the more I investigate. I'm running a Python program that imports the ...
1
vote
1answer
60 views

Web2py jQuery clone

I used jQuery to clone a field in a form. $('#table_catalogues') .clone() .attr('id','table_catalogues_'+i2l) .appendTo('#table_invoices_catalogues__row') But web2py doesn't create ...
1
vote
1answer
72 views

Web2py Query Legacy Database

I have a legacy database called my_legacy_db which is separate from the normal db. my_legacy_db users - email - username - name So cliff, your first part would work to generate field names and ...
1
vote
0answers
66 views

can't find logging message in gae admin console

I deployed a web2py app on gae. for logging, *.copied "logging.example.conf" and renamed it to "logging.conf" *.added myapp to [loggers] [loggers] ...
0
votes
2answers
94 views

I uploaded an image with web2py, now it opens for download instead view in browser. Why?

Using web2py and Google App Engine, I create on a model file, a field to upload the image and another one to save its download URL. Field('logotipo_marca_url', 'upload', ...
1
vote
1answer
103 views

How can I create new auth_user and auth_group on Web2py running on Google App Engine (GAE)?

I've created an app on my local computer with Web2py and it is running via WSGI with SQLite. I can successfully deploy my app to Google App Engine, using my own domain and doing all url rewrites I ...

1 2 3 4 5 9