source: products/qPloneTabs/branches/plone3/config.py @ 3664

Last change on this file since 3664 was 39, checked in by crchemist, 18 years ago

delete unnecessary file

  • Property svn:eol-style set to native
File size: 1.7 KB
Line 
1from Products.CMFCore import permissions
2
3VIEW_PERMISSION = permissions.ManagePortal
4
5PROJECTNAME    = 'qPloneTabs'
6SKINS_DIR      = 'skins'
7
8GLOBALS        = globals()
9
10PROPERTY_SHEET = 'tabs_properties'
11SHEET_TITLE    = 'Portal Tabs Properties'
12FIELD_NAME     = 'titles'
13PROPERTY_FIELD = ['portal_tabs|Portal Tabs Configuration', 'portal_footer|Portal Footer Configuration']
14
15""" Example javascript
16{'id'          : 'test.js',
17 'expression'  : 'python: member is not None',
18 'inline'      : False,
19 'enabled':    : True,
20 'cookable'    : True,
21 'compression' : 'safe',
22 'cacheable'   : True}
23"""
24
25JAVASCRIPTS = []
26
27""" Example css
28{'id'          : 'test.css',
29 'expression'  : 'python: member is not None',
30 'media'       : 'screen',
31 'rel'         : 'stylesheet',
32 'title'       : 'example styles',
33 'rendering'   : 'import',
34 'enabled':    : True,
35 'cookable'    : True,
36 'compression' : 'safe',
37 'cacheable'   : True}
38"""
39
40CSSES = [{'id'          : 'qplonetabs.css',
41          'expression'  : '',
42          'media'       : 'screen',
43          'rel'         : 'stylesheet',
44          'title'       : 'qPloneTabs styles',
45          'rendering'   : 'import',
46          'enabled'     : True,
47          'cookable'    : True,
48          'compression' : 'safe',
49          'cacheable'   : True}]
50
51
52""" Example kss
53{'id'          : 'test.kss',
54 'expression'  : 'python: member is not None',
55 'enabled':    : True,
56 'cookable'    : True,
57 'compression' : 'safe',
58 'cacheable'   : True}
59"""
60
61KSSES = [{'id'          : 'qplonetabs.kss',
62          'expression'  : '',
63          'enabled'     : True,
64          'cookable'    : True,
65          'compression' : 'safe',
66          'cacheable'   : True},]
67
Note: See TracBrowser for help on using the repository browser.