Traceback (innermost last):
Module ZServer.ZPublisher.Publish, line 144, in publish
Module ZPublisher.mapply, line 85, in mapply
Module ZServer.ZPublisher.Publish, line 44, in call_object
Module plone.outputfilters.browser.resolveuid, line 65, in __call__
AttributeError: 'ResolveUIDView' object has no attribute 'uuid'
The question would be: how should it be handled? send it to the site root? to the parent object? :thinking:
On the
ResolveUIDView
browser view it gets theuuid
from the URL (inpublishTraverse
) and on the__call__
method it tries to resolve it.There is a small problem there though, if there is no UUID provided, i.e. rather than http://localhost:8080/Plone/some-path/@@resolveuid/RANDOM-UUID it is just http://localhost:8080/Plone/some-path/@@resolveuid then it breaks with:
The question would be: how should it be handled? send it to the site root? to the parent object? :thinking: