source: products/qPloneGoogleMaps/tags/0.1.0/config.py @ 1591

Last change on this file since 1591 was 1, checked in by myroslav, 18 years ago

Building directory structure

  • Property svn:eol-style set to native
File size: 728 bytes
Line 
1try:
2    from Products.CMFCore.permissions import setDefaultRoles
3except ImportError:
4    from Products.CMFCore.CMFCorePermissions import setDefaultRoles
5
6PROJECTNAME = 'qPloneGoogleMaps'
7
8DEFAULT_ADD_CONTENT_PERMISSION = "Add portal content"
9GLOBALS = globals()
10SKINS_DIR = 'skins'
11
12NEW_PORTAL_TYPES = ['Map', 'Marker', 'Overlay']
13MAP_API_KEYS = ["http://localhost.com:8888/map|ABQIAAAAPKXXAksH6LF9wD3-iB3Z9hR-_Derz1M-sZYUdeXG3J1uZOMrKxT98efydo7fhYu6kuaFv5ESjlw4mw", ]
14
15MAP_PORTLETS = ['here/portlet_maps/macros/portlet', 'here/portlet_overlays/macros/portlet',]
16PROPERTY_SHEET = 'maps_properties'
17PROPERTY_FIELD = 'map_api_keys'
18GEO_INDEX = 'geoLocation'
19
20setDefaultRoles(DEFAULT_ADD_CONTENT_PERMISSION, ('Manager', 'Owner',))
Note: See TracBrowser for help on using the repository browser.