-
Notifications
You must be signed in to change notification settings - Fork 0
/
ZMSTextformatManager.py
235 lines (206 loc) · 9.13 KB
/
ZMSTextformatManager.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
# -*- coding: utf-8 -*-
################################################################################
# ZMSTextformatManager.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 App.Common import package_home
import copy
import urllib
# Product Imports.
import ZMSTextformat
################################################################################
################################################################################
###
### Class
###
################################################################################
################################################################################
class ZMSTextformatManager:
############################################################################
#
# XML IM/EXPORT
#
############################################################################
# --------------------------------------------------------------------------
# ZMSTextformatManager.importTextformatXml
# --------------------------------------------------------------------------
def _importTextformatXml(self, item, createIfNotExists=1):
id = item['key']
dict = item['value']
dict['default'] = dict.get('default',0)
if id in self.textformats:
i = self.textformats.index(id)
self.textformats[i+1] = dict
else:
self.textformats.extend([id,dict])
# Make persistent.
self.textformats = copy.deepcopy(self.textformats)
def importTextformatXml(self, xml, createIfNotExists=1):
v = self.parseXmlString(xml)
if type(v) is list:
for item in v:
self._importTextformatXml(item,createIfNotExists)
else:
self._importTextformatXml(v,createIfNotExists)
# --------------------------------------------------------------------------
# ZMSTextformatManager.delTextformat:
# --------------------------------------------------------------------------
def delTextformat(self, id):
i = self.textformats.index(id)
del self.textformats[i]
del self.textformats[i]
# Make persistent.
self.textformats = copy.deepcopy(self.textformats)
# --------------------------------------------------------------------------
# ZMSTextformatManager.setTextformat:
# --------------------------------------------------------------------------
def setTextformat(self, id, newId, newDisplay, newZMILang, newTag='', newSubtag='', newAttrs='', newRichedit=0, newUsage=[]):
if id in self.textformats:
i = self.textformats.index(id)
else:
i = len(self.textformats)
self.textformats.extend([newId,{'display':{},'default':0}])
dict = self.textformats[i+1]
dict['display'][newZMILang] = newDisplay
dict['tag'] = newTag
dict['subtag'] = newSubtag
dict['attrs'] = newAttrs
dict['richedit'] = newRichedit
dict['usage'] = newUsage
self.textformats[i] = newId
self.textformats[i+1] = dict
# Make persistent.
self.textformats = copy.deepcopy(self.textformats)
# --------------------------------------------------------------------------
# ZMSTextformatManager.getTextFormat:
# --------------------------------------------------------------------------
def getTextFormat(self, id, REQUEST):
if id in self.textformats:
i = self.textformats.index(id)
d = self.textformats[i+1]
return ZMSTextformat.ZMSTextformat(id,d,REQUEST)
return None
# --------------------------------------------------------------------------
# ZMSTextformatManager.getTextFormats:
# --------------------------------------------------------------------------
def getTextFormats(self, REQUEST):
l = map( lambda x: self.getTextFormat(self.textformats[x*2],REQUEST), range(len(self.textformats)/2))
l = map( lambda x: (x.getDisplay(), x), l)
l.sort()
return map(lambda x: x[1],l)
# --------------------------------------------------------------------------
# ZMSTextformatManager.setDefaultTextformat:
# --------------------------------------------------------------------------
def setDefaultTextformat(self, id):
if len(id) > 0 and id in self.textformats:
map( lambda x: self.operator_setitem(self.textformats[x*2+1],'default',0), range(len(self.textformats)/2))
i = self.textformats.index(id)
self.textformats[i+1]['default'] = 1
# Make persistent.
self.textformats = copy.deepcopy(self.textformats)
# --------------------------------------------------------------------------
# ZMSTextformatManager.getTextFormatDefault:
# --------------------------------------------------------------------------
def getTextFormatDefault(self):
if len(self.textformats) == 0:
return ''
i = 0
format_default = filter( lambda x: self.textformats[x*2+1].get('default',0)==1, range(len(self.textformats)/2))
if len(format_default) == 1:
i = format_default[0]*2
elif 'body' in self.textformats:
i = self.textformats.index('body')
return self.textformats[i]
############################################################################
# ZMSTextformatManager.manage_changeTextformat:
#
# Change text-formats.
############################################################################
def manage_changeTextformat(self, lang, REQUEST, RESPONSE):
""" ZMSTextformatManager.manage_changeTextformat """
message = ''
id = REQUEST.get('id','')
# Change.
# -------
if REQUEST['btn'] == self.getZMILangStr('BTN_SAVE'):
old_id = REQUEST['id']
id = REQUEST['new_id'].strip()
display = REQUEST['new_display'].strip()
tag = REQUEST['new_tag'].strip()
subtag = REQUEST['new_subtag'].strip()
attrs = REQUEST['new_attrs'].strip()
richedit = REQUEST.get('new_richedit',0)
usage = REQUEST.get('new_usage',[])
self.setTextformat(old_id,id,display,self.get_manage_lang(),tag,subtag,attrs,richedit,usage)
if REQUEST.has_key('new_default'):
self.setDefaultTextformat(id)
id = ''
message = self.getZMILangStr('MSG_CHANGED')
# Delete.
# -------
elif REQUEST['btn'] == self.getZMILangStr('BTN_DELETE'):
if id:
ids = [id]
else:
ids = REQUEST.get('ids',[])
for id in ids:
self.delTextformat(id)
id = ''
message = self.getZMILangStr('MSG_DELETED')%len(ids)
# Insert.
# -------
elif REQUEST['btn'] == self.getZMILangStr('BTN_INSERT'):
id = REQUEST['_id'].strip()
display = REQUEST['_display'].strip()
self.setTextformat(None,id,display,self.get_manage_lang())
message = self.getZMILangStr('MSG_CHANGED')
# Export.
# -------
elif REQUEST['btn'] == self.getZMILangStr('BTN_EXPORT'):
value = []
ids = REQUEST.get('ids',[])
fmts = self.textformats
for i in range(len(fmts)/2):
id = fmts[i*2]
ob = fmts[i*2+1]
if id in ids or len(ids) == 0:
value.append({'key':id,'value':ob})
if len(value)==1:
value = value[0]
content_type = 'text/xml; charset=utf-8'
filename = 'export.textfmt.xml'
export = self.getXmlHeader() + self.toXmlString(value,1)
RESPONSE.setHeader('Content-Type',content_type)
RESPONSE.setHeader('Content-Disposition','attachment;filename="%s"'%filename)
return export
# Import.
# -------
elif REQUEST['btn'] == self.getZMILangStr('BTN_IMPORT'):
f = REQUEST['file']
if f:
filename = f.filename
self.importTextformatXml(xml=f)
else:
filename = REQUEST['init']
self.importConf(filename, createIfNotExists=1)
message = self.getZMILangStr('MSG_IMPORTED')%('<i>%s</i>'%filename)
# Return with message.
if RESPONSE:
message = urllib.quote(message)
return RESPONSE.redirect('manage_textformats?lang=%s&manage_tabs_message=%s&id=%s'%(lang,message,id))
return message
################################################################################