-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZMSFormatProvider.py
101 lines (89 loc) · 3.93 KB
/
ZMSFormatProvider.py
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# -*- coding: utf-8 -*-
################################################################################
# ZMSFormatProvider.py
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
################################################################################
# Imports.
from Products.PageTemplates.PageTemplateFile import PageTemplateFile
import copy
from zope.interface import implementer
# Product Imports.
import _confmanager
import IZMSConfigurationProvider
import IZMSFormatProvider, ZMSTextformatManager, ZMSCharformatManager
import ZMSItem
################################################################################
################################################################################
###
### Class
###
################################################################################
################################################################################
@implementer(
IZMSConfigurationProvider.IZMSConfigurationProvider,
IZMSFormatProvider.IZMSFormatProvider)
class ZMSFormatProvider(
ZMSItem.ZMSItem,
ZMSTextformatManager.ZMSTextformatManager,
ZMSCharformatManager.ZMSCharformatManager):
# Properties.
# -----------
meta_type = 'ZMSFormatProvider'
icon = "++resource++zms_/img/ZMSFormatProvider.png"
icon_clazz = "icon-font"
# Management Options.
# -------------------
manage_options_default_action = '../manage_customize'
def manage_options(self):
return map( lambda x: self.operator_setitem( x, 'action', '../'+x['action']), copy.deepcopy(self.aq_parent.manage_options()))
manage_sub_options__roles__ = None
def manage_sub_options(self):
return (
{'label': 'TAB_TEXTFORMATS','action': 'manage_textformats'},
{'label': 'TAB_CHARFORMATS','action': 'manage_charformats'},
)
# Management Interface.
# ---------------------
manage = PageTemplateFile('zpt/ZMSFormatProvider/manage_textformats',globals())
manage_main = PageTemplateFile('zpt/ZMSFormatProvider/manage_textformats',globals())
manage_textformats = PageTemplateFile('zpt/ZMSFormatProvider/manage_textformats',globals())
manage_charformats = PageTemplateFile('zpt/ZMSFormatProvider/manage_charformats',globals())
# Management Permissions.
# -----------------------
__administratorPermissions__ = (
'manage_changeTextformat', 'manage_textformats',
'manage_changeCharformat', 'manage_charformats',
)
__ac_permissions__=(
('ZMS Administrator', __administratorPermissions__),
)
"""
############################################################################
#
# Constructor
#
############################################################################
"""
############################################################################
# ZMSFormatProvider.__init__:
#
# Initialise a new instance.
############################################################################
def __init__(self, textformats=[], charformats=[]):
self.id = 'format_manager'
self.textformats = copy.deepcopy(textformats)
self.charformats = copy.deepcopy(charformats)
################################################################################