Re: 0.9 final

2006-07-28 Thread Alexandre CONRAD
hq = headquarters ? :) hq = high quality ? :) -- Alexandre CONRAD - TLV FRANCE Research Development --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to

Re: 0.9 final

2006-07-28 Thread [EMAIL PROTECTED]
0.9 is out and pylons needs serious promotion in the net.. some diggs, slashdots, oreyllyes and so on would be nice. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group,

Re: 0.9 final

2006-07-28 Thread Ben Bangert
On Jul 28, 2006, at 3:12 AM, Alex Greif wrote: my web application still uses Pylons 0.8. After upgrading to 0.9, do I have to convert my project in some way, of is 0.9 fully backwards compatible? There is a high degree of backwards compatibility, and some projects will run without any

0.9 Error python ez_setup.py Pylons[full]

2006-07-28 Thread [EMAIL PROTECTED]
When I try to install Pylons I get this error message a bunch of times and then it errors out. xxx=a whole bunch of different numbers. src_/namemapper.c:XXX : warning then it says it failed gcc with exit status of 1. Please help, I am new to linux

Re: 0.9 Error python ez_setup.py Pylons[full]

2006-07-28 Thread [EMAIL PROTECTED]
Yes, I used apt-get install cheetah it worked fine, tried to install pylon and the same errors. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to

Re: 0.9 Error python ez_setup.py Pylons[full]

2006-07-28 Thread Jose Galvez
I'm not sure which version of cheetah is officially supported via apt-get, try and get the latest build directly from cheetah and build that. Your error looks like something related to compiling the namemapper extension. if building directly from the cheetah source gives you errors we'll have to

Re: 0.9 Error python ez_setup.py Pylons[full]

2006-07-28 Thread [EMAIL PROTECTED]
That is actually what I am running Ubuntu 6.06 Server So you would like me to download the latest cheetah and install that then see? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to

Re: 0.9 Error python ez_setup.py Pylons[full]

2006-07-28 Thread [EMAIL PROTECTED]
but there only appears to be one dist so far.. http://sourceforge.net/project/showfiles.php?group_id=28961package_id=20864release_id=375898 --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To

cleaning up leftover eggs

2006-07-28 Thread Jose Galvez
I don't know how much of a problem this is for other people, but even though I love eggs, I hate all the left over eggs that are left behind by the easy-install -U command. So I wrote a small script that cleans up the leftovers for me. If anyone has any comments on how to make it better please

Minor issue in pylons-0.9

2006-07-28 Thread Matthew Burgess
Hi folks. After creating a new pylons application, setup.py contains the following: install_requires=[Pylons==dev,=0.9dev-r742] I'd expect that to simply be Pylons==0.9 now that 0.9 is final, no? Thanks, Matt. --~--~-~--~~~---~--~~ You received this message

Re: cleaning up leftover eggs

2006-07-28 Thread Davo
Thanks for this very useful script. My compulsive nature really appreciates it. :) Running RHEL4, my egg names are mixed-case; some start upper, some start lower. I removed two calls to .lower(), - one in getListedEggs() and one in getRealEggs(), so as to preserve the original egg names in

Re: Minor issue in pylons-0.9

2006-07-28 Thread Philip Jenvey
On Jul 28, 2006, at 1:11 PM, Matthew Burgess wrote: Hi folks. After creating a new pylons application, setup.py contains the following: install_requires=[Pylons==dev,=0.9dev-r742] I'd expect that to simply be Pylons==0.9 now that 0.9 is final, no? Yes. Doh! Thanks for pointing

Authkit minor doc issues

2006-07-28 Thread Matthew Burgess
I'm looking at http://www.pylonshq.com/project/pylonshq/browser/AuthKit/trunk/docs/manual.txt: --- and add ``web==0.6.0`` to your ``setup.py`` file's ``install_requires`` line so that it looks like this:: install_requires=[Pylons==0.9, web==0.6.0, AuthKit=0.2.2b], --- AuthKit=0.2.2b doesn't

QuickWiki Tutorial

2006-07-28 Thread Alex Ross
I had a couple of issues getting QuickWiki installed. Firstly, I don't have PostgreSQL installed, so I tried to switch to an sqlite backend. Apparently, you have to use 4 slashes to specify an absolute directory with sqlalchemy. I guess this is more of an sqlalchemy issue, but still, it took

Re: QuickWiki Tutorial

2006-07-28 Thread Philip Jenvey
On Jul 28, 2006, at 3:28 PM, Alex Ross wrote: To get the drag and drop delete working I also made the following change: --- quickwiki/controllers/page.py.old 2006-07-28 15:01:44.0 -0700 +++ quickwiki/controllers/page.py 2006-07-28 15:24:45.0 -0700 @@ -39,8 +39,9

Re: QuickWiki Tutorial

2006-07-28 Thread Philip Jenvey
On Jul 28, 2006, at 3:35 PM, Philip Jenvey wrote: Thanks for the patches, I've updated QuickWiki and the other examples to fix the params problems Note: only in subversion. The version of QuickWiki on cheeseshop isn't updated yet. -- Philip Jenvey

Re: cleaning up leftover eggs

2006-07-28 Thread primco
awesome. i was just thinking yesterday that either this script must exist or i'd write it out of frustration very soon. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group,

exceptions.ImportError: No module named lib.base

2006-07-28 Thread Alagu Madhu
Hello, os : windows xp pylons:pylons-0.9dev_r1122 I am getting the following error message: Error Traceback clear this clear this URL: http://localhost:5000/test sys.path: [ 'C:\\PYTHON24\\SCRIPTS', 'c:\\python24\\lib\\site-packages\\nose-0.9.0-py2.4.egg',

Re: cleaning up leftover eggs

2006-07-28 Thread Jose Galvez
NTFS is schizophrenic, being case insensitive, but letting you user mixed case in your names. The reason I has to use lower, was that when I got the actual list of eggs with listdir it returned mixed case names, and the names form the pth file were all in lowercase. The problem came when I tried