Re: Module import errors relating to site when using GAE SDK 1.1.3

2008-09-18 Thread Josh Heitzman
Vargas [EMAIL PROTECTED] wrote: On Wed, Sep 17, 2008 at 7:15 PM, Josh Heitzman [EMAIL PROTECTED] wrote: Well, it turns out this just something wrong with GAE's SDK upgrade process. I uninstalled 1.1.1 before installing 1.1.3, but apparently that isn't good enough, as you need to delete

Re: Module import errors relating to site when using GAE SDK 1.1.3

2008-09-18 Thread Josh Heitzman
:00 am, Jorge Vargas [EMAIL PROTECTED] wrote: On Wed, Sep 17, 2008 at 7:15 PM, Josh Heitzman [EMAIL PROTECTED] wrote: Well, it turns out this just something wrong with GAE's SDK upgrade process. I uninstalled 1.1.1 before installing 1.1.3, but apparently that isn't good enough, as you need

Re: When using GAE locally, which site.py is supposed to be loaded?

2008-09-18 Thread Josh Heitzman
17, 2008 at 5:06 PM, Josh Heitzman [EMAIL PROTECTED] wrote: Your general one or the one in your project directly? will you be more specific, I'm not aware of any site.py that needs to be loaded. are you talking about appengine monkey? --~--~-~--~~~---~--~~ You

Module import errors relating to site when using GAE SDK 1.1.3

2008-09-17 Thread Josh Heitzman
, Josh Heitzman --~--~-~--~~~---~--~~ 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

Re: Module import errors relating to site when using GAE SDK 1.1.3

2008-09-17 Thread Josh Heitzman
, descr = imp.find_module('site', [item]) which then failed because imp does not have find_module. On Sep 17, 2:02 pm, Mike Orr [EMAIL PROTECTED] wrote: On Wed, Sep 17, 2008 at 1:33 PM, Josh Heitzman [EMAIL PROTECTED] wrote: I just uninstalled GAE SDK 1.1.1 and installed 1.1.3 and when I tried

When using GAE locally, which site.py is supposed to be loaded?

2008-09-17 Thread Josh Heitzman
Your general one or the one in your project directly? --~--~-~--~~~---~--~~ 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

Re: Module import errors relating to site when using GAE SDK 1.1.3

2008-09-17 Thread Josh Heitzman
, Josh Heitzman [EMAIL PROTECTED] wrote: I just uninstalled GAE SDK 1.1.1 and installed 1.1.3 and when I tried to run my app I got the following error: File c:\Tools\GAE\google\appengine\tools\dev_appserver.py, line 1271, in LoadModuleRestricted description) File d:\Enlistments

beaker 1.0+ broken on GAE

2008-08-23 Thread Josh Heitzman
I'm wondering the same thing. Just hit an issue with it's use of os.getpid no longer being conditioned on the API actually be supported as of 1.0, so its now broken on GAE. In session.py the code used to be: def _create_id(self): if hasattr(os, 'getpid'): pid =

Re: beaker 1.0+ broken on GAE

2008-08-23 Thread Josh Heitzman
GoogleNamespaceManager.__init__ is also in need of three new key word arguments: digest_filenames, log_file, data_dir On Aug 23, 2:17 pm, Josh Heitzman [EMAIL PROTECTED] wrote: I'm wondering the same thing. Just hit an issue with it's use of os.getpid no longer being conditioned on the API

Re: AuthKit: support for encrypted passwords

2007-02-01 Thread Josh Heitzman
On Feb 1, 7:09 am, James Gardner [EMAIL PROTECTED] wrote: This already exists actually. You just need to specify a custom valid_password() function (or digest_password() if you are using HTTP digest). It is documented here:http://authkit.org/docs/manual.html#basic-http-1-0-authentication

Re: AuthKit: support for encrypted passwords

2007-01-17 Thread Josh Heitzman
Robert Sayre wrote: Perhaps he means authentication that works with simple forms or basic, but stores the password as sha1(salt + password). The credential would then be stored as username:salt:hexdigest This is fairly standard practice, and provides decent security for casual apps. It's

Re: AuthKit: support for encrypted passwords

2007-01-17 Thread Josh Heitzman
I dug around a bit. What Unix systems used to was called crypt. Some are currently a salt + MD5, but apparently the better algorithm is considered to be bcrypt, which includes a 128-bit salt and uses are variable cycle encryption algorithm. A python implementation of bcrypt can be had here

AuthKit: support for encrypted passwords

2007-01-16 Thread Josh Heitzman
Does AuthKit have support for encrypted passwords? If not, are there any plans to add such support? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups pylons-discuss group. To post to this group, send email to