Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Type names with matching Title brake the left panel viewlet #212

Open
szakitibi opened this issue Sep 18, 2020 · 0 comments
Open

Type names with matching Title brake the left panel viewlet #212

szakitibi opened this issue Sep 18, 2020 · 0 comments

Comments

@szakitibi
Copy link

Expected result

image

Current behavior

image

Details

With types defined with matching translated titles, e.g. two "Folder" types like:

[...
 ('Folder',
  {'action': 'http://localhost:8080/Plone/++add++Folder',
   'description': '',
   'extra': {'class': 'contenttype-folder', 'id': 'folder', 'separator': None},
   'icon': None,
   'id': 'Folder',
   'selected': False,
   'submenu': None,
   'title': 'Folder'}),
...
 ('Folder',
  {'action': 'http://localhost:8080/Plone/++add++customers.special.Folder',
   'description': '',
   'extra': {'class': 'contenttype-customers-special-folder', 'id': 'customers-special-folder', 'separator': None},
   'icon': None,
   'id': 'customers.special.Folder',
   'selected': False,
   'submenu': None,
   'title': 'Folder'})]

This section of code forced to compare dictionaries:

# Sort the addable content types based on their translated title
results = [(translate(ctype['title'], context=request), ctype)
for ctype in results]
results.sort()
results = [ctype[-1] for ctype in results]

Which results the following error:

TypeError: '<' not supported between instances of 'dict' and 'dict'

Suggested solution

results.sort(key=lambda ctype: translate(ctype['title'], context=request))

Note: Unless this violates some underlying rule banning matching titles for content types.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant