Hi there,
I have a question on the site concept.
While reading the source code, I found that there is the site related
statement in django.contrib.auth.views.login:
if Site._meta.installed:
current_site = Site.objects.get_current()
else:
current_site = RequestSite(request)
Maybe it's a silly question.
I want that the error text could be in many languages. Take a survey
system I'm working on for example, it could support a survey in
English or in Chinese. So if a survey is created in Chinese, I think
it is not good to display the error messages in English. :(
But by
Does Django provide any method to handle the synchronization problems
with DB? How does it keep the DB's consistency in the multi-thread
scenario?
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups
"Django users" group.
Hi Carl,
I didn't mention to the syncdb of manage.py.
I'm talking about the problem that may happen when trying to access
the db.
Take a poll for exmaple. It may happen that 2 users vote at the same
time. A vote action is made in the three steps:
1. read the old counter
2. add the counter by 1
3.
I checked the transaction module of django. I think it could work.
But why do you prefer this version column solution? Does it have
better performance?
On 3月31日, 上午9时54分, meppum <[EMAIL PROTECTED]> wrote:
> I found this thread helpful.
>
> http://groups.google.com/group/django-users/browse_thread
columns. In terms of performance
> it's probably the same or close to it as the comparison is done on the
> database side.
>
> On Mar 31, 12:14 am, PENPEN <[EMAIL PROTECTED]> wrote:
>
> > I checked the transaction module of django. I think it could work.
> > But wh
1. About select_related():
It is said that it will automatically "follow" foreign-key
relationships, selecting that additional related-object data when it
executes its query. So it is not applicable for ManyToMany
relationship, isn't it?
And if select_related() is used, will the queryset method
I defined such a model:
class Thing(models.Model):
photo = models.ImageField(
upload_to='images/', blank=True, null=True)
Here is the form for this model:
class ThingForm(ModelForm):
class Meta:
model = Thing
Now it could handle the image upload request and save images t
dynamically append a
> model field to the filename before saving it. I ended up getting the
> model field's value from request.POST in the view, and changing
> request.FILES there itself.
>
> Best,
>
> R
>
> On Sun, Apr 20, 2008 at 6:45 PM, PENPEN <[EMAIL PROTECTED]
. The code I use
> > is:
>
> > request.FILES['resume']['filename'] = request.POST['empid'] + "_" +
> > request.FILES['resume']['filename']
>
> > Best,
>
> > R
>
> > On Tue, Apr 22, 2008 at 5:52 PM, PENPEN <[EMA
Hi there
I met a problem when I use django to handle a file upload request
while that file's name is in Chinese. The chinese part of the filename
is truncated, e.g. I could only get ".txt" while the input filename is
"汉.txt"
I use the following clean function
def clean_file(self):
if s
Thanks Karen,
The codec should be utf8 not the server's locale.
Now I'm using the urlquote to quote the non-ascii characters as it is
not too important.
Hoping ticket 5361 solving this problem soon. :)
On 6月11日, 上午1时19分, "Karen Tracey" <[EMAIL PROTECTED]> wrote:
12 matches
Mail list logo