Pylons does not install without svn

2007-08-06 Thread cropr
When I do setuptools Pylons on a freshly installed box, the version 0.9.6rc2 is being installed. I was a little surprised not to get the 0.9.5 release by default. The installation breaks as PasterScript requires an svn version. - Although I can install subversion on the machine to solve it, I

sqlalchemy is returning the wrong data

2007-08-06 Thread jose
I have a perplexing problem and I'm really hopping that there is a setting or something stupid that I've missed. Here is the issue, I have an application most of my page data is coming from a postgres database. I've designed an admin interface which allows you to edit the database, however,

Re: sqlalchemy is returning the wrong data

2007-08-06 Thread askel
let me guess, you do not clear database session before/after each request On Aug 6, 12:02 pm, jose [EMAIL PROTECTED] wrote: I have a perplexing problem and I'm really hopping that there is a setting or something stupid that I've missed. Here is the issue, I have an application most of my

Re: Tesla issue when using create_sql

2007-08-06 Thread beachcoder
Do you have a full stacktrace for this ? On Aug 5, 6:19 pm, Lee Connell [EMAIL PROTECTED] wrote: I get this when attempting to create the sql. :~/workspace/myapp/myapp$ paster create_sql development.ini An unknown error occurred. module 'myapp' from

Re: sqlalchemy is returning the wrong data

2007-08-06 Thread Mike Orr
On 8/6/07, jose [EMAIL PROTECTED] wrote: How do I clear the database session? I thought sacontext took care of that? del sac.session_context.current This is normally put in the base controller before the subclass call. If you don't do this before the different users, it will hold records in

Re: Tesla issue when using create_sql

2007-08-06 Thread Lee Connell
That's all i get at console, what else should I do to get more details? On Mon, 2007-08-06 at 09:12 -0700, beachcoder wrote: Do you have a full stacktrace for this ? On Aug 5, 6:19 pm, Lee Connell [EMAIL PROTECTED] wrote: I get this when attempting to create the sql.

Re: Tesla issue when using create_sql

2007-08-06 Thread beachcoder
Try running paster from the myapp directory (i.e. the base directory of your project), not myapp/myapp. On Aug 6, 3:18 pm, Lee Connell [EMAIL PROTECTED] wrote: That's all i get at console, what else should I do to get more details? On Mon, 2007-08-06 at 09:12 -0700, beachcoder wrote: Do you

Re: Tesla issue when using create_sql

2007-08-06 Thread Lee Connell
myapp is also the name of my project through eclipse so myapp/myapp is base, as you can see there is a 3rd myapp. :~/workspace/myapp/myapp$ ls development.ini ez_setup myapp README.txt setup.py docs MANIFEST.in myapp.egg-info setup.cfg test.ini

Re: sqlalchemy is returning the wrong data

2007-08-06 Thread Jose Galvez
Dear Mike, I added the del sac.session_context.current to my base.py file and that fixed the problem. Thank you so much for the help I can't tell you how much this was driving me nuts Jose On 8/6/07, jose [EMAIL PROTECTED] wrote: Thanks Mike, So just to clarify I need to del the current