You cannot post messages because only members can post, and you are not currently a member.
Description:
Discussion about the TurboGears front-to-back web development megaframework.
|
|
|
Authenticated session expiration in TG 2.1
|
| |
Hi everyone,
I am in the process of porting a TG 1.0 application to TG 2.1. One of
the things that looks like is not there anymore is expiring
authenticated sessions. In TG 1.0 there were visit and visit_identity
tables (I assume they had to do with session expiration). paster setup-
app does not create those tables anymore and my authenticated sessions... more »
|
|
Opera login
|
| |
Hello, I am having one problem usin authentiacation in my proyect. It works ok on Firefox and Chrome but not on Opera. When I try to log in using Opera browser, authentication always fails but I dont know why. Form data is sent ok as I can see. Any idea? Regards
|
|
Authentication redirection problem
|
| |
I was sure I had already read something about that error, but I'm unable to find it... I wanted to deploy a development version of my application on another port at the Apache proxy frontend. So I added a https-only VirtualHost on Port 8088 and configured the ProxyPass directives accordingly. It works, but on some point I get redirected to the login page and then the... more »
|
|
__xml_fields__ and __add_fields__
|
| |
Trying to get an __add_fields__ to NOT be escaped to the links will
just work.
class PlotboxTableFiller(TableFiller ):
__model__ = Plotbox
__add_fields__ = {'config_zip_url':None}
def config_zip_url(self, obj):
url = '<a href="">%s://%s/configs/%d/con fig.zip</a>' % \
(request.environ['wsgi.url_sch eme'],... more »
|
|
Testing TurboGears 2.2 Beta
|
| |
As 2.2 release is going to introduce many big changes we want to be
sure that everything works as expected before making an official
release.
To achieve this we decided to have some beta releases which will
permit people to start testing things and report issues found before
the stable release.... more »
|
|
tgext.menu not dropping down in ie
|
| |
The menu is working fine in firefox, but will not dropdown in ie. The
menubar is visible and the links work except with a dropdown.
any advice for tweaking it to make it work?
|
|
repoze.who2 and TG2.1.5?
|
| |
Is anybody using repoze.who v2 with the latest versions of TG? Is there a reason why TG has stayed with who v1? Thanks?
|
|
Ubuntu 12.04 using python-turbogears 1.1.1
|
| |
I realize this is ancient code, but hoped this report might still be useful. Ubuntu now mixes sqlalchemy 0.7 with turbogears 1.1.1. Thesqlalchemy.exceptions module is now sqlalchemy.exc. The import error was masked by the old logic making this more difficult than necessary to resolve. I changed the import logic in database.py to be:... more »
|
|
Datagrid w/o SA
|
| |
Is it possible to load a Datagrid without sqlalchemy help ? Current testing code snippets: from tw.forms import DataGrid contactinfo_grid = DataGrid(fields=[ ('name','name'), ('surname','surname'), ('phone','phone') ]) and this code inside the controller: @expose('p1.templates.index')... more »
|
|
|