| | 7 | |
|---|
| | 8 | # for test_skin_installed |
|---|
| | 9 | skins_content = ['tool.gif'] |
|---|
| | 10 | |
|---|
| | 11 | # for test_installedAllTypes |
|---|
| | 12 | istalled_types = ['PingTool', 'PingInfo'] |
|---|
| | 13 | |
|---|
| | 14 | # for test_added_action |
|---|
| | 15 | types_actions = ({'type':'PingTool', |
|---|
| | 16 | 'actions':(('view', 'View', 'string:${object_url}/view', ('Manage portal', ), 'object', True), |
|---|
| | 17 | ('edit', 'Edit', 'string:${object_url}/edit', ('Modify portal content', ), 'object', True), |
|---|
| | 18 | ), |
|---|
| | 19 | }, |
|---|
| | 20 | {'type':'PingInfo', |
|---|
| | 21 | 'actions':(('view', 'View', 'string:${object_url}/view', ('View',), 'object', True), |
|---|
| | 22 | ('edit', 'Edit', 'string:${object_url}/edit', ('Modify portal content', ), 'object', True), |
|---|
| | 23 | ('metadata', 'Properties', 'string:${object_url}/properties', ('Modify portal content', ), 'object', True), |
|---|
| | 24 | ('references', 'References', 'string:${object_url}/reference_graph', ('Modify portal content', 'Review portal content'), 'object', True), |
|---|
| | 25 | ), |
|---|
| | 26 | }, |
|---|
| | 27 | ) |
|---|