tickets
25 rows where "created" is on date 2007-12-01 sorted by resolution
This data as json, CSV (advanced)
Suggested facets: changetime, stage, version, resolution, reporter, has_patch, needs_better_patch, needs_tests, needs_docs, changetime (date)
owner 15 ✖
- nobody 9
- __hawkeye__ 2
- brosner 2
- aaloy 1
- anonymous 1
- bartuer 1
- ekarulf 1
- jags78 1
- jezdez 1
- jkocherhans 1
- mtredinnick 1
- ramiro 1
- raphael 1
- trey 1
- xian 1
component 10 ✖
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 |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
6077 | 2007-12-01 13:57:37 | 2011-01-04 00:22:52 | 2022-03-06 03:36:11.015950 | Accepted | closed | contrib.admin | newforms-admin | duplicate | simple way to see help_text in edit_inline | I just added <th title=""> for every column, that has some help_text. | xian | jakub_vysoky | sprintdec01 admin template help text edit inline nfa-someday | 0 | 1 | 0 | 0 | 0 | 0 | ||
6068 | 2007-12-01 01:27:15 | 2007-12-01 21:18:46 | 2022-03-06 03:36:09.624672 | Ready for checkin | closed | Uncategorized | dev | fixed | typo error in modeltests docstring | in tests/modeltests, fixture and user_commands are all signed with number 37, this is a typo error. 37.Fixtures. ./fixtures/models.py 37.User-registered management commands ./user_commands/models.py And all docstring of models.py after number 37 should be changed, they are: tests/modeltests/user_commands/models.py should be 38 tests/modeltests/test_client/models.py should be 39 tests/modeltests/empty/models.py should be 40 tests/modeltests/select_related/models.py should be 41 tests/modeltests/serializers/models.py should be 42 | bartuer | bartuer <bartuer@exoweb.net> | tests fixtures user-registered management commands | 0 | 1 | 0 | 0 | 0 | 0 | ||
6070 | 2007-12-01 04:06:55 | 2007-12-02 15:33:08 | 2022-03-06 03:36:09.924966 | Ready for checkin | closed | Documentation | dev | fixed | Document that SITE_ID is no longer required to run all tests | I just ran all tests successfully with the following settings.py file: {{{ #!python URL_CONF = "urls" DATABASE_ENGINE = "sqlite3" }}} so the mention about "and a SITE_ID setting (any non-zero integer value will do) in order for all the tests to pass." in the [http://www.djangoproject.com/documentation/contributing/ Contributing to Django] page is wrong. Btw, why not put the above settings.py file in the tests directory to make it even easier for people to get going and start running tests? Just name it {{{sample_test_settings.py}}}. | nobody | anonymous | 0 | 0 | 0 | 0 | 0 | 0 | |||
6071 | 2007-12-01 09:16:41 | 2007-12-02 20:17:10 | 2022-03-06 03:36:10.081739 | Accepted | closed | Forms | dev | fixed | Revison 6777 / 6778: maximum recursion depth exceeded | Until revison 6777 my Django-program works fine. If I update to version 6778, I'll get the following error: Request Method: GET Request URL: http://dms.bildung.hessen.de/wir_ueber_uns/intern/index.html/edit/ Exception Type: RuntimeError Exception Value: maximum recursion depth exceeded Exception Location: /usr/local/lib64/python2.5/site-packages/django/utils/safestring.py in __add__, line 73 Python Executable: /usr/local/bin/python Python Version: 2.5.1 The error occurs, if I try to show a form (newforms). | trey | hans.rauch@gmx.net | 0 | 1 | 0 | 0 | 0 | 0 | |||
6072 | 2007-12-01 10:32:03 | 2007-12-02 00:26:50 | 2022-03-06 03:36:10.249054 | Ready for checkin | closed | Internationalization | dev | fixed | January translation for catalan missing | When displaying the calendar on the admin contrib application with your locale in catalan the January month appears as undefined. | aaloy | aaloy | 0 | 1 | 0 | 0 | 0 | 0 | |||
6073 | 2007-12-01 10:50:34 | 2012-04-23 14:27:47 | 2022-03-06 03:36:10.421008 | Design decision needed | closed | Internationalization | Bug | Normal | dev | fixed | compile-messages.py parse error for utf-8 files with signature | If your po files are saved in utf-8 encoding with byte order marks, the compile-messages.py will fails with: LC_MESSAGES/django.po:1:2: parse error msgfmt: found 1 fatal error Maybe we can remove the byte order marks before running msgfmt. | ramiro | Wonlay | msgfmt, BOM | 0 | 1 | 0 | 1 | 1 | 0 |
6074 | 2007-12-01 12:09:39 | 2008-04-27 02:50:16 | 2022-03-06 03:36:10.564022 | Accepted | closed | Database layer (models, ORM) | dev | fixed | QOr doesn't handle two empty ResultSets correctly | {{{ >>> from django.db.models import Q >>> from django.contrib.auth.models import User >>> User.objects.filter( Q( id__in=[] ) | Q( id__in=[] ) ) }}} Should be empty queryset, but is not whe generated WHERE clause is empty, the problem seems to be around django/db/models/query.py:725 | raphael | Honza_Kral | or Q sql sprintdec01 qs-rf-fixed | 0 | 1 | 0 | 0 | 0 | 0 | ||
6075 | 2007-12-01 12:46:05 | 2008-06-11 03:58:01 | 2022-03-06 03:36:10.700150 | Accepted | closed | contrib.admin | newforms-admin | fixed | max_num, etc. for inline models in newforms-admin | The max_num feature is missing in the newforms-admin branch. When you add max_num to your Child_Inline max_num doesn't do anything. {{{ from django.contrib import admin class Child_Inline(admin.TabularInline): model = Child extra = 3 max_num = 5 }}} I looked at the code in {{{ django/contrib/admin/options.py }}} and it seems that there is no max_num feature there. I added a patch with the missing functionality. I'm not sure if it's the best way to do it, especially the line with apply in it. | brosner | yserrano | nfa-blocker | 0 | 1 | 1 | 1 | 1 | 0 | ||
6078 | 2007-12-01 14:12:39 | 2007-12-01 16:39:29 | 2022-03-06 03:36:11.291297 | Unreviewed | closed | contrib.admin | newforms-admin | fixed | Admin escapes non-breaking spaces for empty fields in change list | Same Bug as #5976 but in Newforms Admin. Same Patch will work. | jkocherhans | toke | newforms, admin, escape, sprintdec01 | 0 | 1 | 0 | 0 | 0 | 0 | ||
6079 | 2007-12-01 17:21:37 | 2007-12-01 17:27:45 | 2022-03-06 03:36:11.448073 | Unreviewed | closed | Documentation | dev | fixed | AUTHENTICATION_BACKENDS is not documented in settings.txt | Hi there, AUTHENTICATION_BACKENDS is documented in authentication.txt, but not in settings.txt Maybe it's intentional as django.contrib.auth is "contrib", but SITE_ID is documented! ;) Anyway I'll try to post a patch later. | nobody | telenieko | 0 | 0 | 0 | 0 | 0 | 0 | |||
6081 | 2007-12-01 17:45:17 | 2007-12-01 18:10:15 | 2022-03-06 03:36:11.769314 | Unreviewed | closed | contrib.sessions | dev | fixed | contrib.sessions.models.Session has obsolete functions | As of [6333], `get_new_session_key` and `get_new_session_object` on `Session` are no longer used, but are still present. Functionality was moved to `SessionBase` under `_get_new_session_key`. | __hawkeye__ | __hawkeye__ | 0 | 1 | 0 | 0 | 0 | 0 | |||
6082 | 2007-12-01 17:59:36 | 2007-12-04 20:24:22 | 2022-03-06 03:36:11.920266 | Ready for checkin | closed | contrib.sessions | dev | fixed | File based Session test fails for lack of /tmp directory on Windows Based System | When running the built in tests on a Windows based system you will get a consistent failure in the file store session test because the default /tmp directory is more than likely missing. A quick solution to the problem is to set SESSION_FILE_PATH to a directory that exists on your system. This should be modified to use the environments temp directory. | jags78 | jags78 | test session file | 0 | 1 | 0 | 0 | 0 | 0 | ||
6083 | 2007-12-01 18:33:20 | 2008-05-13 14:50:45 | 2022-03-06 03:36:12.071731 | Accepted | closed | Contrib apps | dev | fixed | contrib.auth still uses oldforms | Could not find a ticket stating it so here it is. the title says it all :) | brosner | telenieko | auth forms newforms oldforms | 0 | 1 | 1 | 0 | 0 | 0 | ||
6085 | 2007-12-01 20:08:22 | 2008-01-13 13:15:02 | 2022-03-06 03:36:12.335200 | Unreviewed | closed | Uncategorized | newforms-admin | fixed | separated contrib.auth and contrib.admin views | it would make more sense to move stuff from contrib/admin/views/auth.py to contrib.auth.models into the UserAdmin | nobody | Honza_Kral | auth admin views | 0 | 1 | 1 | 0 | 0 | 0 | ||
6086 | 2007-12-01 20:32:09 | 2008-07-18 23:46:11 | 2022-03-06 03:36:12.492494 | Ready for checkin | closed | Core (Cache system) | dev | fixed | Refactor django.core.cache to deprecate "simple" backend | As detailed in [http://groups.google.com/group/django-developers/browse_thread/thread/16866b74a2390a26 this django-dev thread], the "simple" cache backend doesn't have much reason to live any more. The attached patch refactors the cache backends to eliminate simple.py, and issues a DeprecationWarning per Jacob's recommendation. Thanks to Brian Johnson and David Schein for a great afternoon of cafe coding! | nobody | pbx | sprintdec01 | 0 | 1 | 1 | 0 | 0 | 0 | ||
6087 | 2007-12-01 21:00:36 | 2007-12-02 15:32:34 | 2022-03-06 03:36:12.623673 | Ready for checkin | closed | contrib.sessions | dev | fixed | Sessions should support setdefault | Sessions don't currently support `setdefault`. They probably should. | __hawkeye__ | __hawkeye__ | 0 | 1 | 0 | 0 | 0 | 0 | |||
6088 | 2007-12-01 21:09:36 | 2008-04-27 02:50:16 | 2022-03-06 03:36:12.761416 | Accepted | closed | Database layer (models, ORM) | dev | fixed | get_previous_in_order broken | There's a bug in the SQL generated when calling get_previous_in_order. Luckily looks like a quick fix from where I'm sitting. Just need to change the ordering to DESC from ASC. | nobody | James Wheare <django@sparemint.com> | qs-rf-fixed | 0 | 1 | 0 | 0 | 0 | 0 | ||
6089 | 2007-12-01 21:45:55 | 2009-09-24 21:34:27 | 2022-03-06 03:36:12.901328 | Ready for checkin | closed | Contrib apps | dev | fixed | Remove ordering for contrib.auth User model | In contrib.auth the User model has: ordering = ('username',) While it is very nice for small applications to have pretty ordered output, it's a bit hard on applications with many users (such as pownce.com). One concern is there might be applications that depend on this ordering in the User model and it would be nice not to break this functionality. However, it might be worth doing to make Django "scale"... ugh. | ekarulf | leahculver | 0 | 1 | 0 | 0 | 0 | 0 | |||
6091 | 2007-12-01 23:51:08 | 2007-12-02 00:00:36 | 2022-03-06 03:36:13.173486 | Unreviewed | closed | Uncategorized | dev | fixed | Update to AUTHORS | Adding my name to the AUTHORS file | mtredinnick | ekarulf | AUTHORS | 0 | 1 | 0 | 0 | 0 | 0 | ||
6084 | 2007-12-01 18:41:39 | 2007-12-03 14:25:52 | 2022-03-06 03:36:12.217534 | Accepted | closed | Documentation | dev | invalid | Add warning about python-memcached client < 1.40 not being thread safe | Since older versions of [http://www.tummy.com/Community/software/python-memcached/ python-memcached] often cause connections to stay open indefinitely, add a warning about versions before 1.40. | nobody | mcroydon | 0 | 1 | 0 | 0 | 1 | 0 | |||
6069 | 2007-12-01 03:57:52 | 2007-12-01 22:24:51 | 2022-03-06 03:36:09.785187 | Accepted | closed | contrib.admin | dev | wontfix | Fix auto-escaping Password-Change-Link in Admin | Auto-escaping broke Password-Change link in Admin. | anonymous | anonymous | admin, escaping, sprintdec01 | 0 | 1 | 0 | 0 | 0 | 0 | ||
6076 | 2007-12-01 12:46:14 | 2007-12-04 10:07:13 | 2022-03-06 03:36:10.855676 | Unreviewed | closed | Documentation | dev | wontfix | deprecated code example in dodumentation | In the page http://www.djangoproject.com/documentation/i18n/ There is an example that use the deprecate/not working document.write function. {{{ document.write(gettext('this is to be translated')); }}} please replace with the current dom standard {{{ tnode = document.createTextNode(gettext('this is to be translated')); [code to insert the tnode using dom...] }}} | nobody | dan | 0 | 0 | 0 | 0 | 0 | 0 | |||
6080 | 2007-12-01 17:44:46 | 2009-12-18 15:06:22 | 2022-03-06 03:36:11.633019 | Accepted | closed | Core (Other) | dev | wontfix | Document the possibility of using egg-files for apps / reintroduce support for setuptools to continue the reusable apps GSoC project | Setuptools' pkg_resources allows module loading from egg-files, which is also applicable for Django apps. The attached code enables Django to load apps from locations defined in a APP_DIRS list. All modules having the entry_point defined in APP_ENTRY_POINT (default: django.apps) found in these directories are automatically loaded and added to the INSTALLED_APPS list. Please keep in mind to use the 'django.template.loaders.eggs.load_template_source' in TEMPLATE_LOADERS to load templates from eggs. More information on using Django with setuptools in my weblog entry: http://jannisleidel.com/2007/11/using-django-with-setuptools/ | jezdez | jezdez | setuptools apps eggs sprintdec01 | 0 | 1 | 1 | 1 | 0 | 0 | ||
6090 | 2007-12-01 23:11:02 | 2007-12-08 12:41:03 | 2022-03-06 03:36:13.037711 | Design decision needed | closed | Database layer (models, ORM) | dev | wontfix | Add whitespace between fields in queries | The attached patch adds whitespace between fields in queries, as to better display the queries for debugging. All occurrences of {{{ ",".join(...) }}} in django.db is replaced by {{{ ", ".join(...) }}}. | nobody | jodal | 0 | 1 | 0 | 0 | 0 | 0 | |||
6067 | 2007-12-01 00:13:32 | 2008-03-07 14:38:13 | 2022-03-06 03:36:09.474552 | Unreviewed | closed | Forms | dev | worksforme | Small addition to newForms documentation regarding required fields in templates | In the documentation: http://www.djangoproject.com/documentation/newforms/#highlighting-required-fields-in-templates It might be useful to give an example of how to check if a field is required when accessing a form field directly. This would be in addition to the existing example which is demonstrating use when iterating over a form. I'd suggest an example such as {% if form.fieldName.field.required %}*{% endif %} Thanks | nobody | stp2007 <stp2007@solvingtheproblem.ca> | documentation | 0 | 0 | 0 | 0 | 0 | 0 |
Advanced export
JSON shape: default, array, newline-delimited, object
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 );