Re: Session Issue

2007-06-20 Thread xlyz


  However, when beaker attempts to write session data, it is always
  attempting to create the directory None\n to no avail.  If I run the
  application with the paster server, on my local machine, with the
  default ini settings, a None directory is created in my current
  working directory with the session data.  There seems to be a
  disconnect between my paste configuration, and the path info
  ultimately passed down to the beaker session.  Hopefully it's
  something simple, but I cannot seem to figure it out.  Any ideas?

had the same problem. solved upgrading to svn version 2033 (was latest
couples of day ago).

bye


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



shopping cart based on pylons?

2007-08-15 Thread xlyz


is there a shopping cart based on pylons? 

xlyz


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-16 Thread xlyz


 update to beta3 plz
 

I'm not able to install it
it creates an empty directory

# easy_install  SQLAlchemy-0.4.0beta3.tar.gz 
Processing SQLAlchemy-0.4.0beta3.tar.gz
Running SQLAlchemy-0.4.0beta3/setup.py -q bdist_egg
--dist-dir /tmp/easy_install-99467Z/SQLAlchemy-0.4.0beta3/egg-dist-tmp-Cri_zJ
zip_safe flag not set; analyzing archive contents...
Adding SQLAlchemy 0.4.0beta3 to easy-install.pth file

Installed /usr/lib/python2.5/site-packages/SQLAlchemy-0.4.0beta3-py2.5.egg
Processing dependencies for SQLAlchemy==0.4.0beta3
Finished processing dependencies for SQLAlchemy==0.4.0beta3
# ls -R /usr/lib/python2.5/site-packages/SQLAlchemy-0.*
/usr/lib/python2.5/site-packages/SQLAlchemy-0.4.0beta3-py2.5.egg


any suggestion?



--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-16 Thread xlyz

Il giorno ven, 17/08/2007 alle 01.49 +0200, xlyz ha scritto:
 
  update to beta3 plz
  
 I'm not able to install it
 it creates an empty directory
 
 /usr/lib/python2.5/site-packages/SQLAlchemy-0.4.0beta3-py2.5.egg
 
never mind. it's not a directory, but a zipped file

/me hides in a corner 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-16 Thread xlyz


 You may want to check the article again in 24 hours in case SQLAlchemy
 experts have corrected any errors.  One thing I'm adding right now is
 the pylons_scope function.
 

I'm not an expert, but in your model you need to add:
import pylons
or you get:
type 'exceptions.NameError': name 'pylons' is not defined

and there is a typo on line 14:

-table1 = table(table1, metadata, 
+table1 = Table(table1, metadata, 

bye


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---



Re: New SQLAlchemy tutorial; SAContext is dead

2007-08-16 Thread xlyz

Il giorno ven, 17/08/2007 alle 02.34 +0200, xlyz ha scritto:
 
  You may want to check the article again in 24 hours in case SQLAlchemy
  experts have corrected any errors.  One thing I'm adding right now is
  the pylons_scope function.
  
 
 I'm not an expert, but in your model you need to add:
 import pylons
 or you get:
 type 'exceptions.NameError': name 'pylons' is not defined
 
 and there is a typo on line 14:
 
 -table1 = table(table1, metadata, 
 +table1 = Table(table1, metadata, 
 
 bye
 

and in the relation example Address and Person class are not defined.

bye


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
pylons-discuss group.
To post to this group, send email to pylons-discuss@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/pylons-discuss?hl=en
-~--~~~~--~~--~--~---