Re: How do you recommend to use Hebrew gender-related translations?

2016-12-22 Thread Fergus Cameron
I personally try to use language agnostic message IDs and translate everything (i.e. including English). Your idea of appending the gender is along the same lines and seems logical. On 22/12/2016, Uri Even-Chen wrote: > Hi Django users, > > How do you recommend to use Hebrew

Re: changes are not being published, help!

2015-11-27 Thread Fergus Cameron
I expect a psychic will be required in the early stages. You'll need to try and, at least, make a connection between your website and the subject of this group (i.e. django). But, in truth, I don't expect it will help; I think you probably need to contact whomever built your website for you. On

Re: malicious requests?

2014-12-22 Thread Fergus Cameron
On 22/12/2014, Alasdair Nicol wrote: > [ ... ] > > In Django 1.7, the trailing dot is stripped when performing host > > validation, thus an entry with a trailing dot isn’t required. How odd, since the canonical representation would be to add a dot when one is missing

Altering Settings in Tests leads to strange behaviour

2009-08-24 Thread Fergus
or expected in any way? Could it be due to importing settings at some strange place in app A or B? Am I just going MAD? Thank you in advance, Fergus --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users&q

Re: http 404 is replaced by http 500----------Django-1.0.2-final

2009-03-14 Thread Fergus
On 14 Mar, 04:30, Malcolm Tredinnick wrote: > On Fri, 2009-03-13 at 21:27 -0700, Flank wrote: > > in order to use django/conf/urls/defaults.py, handler404, i did 2 > > things: > > 1:change DEBUG = False in settings.py > > 2:create a 404.html template in the root of

Re: Apache Integration?

2009-03-14 Thread Fergus
> everything works great with the test server. This tells you that the problem is most likely not with your urls.py or any of your Django code, so you've cracked that part. > I again cycled Apache off and on. My "Under Construction" message is > gone but only the only thing returned to a

Re: Moving a Django project to another directory/server

2009-03-14 Thread Fergus
On 14 Mar, 21:42, Rex wrote: > I'd like to use a revision control system to keep up to 3 versions of > my Django project: ... > So far I have been planning to use Bazaar for version control. Good choice. > - How can I simultaneously run two versions of the same

New app-let: django-email-auth

2009-03-13 Thread Fergus
-email-auth Code: http://bazaar.launchpad.net/%7Efrf/django-email-auth/trunk/files Fergus --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to dj

Re: Best practise for using settings in templates

2009-01-19 Thread Fergus
Or you can set up a custom template tag that returns settings values if you only want the settings on particular pages, and don't want to add boilerplate to each view, or have the overhead of a context processor. On Jan 18, 12:25 pm, phoebebright wrote: > Thanks -

Re: Multi Table Inheritance with Mulitple Children

2008-12-01 Thread Fergus
er too. I'm surprised there isn't a more clean and correct way of doing it though, given that I'm probably going to cry any time I want to create a "created" field in the User table! Cheers anyhow! > On Nov 30, 1:24 pm, Fergus <[EMAIL PROTECTED]> wrote: > > > I have an inherit

Multi Table Inheritance with Mulitple Children

2008-11-30 Thread Fergus
) I would like to add child classes after previously having an object as only a parent - so at some point in time a Person can become a User. So I try this in the manage.py shell: >>> from MyPidge.Users.models import Person, User >>> myuser = Person.objects.create(firstname = &q