Looking for a developer

2011-03-04 Thread Colleen
I'm representing an international company that needs a website developed fast. (15weeks). We have the RFP to send out (today - March 4th) and are looking for interested developers. No parties will be considered after today. Sorry. Tight turnaround. -- You received this message because you are su

RE: SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
, Apache, mod_wsgi and nginx On Tue, Aug 10, 2010 at 5:00 PM, Colleen A Josephson mailto:cjos...@mit.edu>> wrote: Unfortunately I'm not very well versed in proxying and SSL, etc. I'm not sure I understand how mod WSGi eliminates the need for SSLRedirect. I implemented the Lincoln

RE: SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
at 2:49 PM, Colleen A Josephson mailto:cjos...@mit.edu>> wrote: I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could I still use SSLRed

SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could I still use SSLRedirect middleware? Thanks, -Colleen -- You received this message

SSL with Django, Apache, mod_wsgi and nginx

2010-08-10 Thread Colleen A Josephson
I just set up a site that uses nginx to server static media and Apache/mod_wsgi to deal with the Django stuff. How would I go about dealing with SSL? Would the setup be on the nginx end or the Apache end? Could I still use SSLRedirect middleware? Thanks, -Colleen -- You received this message

RE: User Registration: Looking for tips

2010-07-29 Thread Colleen A Josephson
f the older irrelevant documentation in order to find instructions that worked. -Colleen From: django-users@googlegroups.com [django-us...@googlegroups.com] On Behalf Of strayhand [tobyb...@gmail.com] Sent: Thursday, July 29, 2010 11:13 AM To: Django

[SOLVED]: Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
jango.contrib.auth.views.login', {'template_name': 'reg\ istration/login.html', 'SSL' : True}), From: django-users@googlegroups.com [django-us...@googlegroups.com] On Behalf Of Colleen A Josephson [cjos...@mit.edu] Sent: Monday

Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
SSL' : True} option in urls.py, the page loads fine. Any help is greatly appreciated. -Colleen -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this

Caught TypeError while rendering: unhashable type: 'dict'

2010-07-26 Thread Colleen A Josephson
SSL' : True} option in urls.py, the page loads fine. Any help is greatly appreciated. -Colleen -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this

Viewing user profile fields in the admin

2010-07-19 Thread Colleen A Josephson
UserProfileInline(admin.StackedInline): model = PSSUser class UserProfileAdmin(UserAdmin): inlines = [UserProfileInline] admin.site.register(User, UserProfileAdmin) Any suggestions? Thanks, -Colleen -- You received this message because you are subscribed to the Google Groups "Django

broken default view of the django admin site

2010-07-15 Thread Colleen A Josephson
es', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.messages', 'pssDjango.polls', # Uncomment the next line to enable the admin: 'django.contrib.admin', ) #secure cookies SESSION_COOKIE_SECURE = Tru

order_with_respect_to and edit_inline in MR

2006-06-06 Thread Colleen Owens
nline interface by subclassing BoundRelatedObject. I remember mention back in February that Jacob was working on changing this, but I haven't been following the list closely enough to keep up with this and I can't find anything from searching the

Re: MySQL + FastCGI + Dreamhost = Trouble with foreign key in admin

2006-03-02 Thread Colleen Owens
s all foreign keys edited inline in my models. Thanks for any help anyone can provide. I'm supposed to have this installed to show the prototype to a client on Monday and this is kind of a show stopper. Colleen Colleen Owens wrote: > I'm not sure what query the admin interface is sending

Re: MySQL + FastCGI + Dreamhost = Trouble with foreign key in admin

2006-03-02 Thread Colleen Owens
ql_exceptions.OperationalError: (1093, "You can't specify target table 'polls_choices' for update in FROM clause") >>> Julio Nobrega wrote: > Can you paste the query here? I think the problem is an unsupported > feature by Mysql... Do you have another Mysql i

Re: MySQL + FastCGI + Dreamhost = Trouble with foreign key in admin

2006-03-01 Thread Colleen Owens
I forgot to say this is with current Django trunk. -- Forwarded message -- From: Colleen Owens Date: Thu, 02 Mar 2006 03:34:08 - Subject: MySQL + FastCGI + Dreamhost = Trouble with foreign key in admin To: "Django users" I'm getting an error when I try to m

MySQL + FastCGI + Dreamhost = Trouble with foreign key in admin

2006-03-01 Thread Colleen Owens
I'm getting an error when I try to modify a foreign key edited inline in the admin interface using MySQL + FastCGI on a Dreamhost account. I get the same type of error when I try to modify a Poll object (with inline Choices) from the tutorial, so I know it's not my model that's the problem. I've

Re: custom admin view for edit_inline object

2006-02-11 Thread Colleen Owens
tever > without making the core system depend on the admin code. Okay, I get it now. Sorry, I need to read more carefully. It would save me a lot of time. Colleen

Re: custom admin view for edit_inline object

2006-02-09 Thread Colleen Owens
n admin_modify, but this isn't very nice. Any suggestions? All ideas I can come up with involve changing the admin code. Colleen

Re: custom admin view for edit_inline object

2006-02-09 Thread Colleen Owens
change_form template to see this code? Do I add my own change_form template that inherits from the admin change_form and just has an extra include statement? Thanks for all the help, Edgars and Robert. Colleen

Re: custom admin view for edit_inline object

2006-02-09 Thread Colleen Owens
n my own, except that I added a new section of the change_form template that could be overridden. Colleen

Re: custom admin view for edit_inline object

2006-02-08 Thread Colleen Owens
a handle on all this so sometimes I feel like I'm doing things in a very convoluted way. Thanks. Colleen

custom admin view for edit_inline object

2006-02-08 Thread Colleen Owens
way to just override this file for this one module, but I've been getting confused. Any help here would be really appreciated. Colleen

Re: application level settings

2006-01-12 Thread Colleen Owens
On 1/11/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 1/11/06, Colleen Owens <[EMAIL PROTECTED]> wrote:>  My latest question - I want to have some settings that apply to an> application (not the objects within that application's model but to the > application as a w

scheduling capabilities?

2006-01-11 Thread Colleen Owens
And another question quick on the heels of the last one...Does Django have any built-in scheduling capabilities, like "run X every 15 minutes"? Or should I stick with Twisted for that? Thanks again. Colleen

application level settings

2006-01-11 Thread Colleen Owens
can do this by writing some basic Python code and a custom view for the admin interface. This seems like a more general problem though, so I was wondering if Django has some built-in way of handling this. Thanks! Colleen

Re: customizing appearance of foreign key edited inline

2006-01-10 Thread Colleen Owens
On 1/6/06, Adrian Holovaty <[EMAIL PROTECTED]> wrote: On 1/4/06, Colleen Owens <[EMAIL PROTECTED]> wrote:>  I'm having trouble figuring out how to customize the appearance of a> foreign key that's edited inline in the admin interface. For example, if I > wanted to c

Fwd: customizing appearance of foreign key edited inline

2006-01-05 Thread Colleen Owens
I'm resending this question because I'm still having trouble figuring this out. I'm interested in customizing how a inline-edited foreign key appears in the admin interface. Is there some way to do this? Thanks.-- Forwarded message ------From: Colleen Owens <[EMA

customizing appearance of foreign key edited inline

2006-01-04 Thread Colleen Owens
the votes and choices are displayed, is there a way to do this? Thanks. Colleen

Re: help passing data from view to template

2005-12-21 Thread Colleen Owens
Okay, yeah this was a dumb question, foolishly asked before I got through part 4 of the tutorial. I see now that calling get_link_list from within my template will do what I need. I didn't realize that get_link_list would preserve ordering.On 12/21/05, Colleen Owens <[EMAIL PROTECTED]>

help passing data from view to template

2005-12-21 Thread Colleen Owens
    {% for link in date %}     {{ link.title }}     {% endfor %} {% endfor %} Thanks for your help! Colleen