[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread Florent Aide
On 9/9/08, rihad [EMAIL PROTECTED] wrote: On Sep 9, 1:07 am, Florent Aide [EMAIL PROTECTED] wrote: On Mon, Sep 8, 2008 at 8:23 PM, rihad [EMAIL PROTECTED] wrote: That screenful of traceback would be really useful. You could post it tohttp://paste.turbogears.organd send us back the

[TurboGears] ImportError: No module named config

2008-09-09 Thread German Monfort
Hello, this is my first message to the list. For a couple of days I've been trying to setup turbogears correctly in order to start my first web app in a python framework (My background is in PHP with CodeIgniter). nose I read the 20 min wiki tutorial and I'm also reading the book Rapid web

[TurboGears] Re: ImportError: No module named config

2008-09-09 Thread Florent Aide
On 9/9/08, German Monfort [EMAIL PROTECTED] wrote: [...] But I'm getting trouble getting the unit test part working, if I create a new project with $ tg-admin quickstart then choose any name for the project like 'test_project' $ cd test_project $ nosetests I get an ImportError: No

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread Sanjay
it looks like most are specically for Java. Anybody a good idea for a book to use when working with Python instead of Java? I am not aware of any book, but precisely these steps should get you going: 1. Download EasyEclipse (http://easyeclipse.org/site/distributions/ lamp.html) and

[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread rihad
On Sep 9, 12:16 pm, Florent Aide [EMAIL PROTECTED] wrote: On 9/9/08, rihad [EMAIL PROTECTED] wrote: I looked into the sqlite.py of SA (0.4.6 here) and found this code: http://paste.turbogears.org/paste/6129 could you try both imports they are trying in a simple python shell and then

[TurboGears] Getting list of tg.scheduler tasks

2008-09-09 Thread platten
Hello All, I would like to know if there is a quick way of getting a list of scheduled tasks from the tg.scheduler? I know that the add_*_task method() returns the task, but I really would like to be able to pull the tasks directly from the scheduler. Any help would be most appreciated. Thanks,

[TurboGears] ${...} not working inside Javascript in Genshi

2008-09-09 Thread jitesh
Hi All, In a Genshi template, I am using the following code (taken from Wiki20) inside a Javascript function: var d = loadJSONDoc(${std.url('/pagelist', tg_format='json')}); It does not work. While I gave an alert(${std.url('/pagelist', tg_format='json')}), it is displayed as is. Seems

[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread Florent Aide
On 9/9/08, rihad [EMAIL PROTECTED] wrote: On Sep 9, 12:16 pm, Florent Aide [EMAIL PROTECTED] wrote: On 9/9/08, rihad [EMAIL PROTECTED] wrote: I looked into the sqlite.py of SA (0.4.6 here) and found this code: http://paste.turbogears.org/paste/6129 could you try both

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread Cecil Westerhof
2008/9/9 Sanjay [EMAIL PROTECTED]: it looks like most are specically for Java. Anybody a good idea for a book to use when working with Python instead of Java? I am not aware of any book, but precisely these steps should get you going: 1. Download EasyEclipse

[TurboGears] Re: ${...} not working inside Javascript in Genshi

2008-09-09 Thread dazza
Is the Javascript inside a CDATA block, genshi doesn't process JS inside it. On Tue, Sep 9, 2008 at 10:00 AM, jitesh [EMAIL PROTECTED] wrote: Hi All, In a Genshi template, I am using the following code (taken from Wiki20) inside a Javascript function: var d =

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread oliver
If you want to customize your eclipse installation by just clicking what you want out of nearly all common features/plugins available then you can use yoxos: http://ondemand.yoxos.com/geteclipse/start On Sep 9, 11:52 am, Cecil Westerhof [EMAIL PROTECTED] wrote: 2008/9/9 Sanjay [EMAIL

[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread rihad
On Sep 9, 2:42 pm, Florent Aide [EMAIL PROTECTED] wrote: Ok you got it. I think your BSD packaging installed the sqlite module in site-packages and since you (certainly) created your virtual-env using --no-site-package option the sqlite module was not copied over from site package. You

[TurboGears] Re: Getting list of tg.scheduler tasks

2008-09-09 Thread Christopher Arndt
platten schrieb: I would like to know if there is a quick way of getting a list of scheduled tasks from the tg.scheduler? I know that the add_*_task method() returns the task, but I really would like to be able to pull the tasks directly from the scheduler. Any help would be most

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread Sanjay
I allready installed Eclipse and PyDev. I expect that is okay. Or does EasyEclipse change things of Eclipse? EasyEclipse by default comes with many plugins like subclipse, HTML Editor etc., so that you don't have to install them individually. But if you already have installed Eclipse and

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Christopher Arndt
Graham Dumpleton schrieb: The mod_wsgi package is mentioned and directly/indirectly linked off: http://docs.turbogears.org/1.0/Deployment http://docs.turbogears.org/2.0/Deployment I agree though that there are many options listed there and not obvious why one would use one over

[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread Florent Aide
On 9/9/08, rihad [EMAIL PROTECTED] wrote: Thanks for straightening this out for me! Working like a charm now. I was semi-blindly following the DownloadInstall howto, and dare I say this: their inclusion of --no-site-packages and expecting you to *know* what it's doing there is asking for

[TurboGears] Re: ${...} not working inside Javascript in Genshi

2008-09-09 Thread jitesh
On Sep 9, 3:00 pm, dazza [EMAIL PROTECTED] wrote: Is the Javascript inside a CDATA block, genshi doesn't process JS inside it. I am not using the construct inside CDATA. What I am actually trying is, doing the Wiki20 tutorial using Genshi. Refer http://docs.turbogears.org/1.0/Wiki20/Page6 .

[TurboGears] Re: ${...} not working inside Javascript in Genshi

2008-09-09 Thread Christopher Arndt
jitesh schrieb: On Sep 9, 3:00 pm, dazza [EMAIL PROTECTED] wrote: Is the Javascript inside a CDATA block, genshi doesn't process JS inside it. I am not using the construct inside CDATA. What I am actually trying is, doing the Wiki20 tutorial using Genshi. Refer

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 8, 9:29 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 9, 1:54 pm, AZMel [EMAIL PROTECTED] wrote: On Sep 8, 8:29 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 9, 1:08 pm, AZMel [EMAIL PROTECTED] wrote: On Sep 8, 7:53 pm, Lukasz Szybalski [EMAIL PROTECTED]

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Lukasz Szybalski
I followed the directions for the 1.0 deployment but get a 404 error. The path '/' was not found. [Tue Sep 09 07:14:42 2008] [notice] Apache/2.2.4 (Ubuntu) PHP/ 5.2.3-1ubuntu6.4 proxy_html/2.5 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_wsgi/ 2.0 mod_perl/2.0.2 Perl/v5.8.8 configured -- resuming

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 8:15 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: I followed the directions for the 1.0 deployment but get a 404 error. The path '/' was not found. [Tue Sep 09 07:14:42 2008] [notice] Apache/2.2.4 (Ubuntu) PHP/ 5.2.3-1ubuntu6.4 proxy_html/2.5 mod_ssl/2.2.4 OpenSSL/0.9.8e

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Lukasz Szybalski
On Tue, Sep 9, 2008 at 10:53 AM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 8:15 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: I followed the directions for the 1.0 deployment but get a 404 error. The path '/' was not found. [Tue Sep 09 07:14:42 2008] [notice] Apache/2.2.4 (Ubuntu) PHP/

[TurboGears] Re: Convert \n to br

2008-09-09 Thread gjhames
It works! Thanks to all! On Sep 8, 5:00 pm, Christoph Zwerschke [EMAIL PROTECTED] wrote: gjhames schrieb: Bastian, this error is happening: ExpatError: Error parsing XML file '/home/user/src/edit.kid': div py:content=XML(client.obs.replace('\n', 'br /'))/div This is not well-formed

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 9:05 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: On Tue, Sep 9, 2008 at 10:53 AM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 8:15 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: I followed the directions for the 1.0 deployment but get a 404 error. The path '/' was not found.

[TurboGears] Iowa Python Users Group - First Meeting

2008-09-09 Thread Mike Driscoll
Hi all, I'm not sure how many people on this list are Iowans, but I thought you guys (and girls) would like to know the following: The first meeting date for the Iowa Python Users Group has been decided. Here are the details: Time /

[TurboGears] Problem with logging to email address

2008-09-09 Thread Jim Steil
Hi I'm trying to get my logger to send ERROR log messages to an email address. Here is my logging setup: log.cfg # LOGGING # Logging is often deployment specific, but some handlers and # formatters can be defined here. [logging] [[formatters]] [[[message_only]]] format='*(message)s'

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Lukasz Szybalski
On Tue, Sep 9, 2008 at 3:08 PM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 9:05 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: On Tue, Sep 9, 2008 at 10:53 AM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 8:15 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: I followed the directions for the 1.0

[TurboGears] Adding SMIL file in kid template

2008-09-09 Thread hoboro
Does anyone know if it is possible to view a SMIL file in kid template --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups TurboGears group. To post to this group, send email to turbogears@googlegroups.com To unsubscribe

[TurboGears] Re: ImportError: No module named config

2008-09-09 Thread Florent Aide
On 9/10/08, Zero [EMAIL PROTECTED] wrote: El Tue 09 Sep 2008, Florent Aide escribió: On 9/9/08, German Monfort [EMAIL PROTECTED] wrote: [...] But I'm getting trouble getting the unit test part working, if I create a new project with $ tg-admin quickstart then

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 2:13 pm, Lukasz Szybalski [EMAIL PROTECTED] wrote: On Tue, Sep 9, 2008 at 3:08 PM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 9:05 am, Lukasz Szybalski [EMAIL PROTECTED] wrote: On Tue, Sep 9, 2008 at 10:53 AM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 8:15 am, Lukasz Szybalski

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
Post your WSGI script file so we can see it. Also post the relevant configuration directives from the Apache configuration file for mod_wsgi setup so can see that as well. This way we can see exactly what you have done rather than you saying what you have done. You could have done something

[TurboGears] TurboGears 1.1 Plissken beta1 is out

2008-09-09 Thread Florent Aide
Hi all, I am really happy to announce the immediate availability of TurboGears 1.1b1 codenamed Plissken. This release has been uploaded only on our server pages for the moment and I'll certainly release beta2 tomorrow. The reason is that working with an nice guy on IRC (hello mini-man) we

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 3:55 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: Post your WSGI script file so we can see it. Also post the relevant configuration directives from the Apache configuration file for mod_wsgi setup so can see that as well. This way we can see exactly what you have done rather

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
On Sep 10, 9:05 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 3:55 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: Post your WSGI script file so we can see it. Also post the relevant configuration directives from the Apache configuration file for mod_wsgi setup so can see that as well.

[TurboGears] Re: ImportError: No module named config

2008-09-09 Thread Christopher Arndt
Florent Aide schrieb: On 9/10/08, Zero [EMAIL PROTECTED] wrote: No don't have TG2 nor pylons installed but I do have lots of other python modules of course. I will try a new approach, uninstall every package related to turbogears using apt and then use the python specific

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 4:39 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 9:05 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 3:55 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: Post your WSGI script file so we can see it. Also post the relevant configuration directives from the

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
On Sep 10, 10:08 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 4:39 pm, Graham Dumpleton [EMAIL PROTECTED] You need to have:   turbogears.config.update({'global': {'server.webpath': '/webapps'}}) If it is instead mounted at root then you shouldn't set server.webpath (just to be safe).

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 5:29 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 10:08 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 4:39 pm, Graham Dumpleton [EMAIL PROTECTED] You need to have:   turbogears.config.update({'global': {'server.webpath': '/webapps'}}) If it is instead

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Lukasz Szybalski
http://192.168.1.9/webapps/webapps/ This comes up with the home page but no static content is sent over. Also tg,url('/') returns /webapps which I would have expected / webapps/webapps. Remember that the app was developed with / being returned from tg.url('/'). So is your

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
On Sep 10, 10:42 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 5:29 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 10:08 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 4:39 pm, Graham Dumpleton [EMAIL PROTECTED] You need to have:   turbogears.config.update({'global':

[TurboGears] Re: ImportError: [SOLVED] No module named config

2008-09-09 Thread Zero
El Tue 09 Sep 2008, Christopher Arndt escribió: Florent Aide schrieb: On 9/10/08, Zero [EMAIL PROTECTED] wrote: No don't have TG2 nor pylons installed but I do have lots of other python modules of course. I will try a new approach, uninstall every package related to turbogears using

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 5:46 pm, Lukasz Szybalski [EMAIL PROTECTED] wrote: http://192.168.1.9/webapps/webapps/    This comes up with the home page but no static content is sent over.  Also tg,url('/') returns /webapps which I would have expected / webapps/webapps. Remember that the app was

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Lukasz Szybalski
On Tue, Sep 9, 2008 at 8:09 PM, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 5:46 pm, Lukasz Szybalski [EMAIL PROTECTED] wrote: http://192.168.1.9/webapps/webapps/ This comes up with the home page but no static content is sent over. Also tg,url('/') returns /webapps which I would have

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 6:02 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 10:42 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 5:29 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 10:08 am, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 4:39 pm, Graham Dumpleton [EMAIL

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
On Sep 10, 11:18 am, AZMel [EMAIL PROTECTED] wrote: Stupid question, but do you have any residual mod_rewrite rules in your Apache configuration somewhere pertaining to when you were trying to host TG behind Apache? Graham None.  I had them in a separate file and removed them using

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 6:09 pm, AZMel [EMAIL PROTECTED] wrote: On Sep 9, 5:46 pm, Lukasz Szybalski [EMAIL PROTECTED] wrote: http://192.168.1.9/webapps/webapps/    This comes up with the home page but no static content is sent over.  Also tg,url('/') returns /webapps which I would have expected /

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 6:34 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 11:18 am, AZMel [EMAIL PROTECTED] wrote: Stupid question, but do you have any residual mod_rewrite rules in your Apache configuration somewhere pertaining to when you were trying to host TG behind Apache?

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread Jeff Younker
On Sep 5, 2008, at 11:29 AM, Mark wrote: I just use regular vim with syntax highlighting. Could you guys please name some reasons of why eclipse is nice to work with, and if I can still use the 'vim' way of editing? I can't give you a firm answer for vim. There seem to be many vi-

[TurboGears] Re: Gebruiken van Eclipse

2008-09-09 Thread Jeff Younker
On Sep 5, 2008, at 4:51 PM, Richard Clark wrote: Second for Komodo Edit. Less weighty than eclipse, and more stable in my experience (although I freely admit my last attempt with eclipse/ pydev was some time ago, but from the sounds of broken debugging perhaps things haven't chagned that

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
Wasn't expecting you to replace all existing contents of WSGI script file, but merge that with what you had before, as it was wrapping the TG application. Anyway, doesn't matter as it shows that SCRIPT_NAME and PATH_INFO are what I would expect. Thus, looks to definitely be something happening

[TurboGears] Re: ImportError: No module named pysqlite2

2008-09-09 Thread Lukasz Szybalski
On Tue, Sep 9, 2008 at 6:26 AM, Florent Aide [EMAIL PROTECTED] wrote: On 9/9/08, rihad [EMAIL PROTECTED] wrote: Thanks for straightening this out for me! Working like a charm now. I was semi-blindly following the DownloadInstall howto, and dare I say this: their inclusion of

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
BTW, at this point probably suggest you create a fresh TG instance and implement very simple hello world by following: http://docs.turbogears.org/1.0/GettingStarted/Controller Mount this at suburl like before and see if that responds to requests at correct URLs. In other words, take your

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 8:22 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: BTW, at this point probably suggest you create a fresh TG instance and implement very simple hello world by following:  http://docs.turbogears.org/1.0/GettingStarted/Controller Mount this at suburl like before and see if that

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread Graham Dumpleton
On Sep 10, 1:32 pm, AZMel [EMAIL PROTECTED] wrote: I've been trying that but now I'm getting these errors no matter what I do: [Tue Sep 09 20:26:23 2008] [error] [client 192.168.1.121] mod_wsgi (pid=5666): Target WSGI script '/usr/local/turbogears/stum/ apache/stum.wsgi' cannot be loaded

[TurboGears] Re: Autostart and the apache 500 error - Help needed

2008-09-09 Thread AZMel
On Sep 9, 8:36 pm, Graham Dumpleton [EMAIL PROTECTED] wrote: On Sep 10, 1:32 pm, AZMel [EMAIL PROTECTED] wrote: I've been trying that but now I'm getting these errors no matter what I do: [Tue Sep 09 20:26:23 2008] [error] [client 192.168.1.121] mod_wsgi (pid=5666): Target WSGI

[TurboGears] Can't get tutorial to work

2008-09-09 Thread rihad
I can't get TurboGears 2 at a glance (http://www.turbogears.org/2.0/ docs/main/BasicMoves.html) working. In the part Hello World combines template with controller, Browse http://localhost:8080 to see the change gets you this: 404 Not Found The resource could not be found. :(

[TurboGears] Re: Can't get tutorial to work

2008-09-09 Thread Mark Ramm
Could you post your controller code to paste.turbogears.org? And possibly a traceback? I think that will help us see what's happening On Tue, Sep 9, 2008 at 9:02 PM, rihad [EMAIL PROTECTED] wrote: I can't get TurboGears 2 at a glance (http://www.turbogears.org/2.0/

[TurboGears] Re: TG2 : logout redirection problem behind mod_wsgi

2008-09-09 Thread Mark Ramm
Hmm, I haven't tested this, but is SCRIPT_NAME being set properly in your wsgi environ? I'm guessing that it is, but that there's some redirect code that's not paying attention to SCRIPT_NAME, and generating an absolute URL improperly. On Thu, Sep 4, 2008 at 4:57 PM, GustaV [EMAIL PROTECTED]

[turbogears-commits] r5372 - branches/1.0/turbogears/command

2008-09-09 Thread svn-commits
Author: paj Date: Tue Sep 9 07:57:58 2008 New Revision: 5372 URL: http://trac.turbogears.org/changeset/5372 Log: Tweak to tg-admin sql status Modified: branches/1.0/turbogears/command/sacommand.py Modified: branches/1.0/turbogears/command/sacommand.py

[turbogears-commits] r5373 - branches/1.1/turbogears/qstemplates/quickstart/+package+/tests

2008-09-09 Thread svn-commits
Author: faide Date: Tue Sep 9 16:14:13 2008 New Revision: 5373 URL: http://trac.turbogears.org/changeset/5373 Log: work on #1815. Adding some model tests active by default id identity is active. For the moment the tests work for pure SQLAlchemy, not validated if the Elixir model are

[turbogears-commits] r5375 - branches/1.1

2008-09-09 Thread svn-commits
Author: faide Date: Tue Sep 9 16:47:48 2008 New Revision: 5375 URL: http://trac.turbogears.org/changeset/5375 Log: synched CHANGELOG.txt with 1.0 branch Modified: branches/1.1/CHANGELOG.txt Modified: branches/1.1/CHANGELOG.txt

[turbogears-commits] r5376 - site_resources/eggs

2008-09-09 Thread svn-commits
Author: faide Date: Tue Sep 9 17:01:00 2008 New Revision: 5376 URL: http://trac.turbogears.org/changeset/5376 Log: Adding egg for 1.1 py25 Added: site_resources/eggs/TurboGears-1.1b1-py2.5.egg (contents, props changed) Added: site_resources/eggs/TurboGears-1.1b1-py2.5.egg

[turbogears-commits] r5381 - website/newdocs

2008-09-09 Thread svn-commits
Author: faide Date: Tue Sep 9 18:22:44 2008 New Revision: 5381 URL: http://trac.turbogears.org/changeset/5381 Log: fix some typos after proof reading on staging.turbogears.org Modified: website/newdocs/index.html Modified: website/newdocs/index.html

[TurG-es] you need money without invesment earn weekly$5000to$10000

2008-09-09 Thread vimala
you need money without invesment earn weekly$5000to$1 otherinformations logonto * http://www.AWSurveys.com/HomeMain.cfm?RefID=sureshrania http://www.AWSurveys.com/HomeMain.cfm?RefID=sureshrania

[tg-trunk] Change 5372

2008-09-09 Thread Paul Johnston
Hi, I've just committed a tweak to the 1.0 branch. Not sure where we're up to with branches these days - can someone please merge as appropriate? Thanks, Paul --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[tg-trunk] Re: AppConfig.auto_reload_templates

2008-09-09 Thread Mark Ramm
Sounds like a good idea to me. I'm all for it, as this is definitely a common needs, and in theory all common config changes should he handled declaratively and not require overiding methods on AppConfig. --Mark On Mon, Sep 8, 2008 at 11:11 AM, lmacken [EMAIL PROTECTED] wrote: Hey everyone,

[tg-trunk] Re: Issue with @validate decorator or just general Python annoyance on TG2?

2008-09-09 Thread AaronL
OK, it looks like I was under the mistaken impression that a decorator, since it was being applied to a class method (specifically, a class method in the RootController class), would only be executed when the class method is executed (and therefore after any global variables in the file had

[tg-trunk] Re: TG 1.1beta1 tickets

2008-09-09 Thread Christopher Arndt
Florent Aide schrieb: - http://trac.turbogears.org/ticket/1963 seems quite finished (regarding the beta1 My suggestion for finally resolving this one is to remove the meta tags with the content-type from the quickstart templates completely. The original issue of this ticket is already solved

[tg-trunk] Re: TG 1.1beta1 tickets

2008-09-09 Thread Christopher Arndt
When forging a 1.1 release, we should also pay attention to the tickets in the 1.0.x-bugfix milestone since some of them are relevant to the 1.1/1.5 branches as well. Here's the appropriate ticket query: http://tinyurl.com/5tppdx Atm, in this list, there is an open question for this ticket: