IIS support revived

2008-01-11 Thread Phillip
version. http://pyisapie.sourceforge.net/ Cheers, Phillip --~--~-~--~~~---~--~~ 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 unsubs

Re: IIS 6 PyISAPIe problems

2008-05-10 Thread Phillip
.com/group/pyisapie Thanks, Phillip On May 10, 10:20 am, rcs_comp <[EMAIL PROTECTED]> wrote: > > Traceback (most recent call last): > > File "C:\Python25\Lib\Http\Isapi.py", line 42, in Request > > imp.load_source(Name, Env.SCRIPT_TRANSLATED).Request >

Re: Where is the source code for Practical Django Projects?

2008-07-17 Thread Phillip Parrin
there's also a patch available! Anyways i would really like to have access to the books source code. Kind regards, Phillip Parrin On Jul 9, 12:10 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Wed, Jul 9, 2008 at 3:33 AM, Evan H. Carmi > > <[EMAIL PROTECTED]>

Re: Where is the source code for Practical Django Projects?

2008-07-17 Thread Phillip Parrin
omething the tarball version does not like. When you download Tagging make sure you download the SVN version, or download the patch to fix this problem. (I don't really get why this wasn't updated!) Kind regards, Phillip Parrin On Jul 9, 12:10 pm, "James Bennett" <[EMAIL PROTECTE

Re: Where is the source code for Practical Django Projects?

2008-07-17 Thread Phillip Parrin
his is the same for the link_* templates. - btw great book :D Kinda regards, Phillip Parrin On Jul 17, 9:36 am, "James Bennett" <[EMAIL PROTECTED]> wrote: > On Thu, Jul 17, 2008 at 2:14 AM, Phillip Parrin > > <[EMAIL PROTECTED]> wrote: > > I'm also lo

Re: SVN checkout for users without access to SVN

2008-07-18 Thread Phillip Parrin
there ya go, http://silver.parrin.nl/~phillip/django.tgz On Jul 18, 12:39 pm, warsng <[EMAIL PROTECTED]> wrote: > I cannot install SVN on the machine i am currently accessing the > internet through, is it possible for someone to provide me with a > tarball/zip of the latest SVN

Re: Python in IIS + WSGI

2008-01-15 Thread Phillip Sitbon
Looks like Sourceforge had a problem with the file upload, causing it to be empty - I just fixed it. http://pyisapie.sourceforge.net/ > On Jan 11, 4:37 pm, Phillip Sitbon <[EMAIL PROTECTED]> wrote: > > > Recently (finally) updated the PyISAPIe project. Version 1.0.4 > &g

location of CSS

2008-03-04 Thread Phillip Watts
I can't figure out where to put css files or background images referred to by css. I have: and MEDIA_ROOT = '/home/phil/philproj/media/' ls -al /home/phil/philproj/media total 12 drwxr-xr-x 2 phil phil 4096 2008-03-04 11:57 . drwxr-xr-x 7 phil phil 4096 2008-03-04 12:14 .. -rw-r--r-- 1 phil p

Re: location of CSS

2008-03-04 Thread Phillip Watts
, oh yeah, no slash on the end. That's inconsistent with other settings like MEDIA_ROOT. > > Phillip Watts wrote: > > I can't figure out where to put css files or background images referred > > to by css. I have: > > > > > > and > > MEDIA_ROOT

Re: location of CSS

2008-03-05 Thread Phillip Watts
On Wednesday 05 March 2008 13:37:58 Brian Luft wrote: > Serving static media really has nothing to do with Django. Funny that css and js are considered "static media". In the spirit of templating they should be dynamic. I would characterize them as junk_patched_on_to_a_crappy_platform. But, O

Validation error message shows up twice in admin

2008-06-10 Thread Cave, Phillip
show', 'on') ... large_image = models.ImageField(...validator_list=[large_image_validator]) Thanks! Phillip --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to thi

Re: I need instructions in best way to use django under IIS shared hosting (Python is installed)

2006-06-16 Thread Phillip Sitbon
already has. Please let me know if you have questions, and enjoy! - Phillip [EMAIL PROTECTED] wrote: > Ok, fair points. > > I think that using python in a pure CGI setup is responsible in part of > the lack of performance here. > > Because that, I'm looking how use fastcg

32-bit integers IP address to 4-octet IP address

2011-01-23 Thread Phillip Bailey
s("ip_src") the result is in 32-bit integers, {'ip_src': 3251031814L}{'ip_src': 3251031816L}{'ip_src': 3251031816L} {'ip_src': 3251031816L}{'ip_src': 3251031814L}{'ip_src': 3251031816L} There's any elegant solution that ca

Re: Separating remote vs local settings.py parameters - - “EMAIL”?

2019-03-16 Thread Phillip Moracha
If you take a look at this gist provided by a Udemy instructor and at this specific location , here he wisely recommends separating important local development configuration parameters, such as SECRET _KEY.

please im new to django.Need help understanding small code of django poll app.Highlighted with ******************

2017-04-27 Thread Pachal Phillip
polls/views.py from django.http import HttpResponsefrom django.template import loader from .models import Question def index(request): latest_question_list = Question.objects.order_by('-pub_date')[:5] template = loader.get_template('polls/index.html') please Explain me this

Django with non-SQL databases?

2008-05-25 Thread Phillip B Oldham
Has anyone used django (including its ORM system) with a non-sql db? I'd be interested in learning how django was modified to get the best fit. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To

How nicely does django play in a distributed environment?

2008-06-02 Thread Phillip B Oldham
I'm looking at using django to replace our current CMS application written in PHP. Currently we have two servers behind a load balancer, and everything's nice and stable. We're getting a consistent month-on- month traffic increase though and I'm looking at moving to a more distributed model - loca

Re: How nicely does django play in a distributed environment?

2008-06-03 Thread Phillip B Oldham
On Jun 2, 5:40 pm, "James Bennett" <[EMAIL PROTECTED]> wrote: > Django is the easy part. Replicating your DB is the hard part. This isn't too much of a concern for me. The db we're using currently will scale nicely, and we've already got replication happening for back-up and redundency purposes.

Re: How nicely does django play in a distributed environment?

2008-06-03 Thread Phillip B Oldham
On Jun 2, 5:10 pm, The Code Janitor <[EMAIL PROTECTED]> wrote: > solid enterprise grade examples are > seriously lacking. Do you mean high-traffic'd django sites? I've not really come across many myself. Examples of these would be good. --~--~-~--~~~---~--~~ You re

Full list of Django features?

2008-06-26 Thread Phillip B Oldham
I'm looking to propose python+django for a new project at work, as I feel it will be a good fit. Generally everything is done in PHP, so its going to be a bit of a change. I've already gathered a list of benefits to using python (fully oo, maintainability across developers, etc), now I just need