home / django_tickets

tickets

6 rows where component = "contrib.admin" and "created" is on date 2008-08-14 sorted by owner

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: stage, resolution, owner, reporter, has_patch, changetime (date), last_pulled_from_trac (date)

created (date) 1 ✖

  • 2008-08-14 · 6 ✖

component 1 ✖

  • contrib.admin · 6 ✖
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
8320 2008-08-14 18:20:13 2013-03-11 14:40:48 2022-03-06 03:41:56.521096 Accepted closed contrib.admin Bug Normal dev fixed Admin Transaction Management Error When using admin from the trunk [r8346] on Ubuntu I am getting occasional tracebacks like the following. I *appears* only to happen when one of the foreign key fields is changed, or at least I haven't been able to trigger the problem without changing one of them. I am only selecting values using the drop-downs populated from the related models. Environment: * Request Method: POST * Request URL: http://test.holdenweb.com/admin/accounts/userprofile/14/ * Django Version: 1.0-alpha_2-SVN-8346 * Python Version: 2.4.3 Installed Applications: {{{ #!python ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'pages', 'grp', 'contact', 'registration', 'accounts'] }}} Installed Middleware: {{{ #!python ('django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.middleware.doc.XViewMiddleware') }}} Traceback: {{{ File "/home/holdenwe/django-trunk/django/core/handlers/base.py" in get_response 86. response = callback(request, *callback_args, **callback_kwargs) File "/home/holdenwe/django-trunk/django/contrib/admin/sites.py" in root 172. return self.model_page(request, *url.split('/', 2)) File "/home/holdenwe/django-trunk/django/views/decorators/cache.py" in _wrapped_view_func 44. response = view_func(request, *args, **kwargs) File "/home/holdenwe/django-trunk/django/contrib/admin/sites.py" in model_page 189. return admin_obj(request, rest_of_url) File "/home/holdenwe/django-trunk/django/contrib/admin/options.py" in __call__ 275. return self.change_view(request, unquote(url)) File "/home/holdenwe/django-trunk/django/db/transaction.py" in _commit_on_success 251. leave_transaction_management() File "/home/holdenwe/django-trunk/django/db/transaction.py" in leave_transaction_management 75. … aaugustin holdenweb admin transaction 0 0 0 0 0 0
8324 2008-08-14 20:34:49 2011-09-28 16:12:16 2022-03-06 03:41:57.130434 Accepted closed contrib.admin     dev fixed admin list display is broken [8352] breaks simple list display. to reproduce, {{{ # models.py class Site(models.Model): name = models.CharField(max_length=255) def __unicode__(self): return self.name # admin.py from django.contrib import admin from visitdb import models as visitdb admin.site.register(visitdb.Site) }}} go to /admin, and click on Site. {{{ Environment: Request Method: GET Request URL: http://localhost:8000/django-admin/visitdb/site/ Django Version: 1.0-alpha_2-SVN-8352 Python Version: 2.5.2 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.humanize', 'visitdb', 'photologue'] Installed Middleware: ('visitdb.middleware.RequestAttributeSetup', 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.middleware.doc.XViewMiddleware', 'visitdb.middleware.StandardViewKwargsMiddleware') Template error: In template /home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/contrib/admin/templates/admin/change_list.html, error at line 34 Caught an exception while rendering: local variable 'attr' referenced before assignment 24 : {% if cl.has_filters %} 25 : <div id="changelist-filter"> 26 : <h2>{% trans 'Filter' %}</h2> 27 : {% for spec in cl.filter_specs %} 28 : {% admin_list_filter cl spec %} 29 : {% endfor %} 30 : </div> 31 : {% endif %} 32 : {% endblock %} 33 : 34 : {% block result_list %} {% result_list cl %} {% endblock %} 35 : {% block pagination %}{% pagination cl %}{% endblock %} 36 : </div> 37 : </div> 38 : {% endblock %} 39 : Traceback: File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/core/handlers/base.py" in get_response 86. response =… brosner tobias   0 0 0 0 0 0
8306 2008-08-14 05:43:30 2009-02-25 19:51:44 2022-03-06 03:41:54.128376 Accepted closed contrib.admin     dev fixed BaseModelAdmin.formfield_for_dbfield() in desperate need of refactor See attached patch, which moves all of the model-field-specific overrides out into a dictionary. This has the side effect of increasing customizability :) nobody ubernostrum   0 1 0 0 0 0
8319 2008-08-14 17:53:54 2009-02-25 20:06:10 2022-03-06 03:41:56.355261 Unreviewed closed contrib.admin     dev wontfix limit_choices_to does not limit choices on inlined fields with intermediate tables Limiting the choices for a tabular inlined member with an intermediate class does not limit the choices. In the example below, the select elements in the admin interface include every story, not just stories which have a start date in the past. For inlined tables where there are thousands of records this can bloat admin page sizes beyond usability. In models.py: {{{ class PageContent(models.Model): stories = models.ManyToManyField('Story', limit_choices_to={'start_date__lte': datetime.now()}, through='PageContentStoryMembership') class PageContentStoryMembership(models.Model): page_content = models.ForeignKey(PageContent) story = models.ForeignKey('Story') weight = models.IntegerField(null=False, default=0) }}} In admin.py: {{{ class PageContentStoryMembershipInline(admin.TabularInline): model = PageContentStoryMembership class PageContentAdmin(admin.ModelAdmin): inlines = [PageContentStoryMembershipInline] }}} nobody TrevorFSmith   0 0 0 0 0 0
8322 2008-08-14 19:06:28 2008-08-14 20:34:47 2022-03-06 03:41:56.839239 Unreviewed closed contrib.admin       invalid Admin fails to add a slash between MEDIA_URL and upload_to With MEDIA_URL="/media" and upload_to="somefolder" the admin, while uploading files properly, shows the link to the newly uploaded file as “/mediasomefolder/filename” without the slash. Expected: to add a slash. For consistency, the trailing slash should never be required on paths. nobody to.roma.from.djbug@qwertty.com   0 0 0 0 0 0
8327 2008-08-14 22:15:19 2008-08-14 22:36:51 2022-03-06 03:41:57.594944 Unreviewed closed contrib.admin     dev invalid link to change password form on 'change user' page in admin interface is broken Go into the admin interface, open a user, and try to change its password. {{{ Environment: Request Method: GET Request URL: http://localhost:8000/bradmin/auth/user/9/password/ Django Version: 1.0-alpha_2-SVN-8351 Python Version: 2.5.2 Installed Applications: ['django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.humanize', 'visitdb', 'photologue'] Installed Middleware: ('visitdb.middleware.RequestAttributeSetup', 'django.middleware.common.CommonMiddleware', 'django.contrib.sessions.middleware.SessionMiddleware', 'django.contrib.auth.middleware.AuthenticationMiddleware', 'django.middleware.doc.XViewMiddleware', 'visitdb.middleware.StandardViewKwargsMiddleware') Traceback: File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/core/handlers/base.py" in get_response 86. response = callback(request, *callback_args, **callback_kwargs) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/contrib/admin/sites.py" in root 172. return self.model_page(request, *url.split('/', 2)) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/views/decorators/cache.py" in _wrapped_view_func 44. response = view_func(request, *args, **kwargs) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/contrib/admin/sites.py" in model_page 189. return admin_obj(request, rest_of_url) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/contrib/admin/options.py" in __call__ 275. return self.change_view(request, unquote(url)) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/db/transaction.py" in _commit_on_success 238. res = func(*args, **kw) File "/home/tobias/caktus/eclipse-workspace/blueridge_visit_database/django/contrib/admin/options.py" in change_view 616. ob… nobody tobias   0 0 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 833.257ms