Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#14670 closed (fixed)

GenericTabularInline broken as of r13708

Reported by: Sean Brant Owned by: Gregor Müllegger
Component: Contrib apps Version: dev
Severity: Keywords: sprintnov13
Cc: Triage Stage: Ready for checkin
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

Using GenericTabularLine seem to have a regression as of r13708. I get the following 'NoneType' object has no attribute 'user' using r13708 and no error using r13707. Line 292 of options.py is throwing the error return request.user.has_perm(opts.app_label + '.' + opts.get_add_permission()) because request is None. Sorry I don't have a patch Im not real clear on what is going on in the code. As a side note im just using a barebones GenericTabularLine and ModelAdmin.

Attachments (1)

issue14670.1.diff (3.9 KB ) - added by Gregor Müllegger 13 years ago.
Adding test suite and fix for the issue.

Download all attachments as: .zip

Change History (7)

comment:1 by Karen Tracey, 13 years ago

(Please include tracebacks in reports like this.)

Traceback pulled from dpaste (it was referenced in IRC):

Environment:

Request Method: GET
Request URL: http://127.0.0.1:8000/super-admin/blogs/blog/add/
Django Version: 1.3 alpha 1
Python Version: 2.6.1
Installed Applications:
['django.contrib.admin',
 'django.contrib.auth',
 'django.contrib.contenttypes',
 'django.contrib.messages',
 'django.contrib.sessions',
 'django.contrib.sites',
 'django.contrib.staticfiles',
 'stash.apps.accounts',
 'stash.apps.blogs',
 'stash.apps.permalinks',
 'debug_toolbar']
Installed Middleware:
['django.middleware.common.CommonMiddleware',
 'django.contrib.sessions.middleware.SessionMiddleware',
 'django.middleware.csrf.CsrfViewMiddleware',
 'django.contrib.auth.middleware.AuthenticationMiddleware',
 'django.contrib.messages.middleware.MessageMiddleware',
 'stash.apps.accounts.middleware.AccountMiddleware',
 'debug_toolbar.middleware.DebugToolbarMiddleware']


Traceback:
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/core/handlers/base.py" in get_response
  109.                         response = callback(request, *callback_args, **callback_kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/options.py" in wrapper
  245.                 return self.admin_site.admin_view(view)(*args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/utils/decorators.py" in _wrapped_view
  89.                     response = view_func(request, *args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/views/decorators/cache.py" in _wrapped_view_func
  78.         response = view_func(request, *args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/sites.py" in inner
  191.             return view(request, *args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/utils/decorators.py" in _wrapper
  24.             return bound_func(*args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/utils/decorators.py" in _wrapped_view
  89.                     response = view_func(request, *args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/utils/decorators.py" in bound_func
  20.                 return func(self, *args2, **kwargs2)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/db/transaction.py" in inner
  291.                 res = func(*args, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/options.py" in add_view
  821.                                        self.inline_instances):
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/options.py" in get_formsets
  421.             yield inline.get_formset(request, obj)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/contenttypes/generic.py" in get_formset
  419.         return generic_inlineformset_factory(self.model, **defaults)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/contenttypes/generic.py" in generic_inlineformset_factory
  385.                                    fields=fields, exclude=exclude, max_num=max_num)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/forms/models.py" in modelformset_factory
  684.                              formfield_callback=formfield_callback)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/forms/models.py" in modelform_factory
  423.     return ModelFormMetaclass(class_name, (form,), form_class_attrs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/forms/models.py" in __new__
  227.                                       opts.exclude, opts.widgets, formfield_callback)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/forms/models.py" in fields_for_model
  185.             formfield = formfield_callback(f, **kwargs)
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/options.py" in formfield_for_dbfield
  113.                             related_modeladmin.has_add_permission(request))
File "/Users/seanbrant/Environments/stash/lib/python2.6/site-packages/django/contrib/admin/options.py" in has_add_permission
  292.         return request.user.has_perm(opts.app_label + '.' + opts.get_add_permission())

Exception Type: AttributeError at /super-admin/blogs/blog/add/
Exception Value: 'NoneType' object has no attribute 'user'

comment:2 by Gregor Müllegger, 13 years ago

Keywords: sprintnov13 added
Owner: changed from nobody to Gregor Müllegger
Status: newassigned
Triage Stage: UnreviewedAccepted

comment:3 by Gregor Müllegger, 13 years ago

Seems to me like r13708 introduced this error. But it's not obvious why yet. I will look into in detail later.

by Gregor Müllegger, 13 years ago

Attachment: issue14670.1.diff added

Adding test suite and fix for the issue.

comment:4 by Gregor Müllegger, 13 years ago

Has patch: set
Triage Stage: AcceptedReady for checkin

Sorry for my previous embarrassing comment. I should have read the title of the ticket and looked at the specific revision in more detail.

However it's fixed now. Fix and tests are attached in the patch.

comment:5 by Jannis Leidel, 13 years ago

Resolution: fixed
Status: assignedclosed

(In [14555]) Fixed #14670 -- Made GenericTabularInline aware of changes made in r13708. Thanks, gregmuellegger.

comment:6 by Jacob, 13 years ago

milestone: 1.3

Milestone 1.3 deleted

Note: See TracTickets for help on using tickets.
Back to Top