source: products/qPingTool/branches/plone-3.1/profiles/default/types/PingTool.xml

Last change on this file was 198, checked in by crchemist, 18 years ago

Fixup error in init.py

File size: 1.8 KB
Line 
1<?xml version="1.0"?>
2<object name="PingTool" meta_type="Factory-based Type Information with dynamic views"
3   i18n:domain="qPingTool" xmlns:i18n="http://xml.zope.org/namespaces/i18n">
4 <property name="title" i18n:translate="">PingTool</property>
5 <property name="description"
6      i18n:translate="">This tool serve for operation with ActionInfo objects.</property>
7 <property name="content_icon">folder_icon.gif</property>
8 <property name="content_meta_type">PingTool</property>
9 <property name="product">qPingTool</property>
10 <property name="factory">addPingTool</property>
11 <property name="immediate_view">folder_listing</property>
12 <property name="global_allow">True</property>
13 <property name="filter_content_types">True</property>
14 <property name="allowed_content_types">
15  <element value="PingInfo"/>
16 </property>
17 <property name="allow_discussion">False</property>
18 <property name="default_view">folder_listing</property>
19 <property name="view_methods">
20  <element value="folder_summary_view"/>
21  <element value="folder_tabular_view"/>
22  <element value="atct_album_view"/>
23  <element value="folder_listing"/>
24 </property>
25 <property name="default_view_fallback">False</property>
26 
27 <alias from="(Default)" to="(dynamic view)"/>
28 <alias from="edit" to="atct_edit"/>
29 <alias from="sharing" to="@@sharing"/>
30 <alias from="view" to="(selected layout)"/>
31
32 <action title="View"
33         action_id="view"
34         category="object"
35         condition_expr=""
36         url_expr="string:${object_url}/view"
37         visible="True"
38         i18n:attributes="title">
39  <permission value="Manage portal"/>
40 </action>
41 <action title="Edit"
42         action_id="edit"
43         category="object"
44         condition_expr=""
45         url_expr="string:${object_url}/edit"
46         visible="True"
47         i18n:attributes="title">
48  <permission value="Modify portal content"/>
49 </action>
50
51</object>
Note: See TracBrowser for help on using the repository browser.