Re: Automatically hashed passwords

2008-01-03 Thread mickey ristroph
I am using 0.96, but switching to svn now. Thanks for the pointer! I'll look for it when I am done switching over. On Dec 28 2007, 5:11 pm, Alex Koshelev <[EMAIL PROTECTED]> wrote: > What version of django do you use? In trunk there is classic password/ > confirm schema. > > On 29 дек, 01:39, mic

Re: can't view my app in the admin page

2008-01-31 Thread mickey ristroph
Did it actually add tables for that app when you synced the db? Did you add the app to your INSTALLED_APPS? On Jan 31, 8:44 pm, aym35 <[EMAIL PROTECTED]> wrote: > hey Guys, > > * warning: this is a beginner question! > > I created a django project and a simple app... I added a simple class > in

Re: trouble with mod_python configuration

2008-01-31 Thread mickey ristroph
I am not sure I understand your setup. What is the world is / dashboard/? Why is Apache looking for that? What is the path of your reviews project? Is it actually in /var/www/? On Jan 31, 3:00 pm, pouakai68 <[EMAIL PROTECTED]> wrote: > I am trying to get a handle on how to configure django/revi

Persistent data (other than sessions)

2008-01-31 Thread mickey ristroph
I have a view that works something like this: def graph_search(request): g = build_graph() result = search_graph(g, some_parameters_from_request) return render_to_response('template.html',{'result': result}) build_graph() queries the DB and builds the graph in memory, which takes about

Re: Persistent data (other than sessions)

2008-02-13 Thread mickey ristroph
Dan- Thanks a lot for the ideas. I tried the first suggestion, but get an UnboundLocalError, local variable 'graph' referenced before assignment. Not sure how to fix this. I also tried the following: local_data = threading.local() local_data.__dict__.setdefault('graph', None) if not

Re: Persistent data (other than sessions)

2008-02-13 Thread mickey ristroph
graph() result = search_graph(final_graph, some_parameters_from_request) return render_to_response('template.html',{'result': result}) Thanks again, Dan! On Feb 13, 6:42 am, mickey ristroph <[EMAIL PROTECTED]> wrote: > Dan- > > Thanks a lot for the ideas. &

Automatically hashed passwords

2007-12-28 Thread mickey ristroph
Does anyone have a good way to have the replace the alg$salt$hexdigest input for the Add User admin page with a more traditional password/ password confirmation input? I would still like the password encrypted in the database. --~--~-~--~~~---~--~~ You received this