TurboGears 2.x is a "best-of-breed" full stack rapid development web framework written in 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
20 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
22 views

sqlalchemy failing to commit somewhere (but fails silently) when trying to update data

Like all CRUD goes, I need to write some data to a table. when I write new data to the table, everything works like charm. the problem starts when I need to write data already existing in the table ...
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
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
28 views

How to remove the white space from a ToscaWidgets2 - twc.forms SingleSelect

I'm using Tosca Widgets 2 on a TurboGears 2 Project, Does anyone know how to remove the ‘prompt_text’ attribute while instancing a twf.SingleSelectField? year = twf.SingleSelectField(label="choose a ...
0
votes
1answer
143 views

sqlalchemy child field order_by on backref

Answer no longer needed as I changed focus in code. (see my comment in answer) Post answers for future reference... How do I retrieve results from a one to many backref ordered by a field in the ...
2
votes
1answer
217 views

Python framework to use with SQLAlchemy

I was planning on starting a project using Turbogears 2. I noticed however that in particular on stackoverflow.com there don't seem to be many questions concerning it. According to Wikipedia, it seems ...
0
votes
0answers
48 views

Serving resources with turbogears using RestController

I'm having a problem understanding how to serve my data best. I have 2 models, one is record and the other is log, they have a 1 to many relationship respectively. I'd like to serve this using tg's ...
0
votes
1answer
83 views

Using GridFS with Ming ODM in Turbogears

Ming supports GridFS start from 0.3 version, and i've used it in several Turbogears apps so far, but can't find any documentation of how to use GridFS with Ming, This is what i've done so far, in my ...
0
votes
1answer
81 views

How to use database in app_globals.py in turbogears2?

Possibly related topic, but from which I could not solve the problem: How to initialize global variables in TurboGears 2 with values from a table The issue is that I'm trying to read some config ...
0
votes
2answers
207 views

SQLAlchemy(Postgresql) - Race Conditions

We are writing an inventory system and I have some questions about sqlalchemy (postgresql) and transactions/sessions. This is a web app using TG2, not sure this matters but to much info is never a ...
0
votes
2answers
76 views

How to generate forms dynamically based on the model objects in TurboGears?

Is there a way to generate a form based on a model object in turbogears? I came across that facility in Django - ModelForm where it generate the form based on the definition of the given model class. ...
1
vote
1answer
105 views

How to change the database on the fly in python using TurboGear framework?

I have come across a requirement that needs to access a set of databases in a Mongodb server, using TurboGear framework. There I need to list down the Databases, and allow the user to select one and ...
1
vote
1answer
45 views

TurboGears 2.x app-layer config namespacing

Coming from a Django background, I'm accustomed to the framework providing a configuration mechanism which is suitable (and intended) for app-layer configuration rather than framework configuration ...
0
votes
2answers
72 views

function to be called every page request

I am looking for a way to log user activity on my site. I've got a standart TG2 quickstart project. "User" class in my model has additional column: class User(DeclarativeBase): ... last_activity ...
0
votes
2answers
76 views

How to inject vars into the dict used for template by a decorator in TurboGears2?

When a method is exposed, it can return a dict used by a template : class RootController(TGController): @expose('myapp.templates.index') def index(self): self.mykey = "foo" ...
1
vote
1answer
132 views

Block tags in turbogears/genshi (py:match)?

Ok, I'm coming from Django, so please excuse me if what I write doesn't make sense. I'm trying to "override" a portion of my master template in turbogears using genshi. So far I've only tried the ...
0
votes
2answers
709 views

sqlalchemy UnicodeDecodeError: 'utf8' codec can't decode byte 0xe7 when trying to select all from msssql 2005 table

I'm building an application that works with the db of another application, using mssql 2005 (I can't change that or change the existing table definition). w the mssql table collate is: "hebrew bin", ...
0
votes
1answer
73 views

How to place multiple @paginate turbogears 2?

Give a controller and a method like: import genshi from pylons import tmpl_context, request, url import re from tg import expose, flash from tg.controllers import redirect from tg.decorators import ...
0
votes
1answer
40 views

Integrating webpages and turbogears application

I am working on a Turbo Gears 2 application. The application directs a user through a set of questions. I like the templating system of TG2 (which of course is the idea) so I want to integrate the ...
1
vote
1answer
67 views

releasing turbogears2 handle on specific DB (controlling the transaction manager)

I'm building a turbogears application that works with 2 db - the second one - which I'm referring to is an mssql db - used by another application (not mine - my application is actually a hack to solve ...
1
vote
1answer
214 views

sqlalchemy throws a DataError 22001 using tg2 and pyodbc to write into SQL Server 2005

I'm using a reflected sqlalchemy mapped class into a SQL Server table. I DBSession.add() instances of Activities class (the mapped class) with data I get from a different source. and then I called ...
1
vote
1answer
350 views

assigning specific column to be primary key when reflecting an existing table with sqlalchemy and turbogears

this is part of a project that involves working with tg2 against 2 databases one of them (which this model uses is mssql). since that table I need to read/write from is created and managed with a ...
1
vote
1answer
127 views

i18n breaking turbogears setup -wiki20 tutorial

ollowing the 20wiki tutorial as a Turbogears newbie I'm using win7, python 2.7.2 (I guess the my computer locale is hebrew, but for the beginning I was planning on english development) and I think ...
4
votes
1answer
361 views

TurboGears 2 quickstart shows error immediately

I am new to TurboGears and have just installed TG2 development in a virtual environment. I'm following along in the quickstart guide, and have successfully built a helloworld via paster quickstart ...
0
votes
1answer
454 views

paster quickstart not an option

I am just installing TurboGears2 on Windows 7 running a virtual environment (python 2.7). I am not seeing the paster quickstart option when I run paster --help Instead, here's that output: ...
0
votes
1answer
130 views

sorting by a related item with ming on mongodb

setup A TurboGears2 project using ming as an ORM for mongodb. I'm used to working with relational databases and the Django ORM. question Ming claims to let to interact with mongodb like it's a ...
1
vote
3answers
408 views

web presenting framework for SQLObject/SQLAlchemy projects

I'm looking for the most graceful way of taking a non-web project based on either SQLObject or SQLAlchemy and overlay it with a decent web-framework. I've looked at Turbogears, and even though it ...
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 ...
0
votes
1answer
51 views

Turbogears 2 / Pylons

I am really confused i have a directory structure as follows. /foo/bar/project/ under project is the python environment via virtualenv. I have two additional folders live, and beta. Live is served ...
0
votes
2answers
121 views

Turbogears 2 - validating forms to the same url

I have a controller for a contact page similar to the following: @expose('project.templates.contacts') def contact(self, **kw): return dict( form=contact_form ) Upon submission the form is ...
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 # ...
8
votes
3answers
376 views

How do I get the name of an SQLAlchemy object's primary key?

I just want to programatically determine the name of an SQLalchemy model class.
2
votes
4answers
986 views

What web framework to choose [closed]

I'm comming from java world (apache wicket) and need to use python for my project. I've heard about Turbogear2, Pyramid(Pylons) or Django and read some about them. My first choice will be TurboGears2 ...
2
votes
1answer
219 views

Why I should not return a json list as result in web service?

I did try to return a data list as result in my web application. For example @expose('json') def getList(): return ['apple', 'banana', 'orange'] But the web framework TurboGears2 stops me and ...
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.
0
votes
1answer
61 views

How one define name of fixture in fixtures other then by class name

I'd like to use multiple fixtures in the same test suite to test SQLAlchemy model in various situations. What is the easiest way?
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 ...
1
vote
3answers
257 views

login through XHR

i want to modify authentication behaviour so that the whole process can be done on the client side through xhr. so for example when i sumbit the login form login_handler would return a some json data ...
0
votes
1answer
39 views

How to get rid of the __actions__ entry in the CrudRestController's response?

I'm subclassing the CrudRestController to implement an REST interface. It works fine, but the response dict contains an __actions__ entry which contains some html code that I really don't want in my ...
0
votes
1answer
97 views

jqgrid with turbogears 2

I have been recently trying out crudRESTController in TG2.1. Overall, I found that-- 1] The community is helpful. 2] But, it is hard to find a help topic or docs, if I get stuck-up with a particular ...
0
votes
1answer
208 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
3answers
221 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 ...
0
votes
2answers
325 views

sqlautocode for mysql giving syntax error

I am using TG2.1 on WinXP. Python ver is 2.6. Trying to use sqlautocode (0.5.2) for working with my existing MySQL schema. SQLAlchemy ver is 0.6.6 import sqlautocode # works OK While ...
0
votes
1answer
228 views

Turbogears 2.1 with mako - extensive tutorial

I am a python programmer. For web-based solutions, I have started learning TG 2.1 By and large, the documentation on TG 2.1 official site is a work-in-process. As regards to the templates, it tells ...
1
vote
1answer
812 views

problem with turbogear2 quickstart example

Hello I have Ubuntu 10.10 installed. And I wanted to try out Turbogear. I got the installation steps correctly I think. Problems that I have encountered though is in the steps where you create the ...
3
votes
1answer
1k views

Connect to mssql from sqlalchemy by pyodbc on mac os

Anyone has successfully connect to mssql thru pyodbc within sqlalchemy? I am using turbogears2 right now, and try to connect to mssql, working on a mac os platform. Getting following error: ...
1
vote
1answer
212 views

Turbogears change user via function calls

In TG1, you could change the logged in user by doing something like: identity.set_current_identity(identity) Is it possible to do something similar in TG2? It seems like repoze.who should provide ...
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 2