Search Discussions
-
Hi, I'd like to get rid of everything FCGI-specific in Django sooner or later (rather sooner). Flup isn't maintained since a long time and there is no ticket tracker to report stuff. Graham pointed ...
Florian Apolloner
Jul 14, 2013 at 7:17 pm
Aug 6, 2013 at 3:13 pm -
Is it considered gauche to revive old topics such as this? After having some difficulty debugging why an if statement was throwing a strange error, I realized it was because they didn't support ...
Daniel Ellis
Jul 15, 2013 at 8:49 pm
May 10, 2014 at 5:01 pm -
In this support ticket (https://code.djangoproject.com/ticket/13089), the original closer said "This is a long-standing explicit design decision in the ORM, and so gets a wontfix...". What is the ...
Mark Young
Jul 30, 2013 at 8:37 pm
Aug 1, 2013 at 12:04 pm -
Ticket #20625 deals with the problem of writing custom QuerySet methods. The problem is that one needs to write some boilerplate code to have methods available on both the Manager and the QuerySet ...
Anssi Kääriäinen
Jul 22, 2013 at 8:27 am
Jul 24, 2013 at 7:10 pm -
Hello, I'd like to deprecate admindocs. Here are my reasons: 1) It's called the "documentation generator", but it only operates on docstrings. This promotes the idea that docstrings are appropriate ...
Aymeric Augustin
Jul 25, 2013 at 12:29 pm
Aug 8, 2013 at 5:46 pm -
Hi everybody, TL;DR: A simple change can make Django's CSRF protection a little better; an additional, slightly less simple one, can also make it look better. Django's CSRF protection scheme is a bit ...
Shai Berger
Jul 27, 2013 at 11:12 pm
Aug 9, 2013 at 8:36 pm -
I've noted that the generic view implementations use the private `_clone` method when returning the queryset ...
Tom Christie
Jul 11, 2013 at 8:54 pm
Jul 23, 2013 at 9:03 am -
Since 1.5 we have streaming responses. What is the state of contrib.sitemaps in this regard? I have some very large sitemaps and experimented with making them faster a few years ago. If the do not ...
Julianb
Jul 25, 2013 at 8:06 am
Jul 29, 2013 at 3:10 pm -
Hi all, Ticket [1]8713 is tracking removing dependency of Django core on contrib apps code. One of the action items enumerated there is the fact that LiveServerTestCase makes use of ...
Ramiro Morales
Jul 13, 2013 at 11:41 pm
Aug 31, 2013 at 2:13 pm -
TestSuite holds references to each TestCase instance. So attributes of my TestCase subclasses don't get freed by the garbage collector until the last reference to TestSuite disappears, which isn't ...
Matt McClure
Jul 26, 2013 at 2:03 pm
Aug 2, 2013 at 5:30 pm -
A feature I would really appreciate (as devs in http://stackoverflow.com/questions/12217763/does-django-orm-have-an-equivalent-to-sqlalchemys-hybrid-attribute, at least) is the Hybrid Property ...
Luis Francisco Jesus Masuelli Bonanni
Jul 16, 2013 at 10:26 pm
Jul 17, 2013 at 11:27 am -
Hi All, Have you ever quickly set up a model, ran syncdb, and added a few sample objects in the admin to only see a bunch of "MyModel object"s in the changelist? I always forget to add a ...
Cmawebsite
Jul 11, 2013 at 3:46 am
Jul 11, 2013 at 3:29 pm -
Hi there (I tried to find previous threads concerning the same topic, but could not find any. If this is already the n-th discussion about the topic, sorry about it.) I don't quite agree with the ...
Danilo Bargen
Jul 8, 2013 at 4:59 pm
Oct 9, 2013 at 7:34 pm -
I would like to make my first contribution to the Django code, but these both are pretty easy and at least to me seem pretty obvious, so I thought there might be some good reason they have not yet ...
Justin Michalicek
Jul 27, 2013 at 3:24 pm
Jul 29, 2013 at 2:09 am -
Hello, For some reason, ticket #542 has been collecting spam comments that bypassed Trac's antispam. Since receiving spam on django-updates and deleting it manually gets tedious after 100 messages, I ...
Aymeric Augustin
Jul 14, 2013 at 3:23 pm
Jul 15, 2013 at 8:32 pm -
I want to create a interactive 3D model in my Django app. Few of the pages will render 3D model which should be interactive and could be changed based on the inputs. I have obj file right now. How to ...
Rohit kumar
Jul 9, 2013 at 11:29 am
Jul 10, 2013 at 7:48 am -
In our project, we typically deploy our django app without py's, except for a few select ones (manage,py for example). I recently added a few management/commands to a few of the apps in my project, ...
Jan Vilhuber
Jul 23, 2013 at 11:04 pm
Aug 9, 2013 at 9:42 pm -
Hi, I recently hit a problem where I have to provide translations for a reusable app. In German (and most other languages, except English, it seems), there are different second-person pronouns used ...
Benjamin Wohlwend
Jul 4, 2013 at 9:40 am
Jul 8, 2013 at 8:35 am -
Hello, I'm Christian Schmitt and in my Company we are working with AngularJS and Django. Currently we are working on a application that makes heavy usage of Django HTTP Rest Framework. Since the web ...
Christian Schmitt
Jul 28, 2013 at 2:20 pm
Jul 29, 2013 at 8:50 am -
Hi all, I just have problem to use multi-tenancy, with different databases... I have one database, with contains all my users... for each user, I have a different database to use... How can I do ...
Fellipe Henrique
Jul 23, 2013 at 6:27 pm
Jul 23, 2013 at 6:42 pm -
Hi devs, I just came up with the following scenario: class A(models.Model): # some fields... b = models.ForeignKey(B) class B(models.Model): # other fields A simple FK relationship. Well, then I ...
Pablo Recio
Jul 19, 2013 at 12:02 pm
Jul 23, 2013 at 8:53 am -
In Django 1.5.1 I have a named url like this: url(r'confirm/', 'confirm_user', name='auth-confirm-user'), which gave me this error when I tried to using reverse, from django.core.urlresolvers, on ...
Sergio Pulgarín
Jul 12, 2013 at 5:12 pm
Jul 12, 2013 at 7:02 pm -
There are a couple of places in the documentation that refer to "application instances": <https://docs.djangoproject.com/en/dev/topics/http/urls/#introduction ...
Daniele Procida
Jul 11, 2013 at 7:57 am
Jul 11, 2013 at 9:34 am -
Just wondering if there's an ETA on Django 1.5.2. Currently there's one blocking issue in 1.5.1 that's preventing me from upgrading from 1.4 ( https://code.djangoproject.com/ticket/20257). If there's ...
Michael Mior
Jul 9, 2013 at 5:00 pm
Jul 11, 2013 at 6:57 am -
Django allows<https://docs.djangoproject.com/en/1.5/topics/http/views/#customizing-error-views users to define handlers to some exceptions, most notably http404, server error (status 500) and ...
Jorge C. Leitão
Jul 8, 2013 at 9:01 am
Jul 9, 2013 at 11:48 am -
Hi all, I just pushed a fix to a test failure on Oracle -- the last-executed-query test. However, I want to ask about the preferred style in writing the test itself. The test, as it is written now, ...
Shai Berger
Jul 8, 2013 at 8:55 pm
Jul 8, 2013 at 9:10 pm -
Hi all, Many people post django-users questions to this group by accident. I find the name of our group to be misleading: it seems to refer to people who develop in django, but actually it is meant ...
Wim Feijen
Jul 3, 2013 at 5:26 pm
Jul 4, 2013 at 9:00 pm -
I just ran into an issue where a user was copy/pasting username and password from a text file into the login screen. For some reason the c/p process was adding a trailing space to their credentials ...
C. Kirby
Jul 3, 2013 at 5:26 pm
Jul 3, 2013 at 7:57 pm -
Hello, I am a newbie to Django and would like to know if the functionality of Django admin can be extended to my own needs. If it is possible, is it a good idea extend the functionality or start from ...
Adroit Goose
Jul 2, 2013 at 11:24 am
Jul 2, 2013 at 11:28 am -
Hi Everyone! I've found a django bug without a ticket in model_formset. I fork a github repo and committed some changes https://github.com/kataev/django/compare/django:master...master Tell me please, ...
Денис Катаев
Jul 2, 2013 at 11:24 am
Jul 2, 2013 at 11:27 am -
Not sure where to report this, but the docs.djangoproject.com is going very slow today, and I received a "504 Gateway Time-out" from the nginx server. Any ideas? -- You received this message because ...
Kevin Veroneau
Jul 29, 2013 at 5:46 pm
Jul 29, 2013 at 7:10 pm -
formset.save(commit=False) on ModelFormSets currently deletes any objects marked for deletion which seems like a bug to me, since I wouldn't expect any data changing operations when using ...
Tim Graham
Jul 12, 2013 at 8:47 pm
Jul 22, 2013 at 11:09 am -
I have problem in django using query statement "LIKE %s%" with Model.objects.raw(). I guess the problem is on '%' character but i don't know where is it. Here's my model's code: def listInRange(self, ...
Spondbob squelpen
Jul 17, 2013 at 2:23 pm
Jul 17, 2013 at 2:30 pm -
Hi all, As proposed two months ago [1], I just released django-localflavor 1.0 with all "local flavors" recombined. This fixes the failed handover of the django.contrib.localflavor app to the broader ...
Jannis Leidel
Jul 29, 2013 at 10:55 am
Jul 29, 2013 at 10:55 am -
Hi Oracle users, As you may be aware, Oracle 12 was released last month, and Django 1.6 declares Python 3 fully supported. As you may also be aware, Django currently cannot be tested with Oracle 12 ...
Shai Berger
Jul 10, 2013 at 8:12 am
Jul 10, 2013 at 8:12 am -
Hi, I'm currently working on an application to « soft-delete » objects (mark them as deleted in the database, and mask them from the queries made using the default manager) ...
Korantin Auguste
Jul 1, 2013 at 2:12 pm
Jul 1, 2013 at 2:12 pm
Group Overview
group | django-developers |
categories | django, python |
discussions | 36 |
posts | 263 |
users | 83 |
website | djangoproject.com |
83 users for July 2013
Archives
- May 2014 (70)
- April 2014 (166)
- March 2014 (290)
- February 2014 (258)
- January 2014 (238)
- December 2013 (183)
- November 2013 (150)
- October 2013 (233)
- September 2013 (328)
- August 2013 (247)
- July 2013 (263)
- June 2013 (181)
- May 2013 (408)
- April 2013 (266)
- March 2013 (420)
- February 2013 (202)
- January 2013 (191)
- December 2012 (200)
- November 2012 (236)
- October 2012 (213)
- September 2012 (203)
- August 2012 (219)
- July 2012 (138)
- June 2012 (243)
- May 2012 (280)
- April 2012 (158)