/usr/share/pyshared/zope/file/menus.zcml is in python-zope.file 0.6.2-0ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | <configure
xmlns="http://namespaces.zope.org/zope"
xmlns:browser="http://namespaces.zope.org/browser"
i18n_domain="zope.file"
>
<!--
Menu related configuration.
Loaded from configure.zcml only if zope.app.zcmlfiles is available.
-->
<browser:view
for=".interfaces.IFile"
menu="zmi_views" title="Upload"
name="edit.html"
class=".upload.Reupload"
permission="zope.ManageContent"
/>
<browser:view
for=".interfaces.IFile"
menu="zmi_views" title="Content Type"
name="contenttype.html"
class=".contenttype.ContentTypeForm"
permission="zope.ManageContent"
/>
<browser:addMenuItem
for="zope.browser.interfaces.IAdding"
view="zope.file.File"
title="Zope File"
class="zope.file.file.File"
permission="zope.ManageContent"
/>
</configure>
|