home / django_tickets

tickets

17 rows where "created" is on date 2008-08-29 and has_patch = 1 sorted by keywords

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: changetime, stage, component, resolution, owner, reporter, needs_better_patch, needs_tests, needs_docs, last_pulled_from_trac (date)

has_patch 1 ✖

  • 1 · 17 ✖

created (date) 1 ✖

  • 2008-08-29 · 17 ✖
id created changetime last_pulled_from_trac stage status component type severity version resolution summary description owner reporter keywords ▼ easy has_patch needs_better_patch needs_tests needs_docs ui_ux
8669 2008-08-29 08:15:02 2011-09-28 16:12:17 2022-03-06 03:42:51.725361 Accepted closed Database layer (models, ORM)     dev fixed All remaining create() methods also force an insert (continuation of r8670) #8419 / [8670] forced an SQL insert in the main create() and get_or_create() methods, preventing data loss from overwriting existing data - thanks Malcolm! All other get_or_create() methods end up calling back to the main get_or_create(). However, there are a few extra create() methods which don't call back to the main create() - this patch ensures that those also force an insert, so cannot overwrite existing data. Extra methods found via "find django -name '*.py' | xargs grep -F 'def create('" and "find django -name '*.py' | xargs grep -F 'def get_or_create('" nobody Richard Davies <richard.davies@elastichosts.com>   0 1 0 0 0 0
8670 2008-08-29 08:23:33 2010-11-17 04:46:13 2022-03-06 03:42:51.865743 Accepted closed contrib.admin     dev fixed auth add_view should accept extra_context   nobody sorl   0 1 0 0 0 0
8672 2008-08-29 09:16:47 2009-02-25 19:51:44 2022-03-06 03:42:52.169418 Design decision needed closed Database layer (models, ORM)     dev wontfix ModelForm.save() should implement force_insert and force_update, like Model.save() [8267] added the ability to force an SQL insert (or force an update) via a model's save() method. The same force_insert and force_update flags should be supported in a modelform's save() method. These flags enable better control over some edge cases - e.g. force_insert will prevent overwriting existing data if the same primary key has accidentally been specified. nobody Richard Davies <richard.davies@elastichosts.com>   0 1 0 0 0 0
8673 2008-08-29 09:17:31 2011-09-28 16:12:17 2022-03-06 03:42:52.325970 Accepted closed File uploads/storage     dev fixed Missing import in django.core.files.move In [8493] the copied `copystat` in django.core.files.move uses `stat.S_IMODE`, but `stat` is not imported. nobody vung   0 1 0 0 0 0
8685 2008-08-29 13:46:42 2008-08-29 17:49:11 2022-03-06 03:42:54.473038 Unreviewed closed Translations     dev fixed Portuguese translation patch This is a Portuguese translation update. I'm sending the patch and the .po files, just in case. nobody nmariz   0 1 0 0 0 0
8687 2008-08-29 15:25:18 2011-09-28 16:12:17 2022-03-06 03:42:54.820034 Unreviewed closed Metasystem     dev fixed NameError when validating m2m models Found this while monkeying around with pyflakes: `'django/core/management/validation.py:134: undefined name 'rel_from'` nobody vung   0 1 0 0 0 0
8696 2008-08-29 19:33:15 2011-09-28 16:12:17 2022-03-06 03:42:56.253769 Accepted closed Documentation     1.0-beta fixed Online docs using incorrect apostrophe character The online docs at http://docs.djangoproject.com/en/dev/intro/tutorial02/#intro-tutorial02 are using incorrect characters for apostrophes. The example url patterns {{{ urlpatterns = patterns(‘’, # Example: # (r’^{{ project_name }}/’, include(‘{{ project_name }}.foo.urls’)), # Uncomment the next line to enable admin documentation: # (r’^admin/doc/’, include(‘django.contrib.admindocs.urls’)), # Uncomment the next line to enable the admin: (r’^admin/(.*)’, admin.site.root), ) }}} cannot be cut and pasted because they are using ’ instead of ' to delimit their strings. You'll notice that the code color-coding is incorrect. A search for ".. parsed-literal::" in the source turned up five hits; these four files show this problem with delimiters: {{{ docs/intro/tutorial02.txt docs/howto/deployment/modpython.txt docs/howto/custom-template-tags.txt docs/howto/apache-auth.txt }}} It looks like parsed-literal is the wrong tag to use here. jacob jjackson   0 1 0 0 0 0
8699 2008-08-29 23:19:37 2008-08-30 03:50:26 2022-03-06 03:42:56.757397 Unreviewed closed Translations     dev fixed Translated post-string freeze strings for Hungarian See the attached diff. Sorry for the cruft, but a large number of comment lines were messed up during the POT generation, and others are just KBabel's stupidity. nobody szilveszter   0 1 0 0 0 0
8700 2008-08-29 23:43:38 2011-09-28 16:12:17 2022-03-06 03:42:56.915977 Ready for checkin closed Documentation     dev fixed Localflavor example code broken The doc fix in [7961] was reverted by [7967]. nobody mattmcc   0 1 0 0 0 0
8679 2008-08-29 11:42:11 2011-09-28 16:12:17 2022-03-06 03:42:53.287009 Accepted closed Documentation     dev fixed Custom save() method signature needs to be fixed in some tests and docs after changeset 8670 Changeset r8670 change the way create() and get_or_create() methods work. Examples in documentation does not reflect this change yet. nobody Uninen documentation, save, create, get_or_create 0 1 0 0 0 0
8690 2008-08-29 17:11:42 2014-10-20 18:13:24 2022-03-06 03:42:55.330172 Accepted closed contrib.formtools New feature Normal dev fixed FormPreview should pass request to parse_params It would be very useful to have request data in parse_params. The example given is to capture something like a user_id, but the main thing I would want to do here is to verify that the current user has permission to access the URL given. Of course, adding a parameter breaks backwards compatibility, so this is a similar request to #7222. nobody bthomas formpreview 0 1 1 1 1 0
8676 2008-08-29 10:24:03 2008-08-29 10:33:05 2022-03-06 03:42:52.830715 Unreviewed closed Uncategorized     dev wontfix BooleanField says value required if False The BooleanField should accept False values and not raise the required error. Here is a diff from the http://code.djangoproject.com/svn/django/tags/notable_moments/1.0-beta-1 branch. The problem is in trunk too. {{{ Index: django/forms/fields.py =================================================================== --- django/forms/fields.py (revision 8696) +++ django/forms/fields.py (working copy) @@ -569,9 +569,9 @@ if value == 'False': value = False else: - value = bool(value) + value = value and True or None super(BooleanField, self).clean(value) - if not value and self.required: + if value is None and self.required: raise ValidationError(self.error_messages['required']) return value }}} nobody dobee forms 0 1 0 0 0 0
8698 2008-08-29 21:54:11 2011-09-28 16:12:17 2022-03-06 03:42:56.607366 Unreviewed closed Documentation     dev fixed Middleware Documentation still refers to CacheMiddleware On the Cache documentation page, it says you have to use UpdateCacheMiddleware and FetchFromCacheMiddleware instead of the older CacheMiddleware. However the Middleware documentation only mentions CacheMiddleware and does not discuss the two new middlewares. nobody anonymous middleware, cache 0 1 0 0 0 0
8697 2008-08-29 21:03:34 2011-09-28 16:12:17 2022-03-06 03:42:56.414327 Unreviewed closed Translations     dev fixed Norwegian translation ready for 1.0 The Norwegian translation should now be ready for 1.0! All the localflavours are now translated (where applicable) + the new comments framework. nobody jonklo norwegian 0 1 0 0 0 0
8665 2008-08-29 01:59:02 2011-09-28 16:12:17 2022-03-06 03:42:51.134763 Accepted closed Translations     dev fixed Update Polish translations Changelog: * Translate strings from [8679]. * Remove obsolete strings after `oldforms` removal. * Remove some fuzziness. zgoda Piotr Lewandowski <django@icomputing.pl> pl polish 0 1 0 0 0 0
8688 2008-08-29 16:22:46 2008-10-06 08:44:41 2022-03-06 03:42:54.994220 Unreviewed closed Documentation     dev fixed Small change on documentation for static media serving I'd like to suggest a small change to the documentation on http://docs.djangoproject.com/en/dev/howto/static-files/#limiting-use-to-debug-true which would be adding a variable like settings.MEDIA_DEVELOPMENT_ROOT instead of using an hardcoded path on the urls.py for development purposes. This is a much better way for different developers to work on the same project with only different settings.py files. nobody trodrigues static media files 0 1 0 0 0 0
8664 2008-08-29 01:16:48 2011-09-28 16:12:17 2022-03-06 03:42:50.990600 Accepted closed Database layer (models, ORM)     dev fixed PhoneNumberField should be moved to django.contrib.localflavor.us Like ''russelm'' [http://code.djangoproject.com/ticket/8210#comment:4 has mentioned] in #8210 - `PhoneNumberField` should be moved to `django.contrib.localflavor.us`. After closing this ticket and #8210 there would be no references to `django.contrib.localflavor` from Django code (excluding `django/contrib/localflavor` directory itself). jacob Piotr Lewandowski <django@icomputing.pl> us localflavor 0 1 0 0 0 0

Advanced export

JSON shape: default, array, newline-delimited, object

CSV options:

CREATE TABLE tickets (
        id int primary key,
        created datetime,
        changetime datetime,
        last_pulled_from_trac datetime,
        stage text,
        status text,
        component text,
        type text,
        severity text,
        version text,
        resolution text,
        summary text,
        description text,
        owner text,
        reporter text,
        keywords text,
        easy boolean,
        has_patch boolean,
        needs_better_patch boolean,
        needs_tests boolean,
        needs_docs boolean,
        ui_ux boolean
    );
Powered by Datasette · Queries took 1126.03ms