Fwd: serving static files with apache on windows with mod_python

2007-12-07 Thread bayo
--- Forwarded message --- From: bayo <[EMAIL PROTECTED]> To: django-users@googlegroups.com Cc: Subject: serving static files with apache on windows with mod_python Date: Fri, 07 Dec 2007 14:42:02 +0100 Hi All, I have been trying to setup django on windowsxp with mod_python. I ha

no one on the IRC?

2007-12-24 Thread bayo
Hi All, I have from time to time tried to bump into someone on the #django IRC. Unfortunately, I always get a blank. It seems the french and german #django channels are more active? or maybe its my timezone (africa/lagos)? can someone plese give me a hand on when i am likely to meet people on #

How to submit a documentation patch

2009-03-13 Thread bayo opadeyi
Please can somebody point me to info on submission of documentation patches? -- Bayo Qrapht Software Dev. Co. http://boyombo.blogspot.com "Perfection, then, is finally achieved, not when there is nothing left to add, but when there is nothing left to take away" - Antoine de Sai

signals sent twice

2008-07-12 Thread bayo opadeyi
sent twice? -- Bayo Qrapht Software Dev. Co. http://boyombo.blogspot.com http://www.qrapht.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

orkut - bayo opadeyi wants you to join orkut!

2009-12-13 Thread bayo opadeyi
bayo opadeyi wants you to join orkut. Join now! http://www.orkut.com/Join.aspx?id=4B2528423D64E340&mt=22 * * * What you can do on orkut: - CONNECT with friends and family using scraps and instant messaging - DISCOVER new people through friends of friends and communities - SHARE

linking to external resources

2007-10-11 Thread bayo opadeyi
, i've tried putting the files in /site_media/resources' folder and linking to it from the template via which works well for the .pdf files (they open in the browser), but .chm files try to open in the browser and just shows me lots of (IMHO) garbage Help, anyone? Bayo Qrapht Software Dev

Re: Let makemigrations know a data migration is required ?

2022-08-12 Thread Bayo Izekor
please explain what you want to achieve for better support On Fri, Aug 12, 2022 at 4:57 PM Gav O'Connor wrote: > You can create a data migration using the `--empty` switch. See the docs: > https://docs.djangoproject.com/en/4.1/topics/migrations/#data-migrations > > On Thursday, 11 August 2022 at

Re: Dynamic creation of pages

2023-10-26 Thread Bayo Izekor
# models.py from django.db import models class Title(models.Model): name = models.CharField(max_length=100, unique=True) # Add other fields as needed # views.py from django.shortcuts import render, get_object_or_404 from .models import Title def title_page(request, title_id): title =