On 4/10/07, Martin J Hsu <[EMAIL PROTECTED]> wrote:
>
> I saw this as a minor inconsistency in how settings are defaulted.
> Not a big deal to me personally.  Django was made by perfectionists
> and I thought I'd point this out.

Django-admin produces a default settings file that contains the most
common user-specified settings. There are _many_ other settings, all
with reasonable default values, that are documented and available for
the user to override if required. I'm afraid I don't see the
inconsistency.

> I don't know if this is the appropriate place/time/etiquette (please
> tell me if this is inappropriate), but I made a simple change to
> implement this behavior:

Regarding ettiqette - small patches like this are ok, but larger ones
should generally be attached to a ticket describing the feature
request.

As for the change itself - I just don't see why this is required. As
you point out, what you are trying to achieve (derive context
variables from the request) can be done by defining a context
processor.

What you are proposing would complicate the convenience mechanism of
allowing simple callables in extra_context, in the name of duplicating
functionality that is already possible by defining a context
processor. Why is this a desirable change?

> ).  Can you get a timestamp from an HttpRequest?

No, because it isn't a property of the request.

> I definitely see that as a difference in the overhead.  With that in
> mind, wouldn't having a built in tag (part of the template language
> proper) be a good solution?  After all, it's just a call to
> time.localtime() or such.

You mean, something like:
http://www.djangoproject.com/documentation/templates/#now
?

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to