Uninstall before switching to svn?

2006-12-20 Thread Hull, Dave


I'm looking to install from the Subversion repository. I'm currently running 
0.95 but would like to try the newforms stuff out. How do I uninstall the old 
version before switching to the new version?

Sorry if this is obvious or documented elsewhere. I've searched the 
Documentation and grepped through the svn and 0.95 tar files but matched 
nothing.

I realize the stuff in the svn repo may not be considered "stable" or 1.0, but 
is it good enough for non-critical use?

Please advise and thanks.

--
Dave Hull

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



Admin Interface Collapse ForeignKey Fields

2006-12-08 Thread Hull, Dave

Django newbie here...

I've got a model that has several ForeignKey fields that are all set to
edit_inline=True. In the model that has the 

class Admin:
pass

code, I'm using 

fields = ((None, {'classes': 'collapse', '...')}),) 

in order to be able to Hide/Show sections as needed. Is it possible to
put the ForeignKey fields in this dictionary? That is what Python calls
it right, a dictionary? Similar to a hash in Perl. If so, how do I do
this?

Please advise and thanks.

-- 
Dave Hull

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



RE: How should I store credit cards for offline processing

2006-12-01 Thread Hull, Dave

If you can avoid it at all, don't store any portion of the credit card
holder data. The Payment Card Industry Security Standards doc has all
sorts of wonderful regulations you must follow for dealing with CCs.
There's some great reading here:

https://pcisecuritystandards.org/

If you're able to offload all of this to some third party, you should.
IMHO.

-- 
Dave 

-Original Message-
From: django-users@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Joshua "jag"
Ginsberg
Sent: Friday, December 01, 2006 10:01 AM
To: django-users@googlegroups.com
Subject: Re: How should I store credit cards for offline processing


Don't implement a pub/priv key pair system -- just use GnuPG. And I
would strongly recommend against having the decryption of this data
anywhere near the same machine as the one that stores the encrypted
cc#'s.

For your online processing, I recommend using TrustCommerce and store
the credit card information in their "Citadel" product -- that way you
don't have to store the credit card numbers ever, at all, period, for
any reason, whatsoever.

-jag

On Fri, 2006-12-01 at 15:37 +, Noah wrote:
> I'm working on a site who's not ready to do online processing with a 
> gateway but they want to launch anyways. They would like a secure way 
> to store the credit cards in the database. Does anyone have a good 
> solution for this?
> 
> I was thinking but I'd rather not have to write all the code to 
> implement a pub/priv key pair system where the private key is 
> encrypted so the admin has to login and enter the password for the 
> view to decrypt the key to decrypt the credit cards.
> 
> comments, ideas?
> 
> 
> > 




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



RE: Help with admin views

2006-11-30 Thread Hull, Dave

Check out the bottom of the tutorial (before the Comments section) at
http://www.djangoproject.com/documentation/tutorial2/

There's a line that begins "For full details on customizing the look and
feel of the Django admin site..."

I'm guessing you can copy the templates for the admin site into your
local templates directory and modify them to your heart's content. 

Hope this helps. Lord knows I need some help getting much past what's in
the tutorial and book so far.

-- 
Dave
Living just a few blocks down the road from the Journal World.

-Original Message-
From: django-users@googlegroups.com
[mailto:[EMAIL PROTECTED] On Behalf Of Jim Fritchman
Sent: Wednesday, November 29, 2006 5:55 AM
To: Django users
Subject: Help with admin views


I am hoping some of you can give me a little start as to where I can
read how to alter some of the admin pages.

I have a a Person class in my model and I want to change both the view
of people plus I want to change the form page where people are added and
deleted.

Any links or examples or tutorials who greatly be appreciated.

Thank,
Jim




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