TurboGears, another open source MVC-style Web application framework based on Python.

learn more… | top users | synonyms

0
votes
1answer
10 views

How to configure ToscaWidgets 2 on a TurboGears 2.2 with mount Proxy deploy

I have a working turbo gears 2.2 website, deployed as a mount reverse-proxy, exp: https://Some-Domain.com/mySite I know how to configure the webserver to work as a mounted site, but I don't know ...
0
votes
0answers
21 views

Running a trigger with sqlalchemy that works with session.execute

I have a app which using sqlalchemy as the orm. As the app is one in transition some of the update query's run through a session.execute . However I need to create a trigger of some kind . I am trying ...
0
votes
1answer
13 views

Getting the description of the database with sqlalchemy

How can I find out the desciption of the database with sqlalchemy much like django's sqlall command . $ python manage.py sqlall Can I run something similar to sqlall in turbogears admin or with ...
0
votes
1answer
66 views

A django like unique together in turbogears/sqlalchemy

This question essentially two parts. 1. I have a situation where I require things to be unique together i.e the elements in db need to be unique together with each other. Lets say we have a model ...
0
votes
1answer
45 views

SqlAlchemy: proper way to do a bare exists query

I've the following construct which seems to produce the desired SQL: >>> print session.query(exists('1').where(MyTable.name=='x')) SELECT EXISTS (SELECT 1 FROM my_table WHERE my_table.name ...
0
votes
1answer
98 views

How to pass raw image data in turbogears to mako template for scr=data:image/jpg

I would like to pass raw image data in TurboGears2 to the mako template to use in an img tag (ie., scr=data:image/jpg,base64,${imagedata}). The image is retrieved from sql server image format I ...
0
votes
1answer
25 views

Change Turbogears paster serve directory

I'm a bit new to Turbogears, but wondering if someone can help me out... I have TG setup in /var/tg/user/env/ where there are dirs... bin/ include/ lib/ local/ src/ paster.log development.ini I ...
0
votes
1answer
28 views

TurboGears2.2.0 install/run error when nosetests and paster setup-app development.ini

I encountered a problem after I finished all process of installing TurboGear2 on my OS X 10.8.2. Using Python2.7, TurboGear2.2.0 The installing process was based on tutorial of official website: ...
0
votes
1answer
66 views

Remove all user's cookies/sessions when password is reset

I'm interested in improving security of my TurboGears 2.2 application so that when user changes his password, it logs him out from all sessions and he must login again. The goal is when user changes ...
2
votes
0answers
38 views

cachebusting for all static resources in Turbogears 1.0b1

Having a problem with stale css and js files being cached in the browser. I am using the cache-buster technique of appending a query parameter with a datestamp to static resource url's named ...
2
votes
1answer
115 views

Integrate django application with turbogears

I am working with a legacy web application based off of Turbogears 1.1 (CherryPy 2.3) and I would like to integrate it with a Django 1.4 web application. What I would like to do ideally is find some ...
0
votes
1answer
33 views

Turbogears. Writing controller methods

The index method is the start point of any TurboGears controller class. Each of the URLs localhost:8080 localhost:8080/ localhost:8080/index is mapped to the RootController.index() method. How ...
0
votes
0answers
43 views

Is it possible to run a turbogears app using Elastic beanstalk?

I have a turbogears app running in EC2. Is it possible to run that in Elastic Beanstalk? Amazon tutorials and help docs only talk about running FLask and DJango apps. Has anyone done this ...
0
votes
2answers
25 views

check if turbogears public file exists

I am new to turbogears and have an app that I am creating with multiple directories under public/media/ballots. I need to see if a directory exists. path = "public/media/ballots/" + ...
0
votes
1answer
177 views

CherryPy server stopped when i run my Turbogear application

When i run my application, it is getting stopped and reports the following error: 2012-06-16 02:40:51,767 turbogears.startup INFO Binding metadata for SQLAlchemy... 2012-06-16 02:40:51,785 ...
1
vote
2answers
191 views

twitter-bootstrap based toscawidget

Is there any project that use twitter-bootstrap in toscawidget templates? imo turbogears project really can benefit from twitter-bootstrap to create a high quality interface
1
vote
0answers
47 views

Exposing an HTTP proxy through a Turbogears controller

I have a webapp implemented in TurboGears 1.1 that's kind of a front-end for a REST API. I'm trying to expose a URL path on my webapp that's a proxy to the original REST API, so I can access ...
6
votes
1answer
800 views

SQLAlchemy declarative: defining triggers and indexes (Postgres 9)

Is there a way in the SQLAlchemy class of a table to define/create triggers and indexes for that table? For instance if i had a basic table like ... class Customer(DeclarativeBase): ...
0
votes
2answers
105 views

Turbogears2: analog of django context processors

Is there any analog of django context processors in turbogears2? In tg1 was stdvars, but not in tg2 anymore. Explaining: I need to have some template tags, avaible on each page, without obvious ...
0
votes
1answer
86 views

How to access a static file in controller in turbogears

I have an XML file in /my_project/public/xml/file.xml, that I want to read and parse it in one method in controller. The file can be easily accessed through a template, but I have no experience with ...
1
vote
1answer
123 views

How to set the 'value' parameter for a hidden field in runtime in Turbogears

In order to set the value for a HiddenField in toscawidget, the only parameter I've found useful is 'default' (surprisingly, parameter 'value' in toscawidgets doesn't represent 'value' in html). ...
1
vote
0answers
142 views

i can't run tg-admin in python2.7, how can i do that?

I was trying to run tg-admin in ubuntu 11.04 on python 2.7 but I keep having an error shown below, but later I was able to run it using python 2.6 like this : #!/usr/bin/python # ...
0
votes
1answer
50 views

Mixing cython and turbogears 2.1

Is it possible to integrate Cython and TG2? I have one computation (written in python) which is heavily numerical and would largly benefit from rewriting into C or cython.
5
votes
2answers
573 views

Turbomail Integration with Pyramid

I am in need of a method to send an email from a Pyramid application. I know of pyramid_mailer, but it seems to have a fairly limited message class. I don't understand if it's possible to write the ...
2
votes
2answers
697 views

Logging queries with sqlalchemy 0.6

With turbogears 2.1 and sqlalchemy 0.7 the queries from console were logged out to stdout. However I needed to downgred to 0.6 and they no longer appear. Documentation of logging seems to be identical ...
2
votes
1answer
178 views

Installing turbogears 2.1 on Windows 7 x86 error “The system cannot find the file specified”

I created enviroment in C:\Projects2010\Python\Environments: C:\Python27\Scripts\virtualenv.exe myenv Then ran activate.bat: C:\Projects2010\Python\Environments\myenv\Scripts\activate.bat Then ...
0
votes
1answer
210 views

Selecting a row from HTML table and edit/delete it

I have created a html table (using TG2.1 with mako) for a file from MySQL db. Now I would like to provide for "Edit / Delete" a particular row (record), by selecting that row in table. Note that I am ...
0
votes
1answer
95 views

jQuery encodes my data in a different way on server than on locahost?

i've a function like this: function flush_changes() { jQuery('#save-changes').replaceWith('<span id="save-changes">Saving..</span>'); var changes = new Array(); ...
0
votes
3answers
222 views

sqlautocode : primary key required in tables?

This relates to primary key constraint in SQLAlchemy & sqlautocode. I have SA 0.5.1 & sqlautocode 0.6b1 I have a MySQL table without primary key. sqlautocode spits traceback that "could not ...
1
vote
0answers
85 views

Integrating TurboGears/repoze with JanRain

I am trying to figure out how to use the Janrain Engage one click login system to authenticate users on my TurboGears application in a similar manner to how it works in Web2Py. I have got as far as ...
3
votes
2answers
4k views

Python web framework with CRUD powered by AJAX

I am looking for a Python web framework which will allow me to rapidly build a CRUD application with automatic AJAX support. The framework should be able to generate a nice table which is sortable ...
0
votes
1answer
123 views

Using kajiki in TG2.1

the recently released turbogears 2.1 mentioned about the support of kajiki, a genshi-like templating engine, but i cant find any resource on how to get started to use tg2.1 with kajiki. any ideas?
0
votes
2answers
262 views

Turbogears tutorials , debugging tools

I successfully installed turbogears via virtualenv on ubuntu , loaded it with paster after quickstart. I was looking for a good ide with debugging for turbogears and paster. I need any good suggestion ...
0
votes
1answer
121 views

Turbogears2 and py.test

I'm switching our testing environment from Nose to py.test for testing a Turbogears2 web application. Currently, when Nose runs it gathers information from a testing configuration file (test.ini) ...
0
votes
1answer
168 views

How to use mod_passenger for Turbogears 2?

What do I put in passenger_wsgi.py for a Turbogears2 site? Since it's possible for Django to use mod_passenger, I'm trying to use mod_passenger with Turbogears2. So far, I've found a ...
1
vote
1answer
138 views

How to let actions support more parameters?

I'm using pylons, and my action of controller is: class UserController(BaseController): def create(self): name = request.POST['name'] email = request.POST['email'] ...
11
votes
7answers
6k views

Django, Turbo Gears, Web2Py, which is better for what?

I got a project in mind that makes it worth to finally take the plunge into programming. After reading a lot of stuff, here and elsewhere, I'm set on making Python the one I learn for now, over C# or ...
0
votes
1answer
189 views

Psycopg2 under osx works on commandline but fails in Aptana studio

Howdy, I have been developing under Python/Snowleopard happily for the part 6 months. I just upgraded Python to 2.6.5 and a whole bunch of libraries, including psycopg2 and Turbogears. I can start up ...
0
votes
1answer
100 views

Saving RAM on Shared Hosting with persistent process web service (e.g. Ruby on Rails, Turbogears, etc.)

I use Turbogears on my shared hosting for one-off applications, but I don't need these applications active all the time. Is there a way to start the service when I request it, and then kill the ...
0
votes
5answers
172 views

turbogears and mobile site

is it possible to develop mobile versions of webpages using turbogears.can someone please show me an example and how it is done.need it urgently.thanks
0
votes
2answers
83 views

How do I Handle Database changes and port my data?

Example, for web applications using Turbogears and SQLAlchemy. Every time I update my data model, I need to delete my database and recreate it. Is there an easy way to update the production ...
-2
votes
3answers
255 views

How will Turbogears reach the critical mass of Ruby on Rails?

I've been using Turbogears since I have a Python background, but I can't help feeling a pang of jealously seeing all the Ruby on Rails resources available. For example, for a crude comparison of the ...
0
votes
1answer
49 views

Am I supposed to directly modify User models in auth modules in frameworks?

I am new to using Frameworks for web development and I have noticed that frameworks like django, turbogears etc come with auth packages which contains user models. Am I supposed to directly modify ...
1
vote
1answer
747 views

Any good client-server data sync frameworks available for iPhone?

I'm just getting into the client-server data sync stage of my iPhone app project, and have managed to get my CoreData data model loading on both the iPhone client and my TurboGears server (which is ...
0
votes
1answer
87 views

Log controller requests to syslog in tg2

Is there any built-in automate way to log controller request events to system log?
1
vote
5answers
2k views

Simple ascii url encoding with python

look at that: import urllib print urllib.urlencode(dict(bla='Ã')) the output is bla=%C3%BC what I want is simple, I want the output in ascii instead of utf-8, so I need the output: bla=%C3 if ...
1
vote
1answer
254 views

Returning Database Blobs in TurboGears 2.x / FCGI / Lighttpd extremely slow

I am running a TG2 App on lighttpd via flup/fastcgi. We are reading images (~30kb each) from BlobFields in a MySQL database and return those images with a custom mime type via a controller method. ...
0
votes
1answer
151 views

Serving files with Turbogears2

How do I serve files from an arbitrary directory with Turbogears2? I have a database with the local path, e.g. /home/myuser/tg2env/MyProject/myproject/files/somefile.jpg tg.url seems to only be able ...
2
votes
1answer
334 views

Can Core Data be used on Linux?

This might be a stupid question, but I was wondering whether or not you can use the Core Data libraries on Linux at all? I'm planning how to build the server side of an iPhone app that I'm working ...
1
vote
0answers
360 views

good beginner tutorial for turbogears 2 [closed]

I find myself struggling to do simple things that would normally take me about 5 minutes to do in PHP. At the moment, I'm trying to create a basic form which will print the details on another page ...

1 2