Tagged Questions

TurboGears 2.x is a "best-of-breed" full stack rapid development web framework written in Python.

learn more… | top users | synonyms

10
votes
6answers
10k views

Turbogears 2 vs Django - any advice on choosing replacement for Turbogears 1?

I have been using Turbogears 1 for prototyping small sites for the last couple of years and it is getting a little long in the tooth. Any suggestions on making the call between upgrading to Turbogears ...
8
votes
8answers
2k views

Can anyone point out the pros and cons of TG2 over Django?

Django is my favorite python web framework. I've tried out others like pylons, web2py, nevow and others. But I've never looked into TurboGears with much enthusiasm. Now with TG2 out of beta I may ...
5
votes
2answers
60 views

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

Title says it all. I just want to programatically determine the name of an SQLalchemy model class.
4
votes
3answers
2k views

Pylons vs Turbogears

I am considering whether I should use Turbogears or Pylons for my project. I know Turbogears2 is based on Pylons. What does Turbogears provide that Pylon doesn't? Thanks.
3
votes
1answer
183 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 ...
3
votes
5answers
1k views

File Uploads with Turbogears 2

I've been trying to work out the 'best practices' way to manage file uploads with Turbogears 2 and have thus far not really found any examples. I've figured out a way to actually upload the file, but ...
3
votes
2answers
612 views

How to extend the Turbogears 2.1 login functionality

I'm using Turbogears 2.1 and repoze.who/what and am having trouble figuring out how to extend the basic authentication functionality. I am essentially attempting to require users to activate their ...
3
votes
1answer
939 views

Turbogears 2 Tutorials?

Anyone know of a good beginners tutorial for Turbogears 2? I'm particularly interested in one that would have some details on working with existing database schema rather than creating from scratch. ...
2
votes
1answer
79 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 ...
2
votes
1answer
574 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: ...
2
votes
2answers
440 views

How to keep query parameters during pagination with webhelpers.paginate

I look an example of paginating from http://rapidprototype.ch/bg2docs/tg2pagination.html for my Turbogears 2 project and it works great but, I have a problem regarding my query parameters when I ...
1
vote
1answer
26 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
52 views

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

I'm using a reflected sqlalchemy mapped class into a mssql 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
47 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
66 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 ...
1
vote
3answers
119 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 ...
1
vote
0answers
83 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 # ...
1
vote
4answers
266 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 ...
1
vote
3answers
95 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 ...
1
vote
1answer
518 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 ...
1
vote
1answer
134 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 ...
1
vote
5answers
680 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
173 views

Renaming TurboGears 2's Repoze Fields with TGAdmin

I've been working on renaming TurboGears 2's Repoze 'groups' field to 'roles' to free the namespace and db tables for other purposes. Also roles makes much more sense to me then groups because I have ...
1
vote
2answers
279 views

TurboGears for ecommerce

Is there a good Open Source shopping cart implementation for TurboGears? (I found Satchmo for Django, but I'm coming up empty handed for TurboGears.) I'd like to avoid reimplementing this particular ...
1
vote
1answer
86 views

Cart item management in python Turbogears 2.0

I'm new to python an I decided to give it a try with TG2 by developing a small store. So far I've been loving it, but I'm guessing that my coding parading is still very attached to java's Like for ...
1
vote
1answer
188 views

TurboGears2/SQLAlchemy: Inserting a new row into a table with an autoincrement Primary Key

I am a noob and am trying to get my head around TG2 and SQLAlchemy. The specific problem I am wrestling with at the moment is how to insert a new row into a table when the PK field is configured as ...
1
vote
3answers
107 views

Switching databases in TG2 during runtime

I am doing an application which will use multiple sqlite3 databases, prepopuldated with data from an external application. Each database will have the exact same tables, but with different data. I ...
0
votes
1answer
14 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
96 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
18 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
18 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 ...
0
votes
1answer
86 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
49 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 ...
0
votes
1answer
31 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
29 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
1answer
37 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 ...
0
votes
1answer
37 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
29 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?
0
votes
2answers
127 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 ...
0
votes
1answer
26 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
56 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
75 views

TG2.1- select 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. I am NOT using ...
0
votes
3answers
91 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
116 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
146 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 ...
0
votes
1answer
132 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 ...
0
votes
1answer
70 views

Log controller requests to syslog in tg2

Is there any built-in automate way to log controller request events to system log?
0
votes
1answer
84 views

How to transfer url parameters to repoze custom predicate checkers

I would like to create a repoze custom predicate checker that is capable to access url parameters and validate something. But I would like to use allow_only to set this permission checker in all the ...
0
votes
1answer
180 views

Comparing GWT and Turbo Gears

Anyone know of any tutorials implemented across multiple web application frameworks? For example, I'm starting to implement GWT's Stock Watcher tutorial in Turbo Gears 2 to see how difficult it will ...
0
votes
1answer
302 views

how to check if request is ajax in turbogears

How do I go about checking if a request is an ajax request in a controller method in Turbogears? Further, is it possible to return a 'partial' much like in rails or symfony if the request is an ajax ...

1 2