Re: DJango doesn't work with Oracle 11g on Windows 8

2011-09-26 Thread Benjamin Welton
wouldn't start with an Oracle setup. Cheers, AT On Mon, Sep 26, 2011 at 6:14 PM, Benjamin Welton mailto:benjamin.r.wel...@wmich.edu>> wrote: Windows 8? Its possible he's using it on Windows 8 since the developer preview is available. If he actually is id be cu

Re: DJango doesn't work with Oracle 11g on Windows 8

2011-09-26 Thread Benjamin Welton
Windows 8? Its possible he's using it on Windows 8 since the developer preview is available. If he actually is id be curious to know if everything works ok on windows 8 with python/django. Ben On 09/26/2011 04:10 PM, Andre Terra wrote: Windows 8? On Sat, Sep 24, 2011 at 5:27 AM, Ben

Re: DJango doesn't work with Oracle 11g on Windows 8

2011-09-24 Thread Benjamin Welton
Hey Alec, django.core.exceptions.ImproperlyConfigured: Error loading cx_Oracle module: DLL load failed: %1 is not a valid Win32 application. Do you have the visual c redistributable installed for 64bit and the Python for windows extensions for 64bit installed? Ben On 9/24/2011 3:17 AM, Alec T

Re: Section 508 compliance for Django for grant application

2011-05-25 Thread Benjamin Welton
https://code.djangoproject.com/ticket/5635#comment:1 Unless there has been a recent change to this policy, your going to have to fill out the section 508 yourself. Ben On 05/25/2011 04:00 PM, Lisabeth wrote: Hello, I'm part of a bioinformatics team at a small, non-profit biomedical research

Re: Geodjango tutorials?

2010-04-03 Thread Benjamin Welton
Awesome thanks alot derek. Ben derek wrote: On Apr 3, 7:54 pm, derek wrote: On Apr 3, 4:16 am, Benjamin Welton wrote: Hey All, Im wondering if anyone has some good links to geodjango tutorials (outside of the main one featured on geodjango.org)? Specifically any

Geodjango tutorials?

2010-04-02 Thread Benjamin Welton
Hey All, Im wondering if anyone has some good links to geodjango tutorials (outside of the main one featured on geodjango.org)? Specifically any related to Google Map integration (since that subsection appears to be missing in the current doc's). Thanks Ben -- You received this message b

Re: global name 'self' is not defined

2010-04-02 Thread Benjamin Welton
def __init__(temsilci = None, *args, **kwargs) should include self as the first argument. def __init__(self, temsilci = None, *args, **kwargs) Ben H.İbrahim Yılmaz wrote: Hi all, I get "global name 'self' is not defined" error what is the problem? Thanks. from django.db import models from d

Re: Newbie question : passing control from one view function to another. I get a function does not return an HttpResponse object error

2010-01-17 Thread Benjamin Welton
Hey harijay, A little warning up front, im fairly new to django as well so if there is some issue with my response sorry in advance. "return HttpResponse()" actually returns just an HttpResponse object. If you are coming from ROR its functionality is not identical to render (which wil

Re: django configuration on win/linux

2009-12-24 Thread Benjamin Welton
7;ini' file. > > Be sure to check wiki at http://code.djangoproject.com/wiki/SplitSettings - > there is nice write up about settings module. > > Good luck. > > On Dec 24, 2009, at 11:25 PM, Benjamin Welton wrote: > > >> Hey all, >> >>Im fairly new to django a

django configuration on win/linux

2009-12-24 Thread Benjamin Welton
Hey all, Im fairly new to django and iv got a quick question on what the proper way to set up a django web application is when in a cross platform deployment environment (such as setting up paths, ect). Im currently using the Apache wsgi -> django connector on both environments. Im thinkin