Mercurial > hg > MPIWGWeb
annotate MPIWGProjects.py @ 143:636fc61e64e7
more style
| author | casties |
|---|---|
| date | Fri, 31 May 2013 20:16:44 +0200 |
| parents | 4a8a532a05ba |
| children | a9ad7dd7a8b2 |
| rev | line source |
|---|---|
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1 """This contains the class MPIWG Projects |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
2 for organizing and maintaining the different project pages |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
3 |
| 39 | 4 $author dwinter 26.06.2008 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
5 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
6 """ |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
7 from Products.PageTemplates.PageTemplateFile import PageTemplateFile |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
8 from OFS.Image import Image |
| 22 | 9 from App.ImageFile import ImageFile |
| 10 from OFS.SimpleItem import SimpleItem | |
| 11 from OFS.Folder import Folder | |
| 12 from AccessControl import ClassSecurityInfo | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
13 from Globals import package_home |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
14 import urllib |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
15 import re |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
16 import os |
| 22 | 17 import sys |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
18 import logging |
| 22 | 19 import time |
| 80 | 20 import unicodedata |
| 22 | 21 |
| 49 | 22 import xml.etree.ElementTree as ET |
| 23 | |
| 65 | 24 from SrvTxtUtils import getInt, unicodify, utf8ify, serialize, refreshingImageFileIndexHtml, shortenString |
| 33 | 25 from Products.ZDBInterface.ZDBInterfaceFolder import ZDBInterfaceFolder |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
26 |
| 80 | 27 import xmlhelper # Methoden zur Verwaltung der projekt xml |
| 27 | 28 from HashTree import HashTree |
| 80 | 29 import MPIWGHelper |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
30 |
| 39 | 31 # TODO: better names for the fields |
| 35 | 32 fieldLabels = {'WEB_title':'WEB_Title', |
| 33 | 33 'xdata_01':'Responsible Scientists', |
| 34 'xdata_02':'Department', | |
| 35 'xdata_03':'Historical Persons', | |
| 36 'xdata_04':'Time period', | |
| 37 'xdata_05':'Sorting number', | |
| 38 'xdata_06':'Keywords', | |
| 39 'xdata_07':'Short title', | |
| 40 'xdata_08':'Other involved scholars' , | |
| 41 'xdata_09':'Disciplines', | |
| 42 'xdata_10':'Themes', | |
| 43 'xdata_11':'Object Digitallibrary', | |
| 44 'xdata_12':'Cooperation partners', | |
| 45 'xdata_13':'Funding institutions', | |
| 46 'WEB_project_header':'WEB_project_header', | |
| 47 'WEB_project_description':'WEB_project_description', | |
| 48 'WEB_related_pub':'WEB_related_pub'} | |
| 49 | |
| 39 | 50 definedFields = fieldLabels.keys() # TODO: should this be sorted? |
| 51 | |
| 81 | 52 editableFields = ('xdata_07', 'xdata_01', 'xdata_05', 'xdata_08', 'xdata_12', 'xdata_13') |
| 33 | 53 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
54 # die folgenden Klassen sind jetzt in einzelne Files ausgelagert aus Kompatibilitaetsgruenden, bleiben die Klassen hier noch drin. |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
55 # Sonst funktionieren die alten Webseiten nicht mehr. |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
56 |
| 80 | 57 import MPIWGRoot |
| 58 import MPIWGLink | |
| 59 import MPIWGTemplate | |
| 60 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
61 class MPIWGRoot(MPIWGRoot.MPIWGRoot): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
62 """depricated""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
63 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
64 class MPIWGLink(MPIWGLink.MPIWGLink): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
65 """depricated""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
66 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
67 class MPIWGTemplate(MPIWGTemplate.MPIWGTemplate): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
68 """depricated""" |
| 80 | 69 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
70 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
71 class MPIWGProject_publication(Folder): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
72 """publications object fuer project""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
73 |
| 35 | 74 meta_type = "MPIWGProject_publication" |
| 61 | 75 |
| 76 text = None | |
| 77 link = None | |
| 78 bookId = None | |
| 79 | |
| 65 | 80 # templates |
| 81 | 81 edit = PageTemplateFile('zpt/project/related_publication/edit_basic', globals()) |
| 61 | 82 |
| 83 | |
| 81 | 84 redirect = MPIWGHelper.redirect |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
85 |
| 61 | 86 |
| 87 def hasLinkToBookPage(self): | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
88 """teste ob eingebener link zu einer MPIWG Book page geht""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
89 logging.debug("MPIWGProject_publication - begin hasLinkToBookPage") |
| 61 | 90 if not self.link: |
| 35 | 91 return False # es gibt keinen link |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
92 |
| 61 | 93 paths = self.link.split('/') |
| 94 if len(paths) > 2: | |
| 95 # book page should be in folder books | |
| 96 bookid = None | |
| 97 try: | |
| 98 idx = paths.index('books') | |
| 99 bookid = paths[idx + 1] | |
| 100 book = self.en.books[bookid] | |
| 101 self.bookId = bookid | |
| 102 return True | |
| 103 | |
| 104 except: | |
| 105 logging.debug("hasLinkToBookPage: not a book page link=%s"%self.link) | |
| 106 | |
| 107 self.bookId = None | |
| 108 return False | |
| 109 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
110 |
| 61 | 111 def getBookId(self): |
| 112 """Return the book page id.""" | |
| 113 return self.bookId | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
114 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
115 |
| 80 | 116 getUrl = MPIWGHelper.getUrl |
| 117 | |
| 118 | |
| 61 | 119 def editPublication(self, text=None, description=None, link=None, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
120 """edit a publication""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
121 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
122 if (not text) and (not description): |
| 81 | 123 pt = self.edit |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
124 return pt() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
125 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
126 if text: |
| 61 | 127 self.text = text |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
128 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
129 if description: |
| 35 | 130 self.description = description |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
131 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
132 if link: |
| 61 | 133 self.link = link |
| 134 self.hasLinkToBookPage() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
135 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
136 if RESPONSE: |
| 35 | 137 self.redirect(RESPONSE, "../managePublications") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
138 |
| 39 | 139 |
| 81 | 140 class MPIWGProject_relatedProject(SimpleItem): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
141 """publications object fuer project""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
142 |
| 35 | 143 meta_type = "MPIWGProject_relatedProject" |
| 60 | 144 |
| 61 | 145 objid = None |
| 146 projectLabel = None | |
| 147 | |
| 80 | 148 # templates |
| 81 | 149 edit = PageTemplateFile('zpt/project/related_project/edit_basic', globals()) |
| 61 | 150 |
| 81 | 151 |
| 152 redirect = MPIWGHelper.redirect | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
153 |
| 60 | 154 |
| 61 | 155 def getProjectId(self): |
| 156 """Return the related project id.""" | |
| 157 return self.objid | |
| 158 | |
| 159 | |
| 160 def getProject(self): | |
| 161 """Return the related project object.""" | |
| 162 return getattr(self.projects, self.objid, None) | |
| 163 | |
| 164 | |
| 60 | 165 def getProjectTitle(self): |
| 166 """Return the title of the related project.""" | |
| 167 return getattr(self, 'projectWEB_title', None) | |
| 61 | 168 |
| 60 | 169 |
| 61 | 170 def getProjectLabel(self): |
| 171 """Return the label of the related project.""" | |
| 172 label = getattr(self, 'projectLabel', None) | |
| 173 if not label: | |
| 174 proj = self.getProject() | |
| 175 if proj is not None: | |
| 176 label = proj.getLabel() | |
| 177 | |
| 178 self.projectLabel = label | |
| 179 | |
| 180 return label | |
| 181 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
182 |
| 80 | 183 getUrl = MPIWGHelper.getUrl |
| 184 | |
| 185 | |
| 35 | 186 def editRelatedProject(self, link=None, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
187 """edit a publication""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
188 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
189 if (not link): |
| 63 | 190 pt = self.editDescription |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
191 return pt() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
192 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
193 # hole die id des projektes |
| 35 | 194 splitted = link.split("/") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
195 |
| 35 | 196 # teste ob es das project gibt |
| 197 if len(splitted) < 1: | |
| 198 self.redirect(RESPONSE, 'errorRelatedProjects?link=' + link) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
199 |
| 35 | 200 objid = splitted[-1] |
| 201 object = getattr(self.projects, objid, None) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
202 |
| 61 | 203 if object is None: |
| 35 | 204 self.redirect(RESPONSE, 'errorRelatedProjects?link=' + link) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
205 |
| 35 | 206 self.orginallink = link[0:] |
| 207 self.objid = objid[0:] | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
208 |
| 52 | 209 self.projectWEB_title = object.getProjectTitle() |
| 61 | 210 self.projectLabel = object.getLabel() |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
211 |
| 35 | 212 self.enabled = True; |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
213 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
214 if RESPONSE: |
| 35 | 215 self.redirect(RESPONSE, "../manageRelatedProjects") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
216 |
| 39 | 217 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
218 class MPIWGProject_image(Image): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
219 """Images for Projects""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
220 |
| 35 | 221 meta_type = "MPIWGProject_image" |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
222 |
| 65 | 223 # templates |
|
96
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
224 oldShowImage = PageTemplateFile('zpt/project/image/projectImageView', globals()) |
| 65 | 225 editForm = PageTemplateFile('zpt/project/image/edit_basic', globals()) |
| 226 | |
| 80 | 227 getUrl = MPIWGHelper.getUrl |
| 228 | |
|
96
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
229 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
230 def getCaption(self): |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
231 """Return the image caption.""" |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
232 return getattr(self, 'caption', None) |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
233 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
234 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
235 def getLink(self): |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
236 """Return the image link.""" |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
237 return getattr(self, 'link', None) |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
238 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
239 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
240 def editImage(self, file=None, caption=None, link=None, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
241 """edit the Image""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
242 if (not file) and (not caption): |
| 65 | 243 pt = self.editForm |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
244 return pt() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
245 |
|
96
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
246 if file and (not file.filename.strip() == ""): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
247 self.manage_upload(file) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
248 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
249 if caption: |
|
96
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
250 if isinstance(caption, list): |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
251 caption = caption[0] |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
252 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
253 self.caption = caption |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
254 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
255 if link: |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
256 self.link = link |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
257 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
258 if RESPONSE: |
| 35 | 259 self.redirect(RESPONSE, "../manageImages") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
260 |
| 24 | 261 |
| 81 | 262 class MPIWGProject_InfoBlock(SimpleItem): |
| 263 """publications object fuer project""" | |
| 264 | |
| 265 meta_type = "MPIWGProject_InfoBlock" | |
| 266 | |
| 267 # templates | |
| 268 edit = PageTemplateFile('zpt/project/infoblock/edit_items', globals()) | |
| 269 | |
| 270 | |
| 271 redirect = MPIWGHelper.redirect | |
| 272 | |
| 273 | |
| 274 def __init__(self, id, title=None): | |
| 275 """Create info block.""" | |
| 276 self.id = id | |
| 277 self.title = title | |
| 278 self.place = 0 | |
| 279 self.items = [] | |
| 280 | |
| 281 | |
| 282 def getTitle(self): | |
| 283 """Return the title.""" | |
| 284 return self.title | |
| 285 | |
| 286 | |
| 287 def getItems(self): | |
| 288 """Return the list of items.""" | |
| 289 return self.items | |
| 290 | |
| 291 | |
| 292 def setItems(self, items): | |
| 293 """Set the list of items.""" | |
| 294 self.items = items | |
| 295 self._p_changed = True | |
| 296 | |
| 297 | |
| 298 def addItem(self, item=None, text=None, link=None, RESPONSE=None): | |
| 299 """Add an item to the InfoBox""" | |
| 300 if item is None: | |
| 301 item = {'text': text, 'link': link} | |
| 302 | |
| 303 self.items.append(item) | |
| 304 self._p_changed = True | |
| 305 if RESPONSE is not None: | |
| 306 self.redirect(RESPONSE, 'edit') | |
| 307 | |
| 308 | |
| 309 def deleteItem(self, idx, RESPONSE=None): | |
| 310 """Delete an item from the info block.""" | |
| 311 try: | |
| 312 del self.items[int(idx)] | |
| 313 self._p_changed = True | |
| 314 except: | |
| 315 logging.error("InfoBlock deleteItem: error deleting item %s!"%idx) | |
| 316 | |
| 317 if RESPONSE is not None: | |
| 318 self.redirect(RESPONSE, 'edit') | |
| 319 | |
| 320 | |
| 321 def moveItem(self, idx, op, RESPONSE=None): | |
| 322 """Move items up or down the list.""" | |
| 323 try: | |
| 324 idx = int(idx) | |
| 325 if op == 'up': | |
| 326 if idx > 0: | |
| 327 self.items[idx-1], self.items[idx] = self.items[idx], self.items[idx-1] | |
| 328 elif op == 'down': | |
| 329 if idx < len(self.items)-1: | |
| 330 self.items[idx], self.items[idx+1] = self.items[idx+1], self.items[idx] | |
| 331 | |
| 332 self._p_changed = True | |
| 333 except: | |
| 334 logging.error("InfoBlock moveItem: error moving item at %s!"%idx) | |
| 335 | |
| 336 if RESPONSE is not None: | |
| 337 self.redirect(RESPONSE, 'edit') | |
| 338 | |
| 339 | |
| 340 def editItems(self, REQUEST, RESPONSE=None): | |
| 341 """Change items from request form.""" | |
| 342 form = REQUEST.form | |
| 343 for k in form: | |
| 344 t, n = k.split('_') | |
| 345 if t in ['text', 'link']: | |
| 346 try: | |
| 347 logging.debug("editItems: change[%s].%s = %s"%(n,t,repr(form[k]))) | |
| 348 self.items[int(n)][t] = form[k] | |
| 349 except: | |
| 350 logging.error("InfoBlock editItems: error changing item %s!"%k) | |
| 351 | |
| 352 self._p_changed = True | |
| 353 if RESPONSE is not None: | |
| 354 self.redirect(RESPONSE, 'edit') | |
| 355 | |
| 356 | |
| 357 | |
| 65 | 358 class MPIWGProject(Folder): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
359 """Class for Projects""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
360 |
| 33 | 361 security = ClassSecurityInfo() |
| 362 meta_type = 'MPIWGProject' | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
363 |
| 35 | 364 manage_options = Folder.manage_options + ( |
| 365 {'label':'Load New File', 'action':'loadNewFileForm'}, | |
| 63 | 366 {'label':'Edit', 'action':'editDescription'}, |
| 22 | 367 ) |
| 35 | 368 # {'label':'Edit ProjectInfo','action':'editMPIWGProjectForm'}, |
| 369 # {'label':'Edit BasisInfo','action':'editMPIWGBasisForm'}, | |
| 370 # {'label':'Edit Publications','action':'editMPIWGRelatedPublicationsForm'}, | |
| 371 # {'label':'Edit Themes & Disciplines','action':'editMPIWGDisciplinesThemesForm'}, | |
| 372 # {'label':'Versionmanager','action':'versionManageForm'}, | |
| 22 | 373 |
| 33 | 374 # |
| 375 # templates | |
| 376 # | |
| 90 | 377 project_html = PageTemplateFile('zpt/project/project_index_html', globals()) |
| 50 | 378 # edit templates |
| 22 | 379 edit_css = ImageFile('css/edit.css', globals()) |
| 380 # make css refreshable for development | |
| 381 edit_css.index_html = refreshingImageFileIndexHtml | |
| 61 | 382 # user-accessible editing templates |
| 90 | 383 edit_template = PageTemplateFile('zpt/project/edit_template', globals()) |
| 63 | 384 security.declareProtected('View management screens', 'editBasic') |
| 385 editBasic = PageTemplateFile('zpt/project/edit_basic', globals()) | |
| 90 | 386 security.declareProtected('View management screens', 'editDescription') |
| 63 | 387 editDescription = PageTemplateFile('zpt/project/edit_description', globals()) |
| 90 | 388 security.declareProtected('View management screens', 'editRelatedProjectsForm') |
| 60 | 389 editRelatedProjectsForm = PageTemplateFile('zpt/project/edit_related_projects', globals()) |
| 61 | 390 editRelatedProjectsError = PageTemplateFile('zpt/project/edit_related_projects_error', globals()) |
| 95 | 391 security.declareProtected('View management screens', 'editImagesForm') |
| 392 editImagesForm = PageTemplateFile('zpt/project/edit_images', globals()) | |
| 90 | 393 security.declareProtected('View management screens', 'editPublicationsForm') |
| 60 | 394 editPublicationsForm = PageTemplateFile('zpt/project/edit_publications', globals()) |
| 90 | 395 security.declareProtected('View management screens', 'editInfoBlocksForm') |
| 81 | 396 editInfoBlocksForm = PageTemplateFile('zpt/project/edit_infoblocks', globals()) |
| 90 | 397 security.declareProtected('View management screens', 'editAdditionalPublicationsForm') |
| 61 | 398 editAdditionalPublicationsForm = PageTemplateFile('zpt/project/pubman/change_publications', globals()) |
| 90 | 399 security.declareProtected('View management screens', 'editAddAdditionalPublications') |
| 62 | 400 editAddAdditionalPublications = PageTemplateFile('zpt/project/pubman/add_publications', globals()) |
| 63 | 401 security.declareProtected('View management screens', 'edit') |
| 402 edit = editDescription | |
| 50 | 403 # management templates |
| 90 | 404 security.declareProtected('View management screens', 'loadNewFileForm') |
| 50 | 405 loadNewFileForm = PageTemplateFile('zpt/project/manage_newfile', globals()) |
| 406 description_only_html = PageTemplateFile('zpt/project/description_only_html', globals()) | |
| 61 | 407 # additional pages |
|
74
e424b68244c8
better template for additional project publications.
casties
parents:
65
diff
changeset
|
408 additional_publications_html = PageTemplateFile('zpt/project/pubman/show_publications', globals()) |
| 22 | 409 |
| 410 | |
| 411 def __init__(self, id, argv=None): | |
| 412 """initiere classe""" | |
| 35 | 413 self.creationTime = time.strftime("%Y%m%d%H%M%S", time.localtime())[0:] |
| 414 self.id = id | |
| 415 self.title = id | |
| 416 self.isActiveFlag = True # Flag is true is the project is still active, False if accomplished | |
| 417 self.responsibleScientistsList = [] # enthaelt die Lister der verantwortlichen Wissenschaftler in der Form (NAME, KEY), key ist "" flass Wissenschaftler nicht an unserem Haus | |
| 97 | 418 self.projectThumb = None |
| 22 | 419 |
| 420 if argv: | |
| 421 for arg in definedFields: | |
| 422 try: | |
| 35 | 423 setattr(self, arg, argv[arg]) |
| 22 | 424 except: |
| 35 | 425 setattr(self, arg, "") |
| 22 | 426 else: |
| 427 for arg in definedFields: | |
| 35 | 428 setattr(self, arg, '') |
| 22 | 429 |
| 430 | |
| 35 | 431 def index_html(self): |
| 432 """default html representation""" | |
| 433 # TODO: do we need to do date-stuff? | |
| 434 # get template | |
|
74
e424b68244c8
better template for additional project publications.
casties
parents:
65
diff
changeset
|
435 pt = self.project_html |
| 35 | 436 # render template |
| 437 return pt() | |
| 438 | |
| 81 | 439 |
| 440 redirect = MPIWGHelper.redirect | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
441 |
| 27 | 442 |
| 60 | 443 def getDefinedFields(self): |
| 444 """show all defined fields.""" | |
| 445 return definedFields | |
| 446 | |
| 447 | |
| 448 def getFieldLabels(self): | |
| 449 """Return the field labels dict.""" | |
| 450 return fieldLabels | |
| 451 | |
| 452 | |
| 453 def getEditableFields(self): | |
| 454 """giveListofDatafields""" | |
| 455 return editableFields | |
| 456 | |
| 457 | |
| 27 | 458 def getNumber(self): |
| 459 """returns sorting number""" | |
| 33 | 460 n = getattr(self, 'xdata_05', None) |
| 461 if isinstance(n, list): | |
| 462 # compat with old lists | |
| 463 return n[0] | |
| 464 else: | |
| 465 return n | |
| 27 | 466 |
| 35 | 467 |
| 80 | 468 def getProjectTitle(self, forSorting=False): |
| 35 | 469 """returns the project title""" |
| 470 t = getattr(self, 'WEB_title', None) | |
| 471 if isinstance(t, list): | |
| 472 # compat with old lists | |
| 80 | 473 t = t[0] |
| 474 | |
| 475 if forSorting and t is not None: | |
| 476 # remove stopwords and signs for sorting | |
| 477 if t.lower().startswith('a '): | |
| 478 t = t[2:] | |
| 479 elif isinstance(t, unicode) and unicodedata.category(t[0])[0] != 'L': | |
| 480 t = t[1:] | |
| 481 | |
| 482 return t | |
| 35 | 483 |
| 39 | 484 |
| 485 def getLabel(self): | |
| 486 """returns label (or title) of this project""" | |
| 487 l = getattr(self, 'xdata_07', None) | |
| 488 if isinstance(l, list): | |
| 489 # compat with old lists | |
| 490 l = l[0] | |
| 491 | |
| 492 if l: | |
| 493 return l | |
| 494 else: | |
| 495 return self.getProjectTitle() | |
| 496 | |
| 497 | |
| 35 | 498 def getResponsibleScientists(self): |
| 499 """returns the responsible scientists as string""" | |
| 500 t = getattr(self, 'xdata_01', None) | |
| 501 if isinstance(t, list): | |
| 502 # compat with old lists | |
| 503 return t[0] | |
| 504 else: | |
| 505 return t | |
| 506 | |
| 507 | |
| 508 def getResponsibleScientistsList(self): | |
| 509 """returns a list with the responsible scientists as dicts with name, key, and shortname""" | |
| 97 | 510 return getattr(self, 'responsibleScientistsList', []) |
| 35 | 511 |
| 512 | |
| 513 def setResponsibleScientistsList(self, nameDict): | |
| 514 """sets the responsibleScientistsList from nameDict. | |
| 515 List will be ordered like the responsible scientists field.""" | |
| 516 names = self.getResponsibleScientists() | |
| 517 if names.find(";") > -1: # rate Trenner ist ; | |
| 518 nameList = names.split(";") | |
| 519 else: | |
| 520 nameList = names.split(",") | |
| 521 | |
| 522 scientistsList = [] | |
| 523 for name in nameList: | |
| 524 name = unicodify(name.strip()) | |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
525 if not name: |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
526 continue |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
527 |
| 35 | 528 logging.debug("setResponsibleScientistsList: name=%s"%repr(name)) |
| 529 if name in nameDict: | |
| 530 # found in data | |
| 531 data = nameDict[name] | |
| 532 scientistsList.append({'name': name, 'key': data['key'], 'username': data['username']}) | |
| 533 else: | |
| 534 scientistsList.append({'name': name}) | |
| 535 | |
| 536 logging.debug("setResponsibleScientistsList: nameDict=%s new list=%s"%(repr(nameDict),repr(scientistsList))) | |
| 537 self.responsibleScientistsList = scientistsList | |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
538 # force update of the Properties list in the ZopeDB |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
539 self._p_changed = 1 |
| 35 | 540 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
541 |
| 39 | 542 def getInvolvedScholars(self): |
| 543 """returns the other involved scholars""" | |
| 544 t = getattr(self, 'xdata_08', None) | |
| 545 if isinstance(t, list): | |
| 546 # compat with old lists | |
| 547 return t[0] | |
| 548 else: | |
| 549 return t | |
| 550 | |
| 551 | |
| 552 def getCooperationPartners(self): | |
| 553 """returns the cooperation partners""" | |
| 554 t = getattr(self, 'xdata_12', None) | |
| 555 if isinstance(t, list): | |
| 556 # compat with old lists | |
| 557 return t[0] | |
| 558 else: | |
| 559 return t | |
| 560 | |
| 61 | 561 |
|
96
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
562 def getMPIWGProject(self): |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
563 """Return this project for acquisition.""" |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
564 return self |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
565 |
|
2dd8e3be4a8e
add project image link. fix edit image template bug.
casties
parents:
95
diff
changeset
|
566 |
| 61 | 567 def getMPIWGProjectUrl(self): |
| 568 """Return this project for acquisition.""" | |
| 569 return self.absolute_url() | |
| 570 | |
| 39 | 571 |
| 80 | 572 getUrl = MPIWGHelper.getUrl |
| 27 | 573 |
| 574 | |
| 65 | 575 def getThumbUrl(self, default=None): |
| 24 | 576 """returns the URL of the project thumbnail image""" |
| 97 | 577 thumb = getattr(self, 'projectThumb', None) |
| 36 | 578 if thumb is None: |
| 52 | 579 # get thumb from list (thumb is last image) |
| 36 | 580 imgs = self.getImageList() |
| 581 if len(imgs) > 0: | |
| 52 | 582 thumb = imgs[-1] |
| 36 | 583 self.projectThumb = thumb |
| 584 | |
| 585 if thumb is None: | |
| 52 | 586 return default |
| 36 | 587 |
| 588 return thumb.absolute_url() | |
| 589 | |
| 24 | 590 |
| 39 | 591 def getDepartment(self): |
| 592 """returns the department of this project""" | |
| 593 num = self.getNumber() | |
| 594 pp = num.find('.') | |
| 595 if pp > 0: | |
| 596 num = num[:pp] | |
| 597 | |
| 80 | 598 return self.en.getMPIWGRoot().getDepartment(projectNumber=num) |
| 39 | 599 |
| 600 | |
| 601 def getDepartmentId(self): | |
| 602 """returns the id of the department of this project""" | |
| 603 dep = self.getDepartment() | |
| 604 if dep is not None: | |
| 605 return dep.getId() | |
| 606 | |
| 607 return None | |
| 608 | |
| 609 | |
| 102 | 610 def getDescription(self, filter=None, length=0): |
| 39 | 611 """returns the project description""" |
| 49 | 612 text = getattr(self, 'WEB_project_description', None) |
| 613 if isinstance(text, list): | |
| 39 | 614 # compat with old lists |
| 49 | 615 text = text[0] |
| 616 | |
| 102 | 617 if filter == 'plaintext': |
| 618 # filter out any tags, keep only text | |
| 619 try: | |
| 620 xmltext = utf8ify("<div>%s</div>"%text) | |
| 621 dom = ET.fromstring(xmltext) | |
| 622 plaintext = "" | |
| 623 for elem in dom.iter(): | |
| 624 if elem.tag == 'style': | |
| 625 # ignore tag | |
| 626 continue | |
| 627 | |
| 628 if elem.text: | |
| 629 plaintext += elem.text | |
| 630 if elem.tail: | |
| 631 plaintext += elem.tail | |
| 632 | |
| 633 if length > 0 and len(plaintext) > length: | |
| 634 break | |
| 635 | |
| 636 text = plaintext | |
| 637 except Exception, e: | |
| 638 logging.warn("getDesciption: error parsing description! Returning everything. %s"%e) | |
| 639 | |
| 640 if length > 0 and len(text) > length: | |
| 641 # try to not break words | |
| 642 if text[length] not in [' ', '.', '?', '!']: | |
| 643 # search the last blank | |
| 644 length = text.rfind(' ', 0, length) | |
| 645 | |
| 646 return text[:length] + '...' | |
| 647 | |
| 49 | 648 return text |
| 649 | |
| 39 | 650 |
| 651 def getSuperProjects(self): | |
| 652 """returns a list of ancestor projects to the root""" | |
| 653 tree = self.getProjectTree() | |
| 654 return tree.getAncestorsOf(self.getNumber()) | |
| 655 | |
| 656 | |
| 657 def getSubProjects(self, active=1): | |
| 658 """returns a list of child projects""" | |
| 659 tree = self.getProjectTree() | |
| 660 return [p for p in tree.getChildrenOf(self.getNumber()) if p.checkActive(active)] | |
| 661 | |
| 662 | |
| 663 def getRelatedDigitalSources(self): | |
| 664 """returns the related digital sources""" | |
| 665 t = getattr(self, 'xdata_11', None) | |
| 666 if isinstance(t, list): | |
| 667 # compat with old lists | |
| 668 return t[0] | |
| 669 else: | |
| 670 return t | |
| 43 | 671 |
| 39 | 672 |
| 673 def getFundingInstitutions(self): | |
| 674 """returns the funding institutions""" | |
| 675 t = getattr(self, 'xdata_13', None) | |
| 676 if isinstance(t, list): | |
| 677 # compat with old lists | |
| 678 return t[0] | |
| 679 else: | |
| 680 return t | |
| 681 | |
| 24 | 682 |
| 63 | 683 def _moveObjectPlace(self, objectList, objectId, direction): |
| 60 | 684 """Move object with objectId from objectList in direction |
| 685 by changing its place attribute.""" | |
| 686 if not objectId or not direction: | |
| 687 return | |
| 688 | |
| 689 for idx in range(len(objectList)): | |
| 690 object = objectList[idx] | |
| 61 | 691 if object.getId() == objectId: |
| 60 | 692 if direction == 'up': |
| 693 if idx > 0: | |
| 694 # move up | |
| 695 objectList[idx -1].place += 1 | |
| 696 objectList[idx].place -= 1 | |
| 697 | |
| 698 elif direction == 'down': | |
| 699 if idx < len(objectList) - 1: | |
| 700 # move down | |
| 701 objectList[idx + 1].place -= 1 | |
| 702 objectList[idx].place += 1 | |
| 703 | |
| 704 return | |
| 705 | |
| 63 | 706 |
| 707 def getImageList(self): | |
| 708 """returns the sorted list of images for this project""" | |
| 709 items = self.objectValues(spec='MPIWGProject_image') | |
| 710 # sort by place | |
| 711 return sorted(items, key=lambda x:int(getattr(x, 'place', 0))) | |
| 712 | |
| 713 | |
| 127 | 714 |
| 715 def scaleImage(self,REQUEST=None,RESPONSE=None): | |
| 716 """scale the last image""" | |
| 717 from PIL import Image; | |
| 718 from cStringIO import StringIO; | |
| 719 import ImageFilter | |
| 720 | |
| 721 | |
| 722 | |
| 723 | |
| 724 images = self.getImageList(); | |
| 725 if len(images)>0: | |
| 726 img = images[-1] #nimmt das letze | |
| 727 | |
| 728 logging.debug(img) | |
| 729 datStringIO = StringIO(); | |
| 730 """ | |
| 731 data=img.data | |
| 732 if isinstance(data, str): | |
| 733 datStringIO.write(data) | |
| 734 else: | |
| 735 | |
| 736 while data is not None: | |
| 737 datStringIO.write(data.data) | |
| 738 data=data.next | |
| 739 | |
| 740 """ | |
| 741 | |
| 742 logging.debug(img.absolute_url()) | |
| 743 | |
| 744 url = img.absolute_url() | |
| 745 if not url.startswith("http"): | |
| 746 url=REQUEST['URL0']+url | |
| 747 ul = urllib.urlopen(url) | |
| 748 datStringIO = StringIO(ul.read()); | |
| 749 | |
| 750 | |
| 751 try: | |
| 752 pilImg = Image.open(datStringIO) | |
| 753 | |
| 754 | |
| 755 except: | |
| 756 logging.error("scale image input:"+self.getId()) | |
| 757 return | |
| 758 | |
| 759 w,h = pilImg.size | |
| 760 logging.debug("oldsize: %s %s"%(w,h)) | |
| 761 targetW=120. | |
| 762 targetH=75. | |
| 763 | |
| 764 if targetW == w and targetH == h: | |
| 765 return | |
| 766 facW=targetW/w | |
| 767 | |
| 768 h1 = int(h*facW) | |
| 769 | |
| 770 if h1<targetH: #bild zu klein in h | |
| 771 facH=targetH/h | |
| 772 | |
| 773 w1=int(w*facH) | |
| 774 | |
| 775 fs = min(max(int(1/facH)+1,3),10) | |
| 776 logging.debug(fs) | |
| 777 if (1/facH) > 2: | |
| 778 pilImg = pilImg.filter(ImageFilter.BLUR) | |
| 779 | |
| 780 try: | |
| 781 pilImg = pilImg.filter(ImageFilter.MaxFilter(fs)) | |
| 782 except: | |
| 783 pilImg = pilImg.filter(ImageFilter.MaxFilter(fs-1)) | |
| 784 | |
| 785 logging.debug("Xnew size: %s %s"%(w1,targetH)) | |
| 786 res = pilImg.resize((w1,int(targetH)),Image.ANTIALIAS); | |
| 787 | |
| 788 | |
| 789 else: | |
| 790 fs = min(max(int(1/facW)+1,3),10) | |
| 791 logging.debug(fs) | |
| 792 | |
| 793 if (1/facW) > 2: | |
| 794 try: | |
| 795 pilImg = pilImg.filter(ImageFilter.BLUR) | |
| 796 except: | |
| 797 pass #some image types cannot be filter, just ignore | |
| 798 | |
| 799 try: | |
| 800 pilImg = pilImg.filter(ImageFilter.MaxFilter(fs)) | |
| 801 except: | |
| 802 | |
| 803 | |
| 804 try: | |
| 805 pilImg = pilImg.filter(ImageFilter.MaxFilter(fs-1)) | |
| 806 except: | |
| 807 pass | |
| 808 logging.debug("ynew size: %s %s"%(targetW,h1)) | |
| 809 res = pilImg.resize((int(targetW),h1)) | |
| 810 | |
| 811 nw,nh = res.size | |
| 812 | |
| 813 cutW1=int(nw/2-(targetW/2)) | |
| 814 cutW2=int(nw/2+(targetW/2)) | |
| 815 | |
| 816 cutH1=int(nh/2-(targetH/2)) | |
| 817 cutH2=int(nh/2+(targetH/2)) | |
| 818 | |
| 819 | |
| 820 | |
| 821 res2 = res.crop((cutW1,cutH1,cutW2,cutH2)) | |
| 822 | |
| 823 outS = StringIO() | |
| 824 | |
| 825 #res2.save("/tmp/"+self.getId()+".jpg") | |
| 826 | |
| 827 try: | |
| 828 res2.save(outS,"JPEG") | |
| 829 | |
| 830 self.addImage(outS, None, RESPONSE, filename="thumb.jpg") | |
| 831 | |
| 832 except: | |
| 833 logging.error("scale image:"+self.getId()) | |
| 834 | |
| 835 | |
| 836 | |
| 63 | 837 def addImage(self, fileHd, caption, RESPONSE=None, filename=None): |
| 838 """add an MPIWG_Project_image""" | |
| 839 | |
| 840 if not filename: | |
| 841 filename = fileHd.filename | |
| 842 | |
| 843 if not fileHd: | |
| 844 fileHd = file(os.path.join(package_home(globals()), 'blank.gif')) | |
| 845 | |
| 846 newImage = MPIWGProject_image(filename, filename, fileHd) | |
| 847 | |
| 848 self._setObject(filename, newImage) | |
| 849 obj = getattr(self, filename) | |
| 127 | 850 if caption is None: |
| 851 obj.caption=None | |
| 852 else: | |
| 853 obj.caption = caption[:] | |
| 854 | |
| 63 | 855 obj.enabled = True; |
| 856 obj.place = self._getLastImageNumber() + 1 | |
| 857 obj.id = filename | |
| 858 | |
| 859 # invalidate thumbnail | |
| 860 self.projectThumb = None | |
| 861 | |
| 862 if RESPONSE is not None: | |
| 863 self.redirect(RESPONSE, 'manageImages') | |
| 864 | |
| 865 | |
| 866 def _getLastImageNumber(self): | |
| 867 items = self.getImageList() | |
| 868 if not items: | |
| 869 return 0 | |
| 870 else: | |
| 871 return getattr(items[-1], 'place', 0) | |
| 872 | |
| 873 | |
| 61 | 874 def manageImages(self, name=None, op=None): |
| 60 | 875 """manage images""" |
| 63 | 876 self._moveObjectPlace(self.getImageList(), name, op) |
| 60 | 877 |
| 51 | 878 # invalidate thumbnail |
| 879 self.projectThumb = None | |
| 60 | 880 |
| 881 pt = self.editImagesForm | |
| 50 | 882 return pt() |
| 883 | |
| 60 | 884 |
| 63 | 885 def deleteImage(self, id, RESPONSE=None): |
| 886 """delete Image id""" | |
| 887 try: | |
| 888 self.manage_delObjects([id]) | |
| 889 except: | |
| 890 logging.error("ERROR MPIWG: %s %s" % sys.exc_info()[0:2]) | |
| 891 | |
| 892 # invalidate thumbnail | |
| 893 self.projectThumb = None | |
| 894 | |
| 895 if RESPONSE: | |
| 896 self.redirect(RESPONSE, 'manageImages') | |
| 50 | 897 |
| 63 | 898 |
| 899 def getPublicationList(self): | |
| 900 """returns the list of related publications""" | |
| 901 items = self.objectValues(spec='MPIWGProject_publication') | |
| 902 # sort by place | |
| 903 items.sort(key=lambda x:int(getattr(x, 'place', 0))) | |
| 904 return items | |
| 905 | |
| 50 | 906 |
| 64 | 907 def addPublication(self, text=None, link=None, RESPONSE=None): |
| 50 | 908 """add an MPIWG_Publication""" |
| 64 | 909 if text or link: |
| 910 number = self._getLastPublicationNumber() + 1 | |
| 50 | 911 name = "publication_" + str(number) |
| 64 | 912 while hasattr(self, name): |
| 913 number += 1 | |
| 914 name = "publication_" + str(number) | |
| 915 | |
| 916 newPublication = MPIWGProject_publication(name) | |
| 50 | 917 |
| 64 | 918 self._setObject(name, newPublication) |
| 919 obj = getattr(self, name) | |
| 920 obj.text = text | |
| 921 obj.link = link | |
| 922 obj.enabled = True; | |
| 923 obj.place = self._getLastPublicationNumber() + 1 | |
| 924 obj.id = name | |
| 925 # hasLinkToBookPage updates bookid if available | |
| 926 if obj.hasLinkToBookPage() and not text: | |
| 927 # take title from book page | |
| 928 try: | |
| 929 book = self.en.books[obj.bookId] | |
| 930 obj.text = book.getInfo('title') | |
| 931 except: | |
| 932 pass | |
| 50 | 933 |
| 934 if RESPONSE is not None: | |
| 935 self.redirect(RESPONSE, 'managePublications') | |
| 936 | |
| 60 | 937 |
| 63 | 938 def _getLastPublicationNumber(self): |
| 939 items = self.getPublicationList() | |
| 940 if not items: | |
| 941 return 0 | |
| 942 else: | |
| 943 return getattr(items[-1], 'place', 0) | |
| 944 | |
| 945 | |
| 946 def managePublications(self, name=None, op=None): | |
| 947 """manage publications""" | |
| 948 self._moveObjectPlace(self.getPublicationList(), name, op) | |
| 949 | |
| 950 pt = self.editPublicationsForm | |
| 951 return pt() | |
| 50 | 952 |
| 63 | 953 |
| 954 def deletePublication(self, id, RESPONSE=None): | |
| 955 """delete Publication id""" | |
| 956 self.manage_delObjects([id]) | |
| 957 if RESPONSE: | |
| 958 self.redirect(RESPONSE, 'managePublications') | |
| 959 | |
| 960 | |
| 961 def getRelatedProjectList(self): | |
| 962 """returns the list of related projects""" | |
| 963 items = self.objectValues(spec='MPIWGProject_relatedProject') | |
| 964 # sort by place | |
| 965 items.sort(key=lambda x:int(getattr(x, 'place', 0))) | |
| 966 return items | |
| 967 | |
| 60 | 968 |
| 50 | 969 def addRelatedProject(self, link, RESPONSE=None): |
| 60 | 970 """add a MPIWGProject_relatedProject""" |
| 63 | 971 number = self._getLastRelatedProjectNumber() + 1 |
| 61 | 972 name = "related_project_" + str(number) |
| 50 | 973 while hasattr(self, name): |
| 974 number += 1 | |
| 61 | 975 name = "related_project_" + str(number) |
| 50 | 976 |
| 977 # hole die id des projektes | |
| 978 splitted = link.split("/") | |
| 979 | |
| 980 # teste ob es das project gibt | |
| 981 if len(splitted) < 1: | |
| 982 self.redirect(RESPONSE, 'errorRelatedProjects?link=' + link) | |
| 983 | |
| 984 objid = splitted[-1] | |
| 985 object = getattr(self.projects, objid, None) | |
| 986 | |
| 987 if object == None: | |
| 988 self.redirect(RESPONSE, 'errorRelatedProjects?link=' + link) | |
| 989 return | |
| 990 | |
| 991 newPublication = MPIWGProject_relatedProject(name) | |
| 992 | |
| 993 self._setObject(name, newPublication) | |
| 994 obj = getattr(self, name) | |
| 995 obj.orginallink = link[0:] | |
| 996 obj.objid = objid[0:] | |
| 997 logging.debug("add relobj:objid" + repr(obj.objid)) | |
| 60 | 998 obj.projectWEB_title = object.getProjectTitle() |
| 50 | 999 logging.debug("add relobj:webtitle" + repr(obj.projectWEB_title)) |
| 1000 obj.enabled = True; | |
| 63 | 1001 obj.place = self._getLastRelatedProjectNumber() + 1 |
| 50 | 1002 obj.id = name |
| 1003 if RESPONSE is not None: | |
| 1004 self.redirect(RESPONSE, 'manageRelatedProjects') | |
| 1005 | |
| 1006 | |
| 63 | 1007 def _getLastRelatedProjectNumber(self): |
| 61 | 1008 items = self.getRelatedProjectList() |
| 1009 if not items: | |
| 50 | 1010 return 0 |
| 1011 else: | |
| 61 | 1012 return getattr(items[-1], 'place', 0) |
| 60 | 1013 |
| 50 | 1014 |
| 63 | 1015 def manageRelatedProjects(self, name=None, op=None): |
| 1016 """manage related projects""" | |
| 1017 self._moveObjectPlace(self.getRelatedProjectList(), name, op) | |
| 1018 | |
| 1019 pt = self.editRelatedProjectsForm | |
| 1020 return pt() | |
| 1021 | |
| 1022 | |
| 1023 def deleteRelatedProject(self, id, RESPONSE=None): | |
| 1024 """delete Publication id""" | |
| 1025 self.manage_delObjects([id]) | |
| 1026 if RESPONSE: | |
| 1027 self.redirect(RESPONSE, 'manageRelatedProjects') | |
| 1028 | |
| 60 | 1029 |
| 63 | 1030 def errorRelatedProjects(self, link): |
| 1031 """error creating a related project""" | |
| 1032 pt = self.editRelatedProjectsError | |
| 1033 return pt(link=link) | |
| 1034 | |
| 1035 | |
| 81 | 1036 def getInfoBlockList(self): |
| 1037 """returns the list of related projects""" | |
| 1038 items = self.objectValues(spec='MPIWGProject_InfoBlock') | |
| 1039 # sort by place | |
| 1040 items.sort(key=lambda x:int(getattr(x, 'place', 0))) | |
| 1041 return items | |
| 1042 | |
| 1043 | |
| 1044 def addInfoBlock(self, block_title=None, item_text=None, item_link=None, RESPONSE=None): | |
| 1045 """add a MPIWGProject_InfoBlock""" | |
| 1046 if block_title: | |
| 1047 number = self._getLastInfoBlockNumber() + 1 | |
| 1048 name = "infoblock_" + str(number) | |
| 1049 while hasattr(self, name): | |
| 1050 number += 1 | |
| 1051 name = "infoblock_" + str(number) | |
| 1052 | |
| 1053 newBlock = MPIWGProject_InfoBlock(name, block_title) | |
| 1054 # add block to project | |
| 1055 self._setObject(name, newBlock) | |
| 1056 obj = getattr(self, name) | |
| 1057 obj.place = self._getLastInfoBlockNumber() + 1 | |
| 1058 if item_text: | |
| 1059 obj.addItem(text=item_text, link=item_link) | |
| 1060 | |
| 1061 if RESPONSE is not None: | |
| 1062 self.redirect(RESPONSE, 'manageInfoBlocks') | |
| 1063 | |
| 1064 | |
| 1065 def _getLastInfoBlockNumber(self): | |
| 1066 items = self.getInfoBlockList() | |
| 1067 if not items: | |
| 1068 return 0 | |
| 1069 else: | |
| 1070 return getattr(items[-1], 'place', 0) | |
| 1071 | |
| 1072 | |
| 1073 def manageInfoBlocks(self, name=None, op=None): | |
| 1074 """manage related projects""" | |
| 1075 self._moveObjectPlace(self.getInfoBlockList(), name, op) | |
| 1076 | |
| 1077 pt = self.editInfoBlocksForm | |
| 1078 return pt() | |
| 1079 | |
| 1080 | |
| 1081 def deleteInfoBlock(self, id, RESPONSE=None): | |
| 1082 """delete Publication id""" | |
| 1083 self.manage_delObjects([id]) | |
| 1084 if RESPONSE: | |
| 1085 self.redirect(RESPONSE, 'manageInfoBlocks') | |
| 1086 | |
| 1087 | |
| 63 | 1088 def getAdditionalPublicationList(self): |
| 1089 """hole publications aus der datenbank""" | |
| 1090 query="select * from pubmanbiblio_projects where lower(key_main) = lower(%s) order by priority DESC" | |
| 1091 return self.executeZSQL(query,[self.getId()]) | |
| 1092 | |
| 1093 | |
| 1094 def hasAdditionalPublications(self): | |
| 1095 """test if extended publication list exists""" | |
| 1096 query="select count(*) from pubmanbiblio_projects where lower(key_main) = lower(%s)" | |
| 1097 res= self.executeZSQL(query,[self.getId()]) | |
| 1098 if res[0].count > 0: | |
| 1099 return True | |
| 1100 else: | |
| 1101 return False | |
| 50 | 1102 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1103 |
| 63 | 1104 def addAdditionalPublicationsFromPubman(self,REQUEST): |
| 1105 """addPublications from pubman""" | |
| 1106 data=REQUEST.form | |
| 1107 if data.get("method",None) is None: | |
| 1108 pt = self.editAddAdditionalPublications | |
| 1109 return pt() | |
| 1110 | |
| 1111 if data.get("method") == "search": | |
| 1112 entries= self.mpiwgPubman.search(data) | |
| 1113 pt = self.editAddAdditionalPublications | |
| 1114 return pt(values=entries) | |
| 1115 | |
| 1116 if data.get("method") == "add": | |
| 1117 return self.addEntriesToAdditionalPublicationList(data) | |
| 1118 #pt=PageTemplateFile(os.path.join(package_home(globals()),'zpt/staff/pubman','add_publications.zpt')).__of__(self) | |
| 1119 | |
| 1120 | |
| 1121 def addEntriesToAdditionalPublicationList(self,data): | |
| 1122 """fuege eintrage aus data zur publications liste. | |
| 1123 | |
| 1124 @param data Map mit escidocID --> value | |
| 1125 value muss "add" sein damit hinzugefuegt wird""" | |
| 1126 for key in data.keys(): | |
| 1127 if key.startswith('escidoc:'): | |
| 1128 query="INSERT INTO pubmanbiblio_projects (key_main,escidocId) values (%s,%s)" | |
| 1129 if data.get(key)=="add": | |
| 1130 self.executeZSQL(query,[self.getId(),key]) | |
| 1131 | |
| 1132 if hasattr(self,'REQUEST'): | |
| 1133 return self.REQUEST.response.redirect("changeAdditionalPublications") | |
| 1134 | |
| 1135 | |
| 1136 def changeAdditionalPublications(self,REQUEST): | |
| 1137 """change published publications""" | |
| 1138 data=REQUEST.form | |
| 1139 if data.get("method","change"): | |
| 1140 for key in data.keys(): | |
| 1141 splitted=key.split("__") #format escidoc_id__p fuer priority, nur escidocid | |
| 1142 value=data[key] | |
| 1143 if len(splitted)==1: | |
| 1144 self.deleteFromAdditionalPublicationList(key); | |
| 44 | 1145 |
| 63 | 1146 elif(splitted[1]) == "p": |
| 1147 self.setAdditionalPublicationPriority(splitted[0],value); | |
| 1148 | |
| 1149 pt = self.editAdditionalPublicationsForm | |
| 1150 return pt() | |
| 1151 | |
| 1152 | |
| 1153 def deleteFromAdditionalPublicationList(self,escidocid): | |
| 1154 """Loessche publication with escidoc id from publication list""" | |
| 1155 query ="DELETE FROM pubmanbiblio_projects WHERE escidocid=%s and key_main=%s" | |
| 1156 self.executeZSQL(query,[escidocid,self.getId()]); | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1157 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1158 |
| 63 | 1159 def setAdditionalPublicationPriority(self,escidocid,value): |
| 1160 query="update pubmanbiblio_projects set priority=%s where escidocid=%s and key_main=%s" | |
| 1161 try: | |
| 1162 value = int(value) | |
| 1163 self.executeZSQL(query,[value,escidocid,self.getId()]); | |
| 1164 except: | |
| 1165 logging.error("couldn't change:") | |
| 1166 logging.error(escidocid) | |
| 1167 logging.error(value) | |
| 44 | 1168 |
| 50 | 1169 |
| 35 | 1170 def getActualVersion(self, date=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1171 """actuelle version""" |
| 35 | 1172 def sortProjectsByTime(x, y): |
| 1173 return cmp(x[1].archiveTime, y[1].archiveTime) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1174 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1175 if not date: |
| 44 | 1176 if self.isCurrentVersion(): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1177 return self |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1178 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1179 return None |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1180 |
| 35 | 1181 # suche ob aeltere versionen vorhanden sind |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1182 |
| 35 | 1183 finds = self.ZopeFind(self, obj_metatypes=['MPIWGProject']) |
| 1184 if not finds: # wenn nicht dann teste ob die aktuelle version schon existiert hat. | |
| 1185 ad = getattr(self, 'creationTime', '20050101000000') | |
| 1186 if int(date) > int(ad): | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1187 return self |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1188 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1189 return None |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1190 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1191 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1192 finds.sort(sortProjectsByTime) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1193 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1194 for find in finds: |
| 35 | 1195 # gehe durch die alten Projekte und finde das entprechende |
| 1196 if (int(find[1].archiveTime) > int(date)) and (int(date) > int(getattr(find[1], 'creationTime', '20050101000000'))): | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1197 return find[1] |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1198 |
| 35 | 1199 # kein passendes gefunden, dann teste ob das aktuelle in frage kommt |
| 1200 ad = getattr(self, 'creationTime', '20050101000000') | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1201 |
| 35 | 1202 if int(date) > int(ad): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1203 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1204 return self |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1205 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1206 return None |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1207 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1208 |
| 44 | 1209 def isCurrentVersion(self): |
| 1210 """Return if project is the current version.""" | |
| 1211 currentTime = time.localtime() | |
| 1212 # print getattr(self,'archiveTime',currentTime) | |
| 1213 return (getattr(self, 'archiveTime', currentTime) >= currentTime) | |
| 1214 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1215 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1216 def copyObjectToArchive(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1217 """kopiere aktuelles objekt ins archiv""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1218 logging.info("copytoarchive 1") |
| 35 | 1219 cb = self.aq_parent.manage_copyObjects(self.getId()) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1220 logging.info("copytoarchive 2") |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1221 self.manage_pasteObjects(cb) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1222 logging.info("copytoarchive 3") |
| 35 | 1223 actualTime = time.localtime() |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1224 |
| 35 | 1225 self.manage_renameObject(self.getId(), self.getId() + "_" + time.strftime("%Y%m%d%H%M%S", actualTime)) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1226 logging.info("copytoarchive 4") |
| 35 | 1227 obj = getattr(self, self.getId() + "_" + time.strftime("%Y%m%d%H%M%S", actualTime)) |
| 1228 obj.setArchiveTime(time.strftime("%Y%m%d%H%M%S", actualTime)) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1229 logging.info("copytoarchive 5") |
| 35 | 1230 ids = [x[0] for x in self.ZopeFind(obj, obj_metatypes=['MPIWGProject'])] |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1231 logging.info("copytoarchive 6") |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1232 obj.manage_delObjects(ids) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1233 logging.info("copytoarchive 7") |
| 60 | 1234 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1235 |
| 35 | 1236 def setArchiveTime(self, time): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1237 """set Archive Time""" |
| 35 | 1238 self.archiveTime = time[0:] |
| 60 | 1239 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1240 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1241 def delArchiveTime(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1242 """delete archive time""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1243 del self.archiveTime |
| 60 | 1244 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1245 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1246 def isActiveProject(self): |
| 39 | 1247 """check if the project is still active, default is true.""" |
| 35 | 1248 return getattr(self, 'isActiveFlag', True) |
| 60 | 1249 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1250 |
| 27 | 1251 def checkActive(self, active): |
| 1252 """returns if the project state matches the active state. | |
| 1253 active = 0 : all projects | |
| 1254 active = 1 : active projects | |
| 1255 active = 2 : inactive projects | |
| 1256 """ | |
| 35 | 1257 act = getattr(self, 'isActiveFlag', True) |
| 27 | 1258 return (active == 1 and act) or (active == 0) or (active == 2 and not act) |
| 60 | 1259 |
| 27 | 1260 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1261 def isArchivedProject(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1262 """check if the project is archived""" |
|
108
782477730916
CLOSED - # 57: Research/ Research Units: Karussell f?r die Projekte in einem Department
casties
parents:
105
diff
changeset
|
1263 completed = getattr(self, 'completedAt', '') |
| 35 | 1264 # completed leer |
| 1265 if completed == "" : | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1266 return False; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1267 if completed == 0: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1268 return False; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1269 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1270 return True |
| 60 | 1271 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1272 |
| 27 | 1273 def checkArchived(self, archived): |
| 1274 """returns if the project state matches the archived state. | |
| 1275 archived = 0 : all projects | |
| 1276 archived = 1 : current projects | |
| 1277 archived = 2 : archived projects | |
| 1278 """ | |
| 1279 arch = self.isArchivedProject() | |
| 1280 return (archived == 1 and not arch) or (archived == 0) or (archived == 2 and arch) | |
| 60 | 1281 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1282 |
| 35 | 1283 def setActiveFlag(self, status=True): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1284 """set the active flag""" |
| 35 | 1285 self.isActiveFlag = status |
| 60 | 1286 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1287 |
| 35 | 1288 def setCompletedAt(self, date): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1289 """set the date of completion, date should be in the form DD.MM.YYYY or MM.YYYY or YYYY""" |
| 35 | 1290 # logging.info("DATE:"+repr(date)) |
| 1291 transformedDate = self.transformDate(date); | |
| 1292 # logging.info("transformed"+repr(transformedDate)) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1293 if transformedDate is not None: |
| 35 | 1294 setattr(self, "completedAt", transformedDate) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1295 return True; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1296 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1297 return False; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1298 |
| 35 | 1299 def setStartedAt(self, date): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1300 """set the date of start, date should be in the form DD.MM.YYYY or MM.YYYY or YYYY""" |
| 35 | 1301 # logging.info("DATE:"+repr(date)) |
| 1302 transformedDate = self.transformDate(date); | |
| 1303 # logging.info("transformed"+repr(transformedDate)) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1304 if transformedDate is not None: |
| 35 | 1305 setattr(self, "startedAt", transformedDate) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1306 return True; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1307 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1308 return False; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1309 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1310 def getCompletedAt(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1311 """gibt das transformierte Datum zurueck, an dem das Projekt beendet wurde.""" |
| 35 | 1312 date = getattr(self, 'completedAt', '') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1313 if date: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1314 return self.reTransformDate(date); |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1315 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1316 return "" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1317 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1318 def getStartedAt(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1319 """gibt das transformierte Datum zurueck, an dem Projekt begonnen wurde.""" |
| 35 | 1320 date = getattr(self, 'startedAt', '') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1321 if date: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1322 return self.reTransformDate(date); |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1323 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1324 return ''; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1325 |
| 35 | 1326 def reTransformDate(self, date): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1327 """transformiert , transformdate zurueck""" |
| 35 | 1328 year = int(date / 10000) |
| 1329 month = int((date - year * 10000) / 100) | |
| 1330 day = int((date - year * 10000 - month * 100)) | |
| 1331 if (day == 0) and (month == 0): | |
| 1332 return """%s""" % year; | |
| 1333 if day == 0 : | |
| 1334 return """%s.%s""" % (month, year); | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1335 |
| 35 | 1336 return """%s.%s.%s""" % (day, month, year); |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1337 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1338 |
| 35 | 1339 def transformDate(self, date): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1340 """transformiert ein Datum von DD.MM.YYYY, MM.YYYY,YYYY nach YYYYMMDD, alle nicht angebenen Werte |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1341 werden auf 0 gesetzt, es wird null zurueckgegeben falls das Datum ungueltig ist""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1342 |
| 35 | 1343 if (date == None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1344 return None; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1345 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1346 |
| 35 | 1347 if (date.lstrip().rstrip() == "") : |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1348 return ""; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1349 |
| 35 | 1350 splitted = date.split(".") |
| 1351 length = len(splitted) | |
| 1352 year = 0 | |
| 1353 month = 0 | |
| 1354 day = 0 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1355 if length > 3: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1356 return ""; |
| 35 | 1357 if length == 3: |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1358 day = int(splitted[0]) |
| 35 | 1359 if length > 1: |
| 1360 month = int(splitted[length - 2]) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1361 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1362 if length > 0: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1363 try: |
| 35 | 1364 year = int(splitted[length - 1]) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1365 except: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1366 pass |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1367 |
| 35 | 1368 # # logging.info("month:"+(month)) |
| 1369 if not (0 <= month < 13): | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1370 return None; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1371 |
| 35 | 1372 if not(0 <= day < 32): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1373 return None; |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1374 |
| 35 | 1375 if (year > 0) and (year < 1900): # jahr nicht vierstellig eingegeben |
| 1376 year = 2000 + year; | |
| 1377 return year * 10000 + month * 100 + day | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1378 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1379 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1380 |
| 35 | 1381 def checkDate(self, date): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1382 """teste ob zum Zeitpunkt date eine andere version existierte""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1383 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1384 |
| 35 | 1385 def sortProjectsByTime(x, y): |
| 1386 return cmp(x[1].archiveTime, y[1].archiveTime) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1387 |
| 35 | 1388 # suche ob aeltere versionen vorhanden sind |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1389 |
| 35 | 1390 finds = self.ZopeFind(self, obj_metatypes=['MPIWGProject']) |
| 1391 if not finds: # wenn nicht dann teste ob die aktuelle version schon existiert hat. | |
| 1392 ad = getattr(self, 'creationTime', '20050101000000') | |
| 1393 if int(date) > int(ad): | |
| 1394 return self.REQUEST['URL1'] + "/" + self.getId() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1395 else: |
| 35 | 1396 return self.REQUEST['URL1'] + "/no_project" |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1397 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1398 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1399 finds.sort(sortProjectsByTime) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1400 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1401 for find in finds: |
| 35 | 1402 # gehe durch die alten Projekte und finde das entprechende |
| 1403 if (int(find[1].archiveTime) > int(date)) and (int(date) > int(getattr(find[1], 'creationTime', '20050101000000'))): | |
| 1404 return self.REQUEST['URL1'] + "/" + find[1].getId() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1405 |
| 35 | 1406 # kein passendes gefunden, dann teste ob das aktuelle in frage kommt |
| 1407 ad = getattr(self, 'creationTime', '20050101000000') | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1408 |
| 60 | 1409 if int(date) > int(ad): |
| 35 | 1410 return self.REQUEST['URL1'] + "/" + self.getId() |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1411 else: |
| 35 | 1412 return self.REQUEST['URL1'] + "/no_project" |
| 60 | 1413 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1414 |
| 97 | 1415 def saveFromPreview(self, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1416 """save content aus preview""" |
| 35 | 1417 self.WEB_project_description = self.previewTemplate.WEB_project_description[0:] |
| 97 | 1418 #self.REQUEST.RESPONSE.redirect("./index.html") |
| 1419 if RESPONSE is not None: | |
| 1420 return self.editDescription() | |
| 63 | 1421 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1422 |
| 97 | 1423 def saveEditedContent(self, kupu=None, preview=None, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1424 """save Edited content""" |
| 35 | 1425 # logging.debug("saveEditedContent kupu=%s preview=%s"%(kupu,preview)) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1426 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1427 if preview: |
| 35 | 1428 kupu = preview |
| 97 | 1429 |
| 35 | 1430 # find content of body tags |
| 1431 start = kupu.find("<body>") | |
| 1432 end = kupu.find("</body>") | |
| 1433 newcontent = kupu[start + 6:end] | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1434 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1435 if preview: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1436 return self.preview(newcontent) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1437 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1438 self.copyObjectToArchive() |
| 35 | 1439 self.WEB_project_description = newcontent[0:] |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1440 |
| 97 | 1441 #self.REQUEST.RESPONSE.redirect("./index.html") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1442 |
| 97 | 1443 if RESPONSE is not None: |
| 1444 return self.editDescription() | |
| 1445 | |
| 60 | 1446 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1447 def getBreadcrumbs(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1448 """return list of breadcrumbs from here to the root""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1449 crumbs = [] |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1450 # skip direct parent Folder /projects/ |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1451 parent = self.aq_parent.aq_parent |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1452 # get parents breadcrumbs |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1453 if hasattr(parent, 'getBreadcrumbs'): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1454 crumbs = parent.getBreadcrumbs() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1455 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1456 # try to get acquisition URL from parent |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1457 if hasattr(parent, 'absolute_url'): |
| 35 | 1458 baseUrl = "%s/%s/" % (parent.absolute_url(), 'projects') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1459 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1460 baseUrl = "/en/research/projects/" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1461 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1462 # add in the internal project hierarchy |
| 52 | 1463 tree = self.getProjectTree() |
| 1464 ap = tree.getAncestorsOf(self.getNumber()) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1465 # start with grandparents |
| 52 | 1466 for p in ap: |
| 1467 label = shortenString(p.getLabel(), 13) | |
| 1468 crumbs.append((label, p.getUrl(baseUrl=baseUrl), p)) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1469 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1470 # add this project |
| 52 | 1471 crumbs.append((self.getLabel(), self.getUrl(baseUrl=baseUrl), self)) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1472 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1473 return crumbs |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1474 |
| 52 | 1475 # TODO: is this used? |
| 35 | 1476 def preview(self, description): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1477 """preview""" |
| 35 | 1478 # logging.debug("preview description=%s"%description) |
| 1479 tmpPro = getattr(self, "previewTemplate", None) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1480 if not tmpPro: |
| 35 | 1481 tmpPro = MPIWGProject("previewTemplate") |
| 1482 self._setObject("previewTemplate", tmpPro) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1483 for field in definedFields: |
| 35 | 1484 setattr(tmpPro, field, getattr(self, field)) |
| 1485 tmpPro.WEB_project_description = description[0:] | |
| 1486 tmpPro.invisible = True | |
| 97 | 1487 pt = PageTemplateFile('zpt/project/edit_preview_frame', globals()).__of__(self) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1488 return pt() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1489 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1490 |
| 35 | 1491 def isResponsibleScientist(self, key): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1492 """teste ob eine Person in der Liste der respl. scientists auftaucht""" |
| 35 | 1493 for resp in self.getResponsibleScientistsList(): |
| 60 | 1494 logging.debug("resp=%s key=%s"%(repr(resp),repr(key))) |
| 63 | 1495 # TODO: we need to get ASCII keys!! |
| 80 | 1496 if utf8ify(resp.get('key', '')).lower() == utf8ify(key).lower(): |
| 35 | 1497 return True |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1498 |
| 35 | 1499 return False |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1500 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1501 |
| 35 | 1502 def identifyNames(self, nameList): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1503 """Bekommt eine Komma oder Semikolon getrennte Liste mit Name der Form Vorname MittelName(n) Nachname |
| 33 | 1504 und ordnet diese dann Mitarbeiter IDs zu. |
| 1505 | |
| 1506 Returns a dict with full names as keys and a row of person objects from the database as values. | |
| 1507 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1508 @param nameList |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1509 """ |
| 35 | 1510 if nameList.find(";") > -1: # rate Trenner ist ; |
| 1511 names = nameList.split(";") | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1512 else: |
| 35 | 1513 names = nameList.split(",") |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1514 |
| 35 | 1515 # #nameList=nameList.replace(";",",") # falls ; als Trenner ersetze |
| 1516 returnNamesDict = {} | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1517 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1518 for name in names: |
| 35 | 1519 name = name.strip() |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
1520 if not name: |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
1521 continue |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1522 nameSplitted = name.split(" ") |
| 35 | 1523 if len(nameSplitted) > 1: # vor und nachname angegeben) |
| 1524 lastname = nameSplitted[-1] | |
| 1525 firstname = nameSplitted[0] | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1526 else: |
| 35 | 1527 firstname = "" |
| 1528 lastname = nameSplitted[0] | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1529 |
| 35 | 1530 # finde Mitarbeiter mit den entsprechenden Name |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1531 |
| 35 | 1532 # firstname=self.myCapitalize(firstname).encode('utf-8') |
| 1533 # lastname=self.myCapitalize(lastname).encode('utf-8') | |
| 1534 logging.debug("Search: %s %s %s" % (name, repr(firstname), repr(lastname))) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1535 try: |
| 35 | 1536 # cataloggedNames=self.MembersCatalog(firstName=firstname,lastName=lastname) |
| 33 | 1537 # TODO: I think this does not work without firstname |
| 1538 # try to find names in members db by searching for sub-words | |
| 1539 cataloggedNames = self.executeZSQL("select * from personal_www where first_name ~* ('\m'||%s||'\M') and last_name ~* ('\m'||%s||'\M')", (firstname, lastname)) | |
| 1540 if len(cataloggedNames) == 0: | |
| 1541 # PostgreSQL has a bug with \m and words ending in non-ASCII :-( | |
| 1542 cataloggedNames = self.executeZSQL("select * from personal_www where %s in (select regexp_split_to_table(lower(first_name), '\s+')) and %s in (select regexp_split_to_table(lower(last_name), '\s+'))", (firstname.lower(), lastname.lower())) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1543 except: |
| 35 | 1544 cataloggedNames = [] |
| 1545 logging.error("ERROR: identifyNames %s %s" % sys.exc_info()[0:2]) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1546 |
| 35 | 1547 if len(cataloggedNames) > 0: |
| 1548 returnNamesDict[name] = cataloggedNames | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1549 else: |
| 35 | 1550 returnNamesDict[name] = [] |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1551 |
| 50 | 1552 logging.debug("identified names: %s" % repr(returnNamesDict)) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1553 return returnNamesDict |
| 33 | 1554 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1555 |
| 49 | 1556 def editMPIWGProject(self, fromEdit=None, createNewVersion=True, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1557 """edit the project and archive the old version""" |
| 49 | 1558 logging.debug("editMPIWGProject(fromEdit=%s, createNewVersion=%s)"%(fromEdit,createNewVersion)) |
| 1559 if createNewVersion: | |
| 1560 self.copyObjectToArchive() # archive the object | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1561 |
| 35 | 1562 formdata = self.REQUEST.form |
| 1563 | |
| 1564 # set all definedFields | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1565 for x in definedFields: |
| 35 | 1566 if formdata.has_key(x): |
| 50 | 1567 setattr(self, x, unicodify(formdata[x])) |
| 99 | 1568 if x == 'xdata_05': |
| 1569 # changing project number invalidates project tree | |
| 1570 self.resetProjectTree() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1571 |
| 35 | 1572 completedAt = formdata.get('completedAt') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1573 if not self.setCompletedAt(completedAt): |
| 35 | 1574 RESPONSE.redirect('./editMPIWGBasisEditor?error=dateWrong') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1575 |
| 35 | 1576 startedAt = formdata.get('startedAt') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1577 if not self.setStartedAt(startedAt): |
| 35 | 1578 RESPONSE.redirect('./editMPIWGBasisEditor?error=dateWrong') |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1579 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1580 if self.REQUEST.has_key('active'): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1581 self.setActiveFlag(True) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1582 else: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1583 self.setActiveFlag(False) |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1584 |
| 35 | 1585 # make dict of responsible scientists |
| 1586 checkedScientists = {} | |
| 1587 names = {} | |
| 1588 keys = {} | |
| 43 | 1589 for key in formdata: |
| 35 | 1590 # gehe durch das Formular |
| 1591 keyParts = key.split("_") | |
| 1592 if keyParts[0] == "responsibleScientist": | |
| 1593 # wenn es ein Feld der Form reponsibleScientist_nr_KEY gibt | |
| 1594 nr = keyParts[2] | |
| 1595 if keyParts[1] == "name": | |
| 50 | 1596 names[nr] = unicodify(formdata[key]) |
| 35 | 1597 elif keyParts[1] == "key": |
| 1598 keys[nr] = formdata[key] | |
| 1599 | |
| 43 | 1600 for nr in names: |
| 35 | 1601 name = names[nr] |
| 1602 key = keys.get(nr, None) | |
| 1603 username = None | |
| 1604 if key: | |
| 1605 # get username from db | |
| 80 | 1606 member = self.en.getMPIWGRoot().getStaffFolder().getMember(key=key) |
| 40 | 1607 if member is not None: |
| 1608 username = member.getUsername() | |
| 35 | 1609 |
| 1610 # schreibe keys und namen in die Liste | |
| 1611 checkedScientists[names[nr]] = {'name' : name, 'key' : key, 'username' : username} | |
| 1612 | |
| 44 | 1613 # update responsibleScientistsList |
| 35 | 1614 self.setResponsibleScientistsList(checkedScientists) |
| 39 | 1615 self.updateProjectMembers() |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1616 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1617 if fromEdit and (RESPONSE is not None): |
| 35 | 1618 return self.editBasic() |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1619 |
| 60 | 1620 if RESPONSE is not None: |
| 1621 RESPONSE.redirect('manage_main') | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1622 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1623 |
| 60 | 1624 def getContent(self, field, filter=None): |
| 1625 """Inhalt des Feldes""" | |
| 1626 val = getattr(self, field, '') | |
| 1627 if isinstance(val, list): | |
| 1628 val = val[0] | |
| 1629 | |
| 1630 return val | |
| 1631 | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1632 |
| 35 | 1633 def loadNewFile(self, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1634 """einlesen des neuen files""" |
| 35 | 1635 fileupload = self.REQUEST['fileupload'] |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1636 if fileupload: |
| 35 | 1637 file_name = fileupload.filename |
| 1638 filedata = fileupload.read() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1639 |
| 35 | 1640 argv = xmlhelper.proj2hash(filedata) |
| 1641 # print argv.keys() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1642 for arg in definedFields: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1643 |
| 35 | 1644 # print arg,argv[arg],getattr(self,arg) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1645 try: |
| 35 | 1646 temp = argv[arg][0:] |
| 1647 # old=getattr(self,arg) | |
| 1648 setattr(self, arg, temp) | |
| 1649 # print old,getattr(self,arg) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1650 except: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1651 """nothing""" |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1652 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1653 if RESPONSE is not None: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1654 RESPONSE.redirect('manage_main') |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1655 |
| 60 | 1656 |
| 35 | 1657 def tagTheProject(self, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1658 """TAG""" |
| 35 | 1659 id = self.getId(); |
| 1660 tmpl = getattr(self.thesaurus, "main.html") | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1661 if RESPONSE: |
| 35 | 1662 RESPONSE.redirect("./thesaurus/main.html?project=" + id) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1663 return |
| 36 | 1664 |
| 1665 | |
| 81 | 1666 def moveObjectDigitallibraryToInfoBlock(self): |
| 1667 """Move text from 'Object Digitallibrary' to InfoBlock.""" | |
| 1668 text = self.getRelatedDigitalSources() | |
| 1669 if text: | |
| 1670 logging.debug("Moving 'Object Digitallibrary' to InfoBlock: %s"%repr(text)) | |
| 1671 self.addInfoBlock(block_title='Related digital sources', item_text=text, item_link=None) | |
| 1672 delattr(self, 'xdata_11') | |
| 1673 | |
| 1674 | |
| 50 | 1675 def hasRelatedPublicationsOldVersion(self): |
| 52 | 1676 """teste ob es related publications gibt""" |
| 50 | 1677 ret = True; |
| 61 | 1678 if (getattr(self, 'WEB_related_pub', '') == ''): |
| 50 | 1679 ret = False; # nichts im alten feld |
| 1680 logging.debug("webrel:" + repr(ret)) | |
| 1681 if (getattr(self, 'WEB_related_pub_copied', False)): | |
| 1682 ret = False; # alte daten sind schon kopiert worden | |
| 1683 | |
| 1684 logging.debug("webrel_copied:" + repr(ret)) | |
| 1685 publications = self.ZopeFind(self, obj_metatypes=['MPIWGProject_publication']); | |
| 1686 | |
| 1687 if(len(publications) > 0): | |
| 1688 ret = False; # es gibt publicationen in der neuen liste | |
| 60 | 1689 |
| 50 | 1690 logging.debug("len(publ)" + repr(ret)) |
| 1691 | |
| 1692 return ret; | |
| 1693 | |
| 1694 | |
| 52 | 1695 def copyPublicationsToList(self, RESPONSE=None): |
| 1696 """copy publications in to list""" | |
| 60 | 1697 publicationTxt = getattr(self, 'WEB_related_pub', '') |
| 1698 if isinstance(publicationTxt, list): | |
| 1699 publicationTxt = publicationTxt[0] | |
| 52 | 1700 |
| 1701 pubSplits = publicationTxt.split("<p>") | |
| 1702 | |
| 1703 for pubSplit in pubSplits: | |
| 1704 pubSplit = pubSplit.replace("</p>", "") | |
| 1705 self.addPublication(pubSplit) | |
| 1706 | |
| 1707 setattr(self, "WEB_related_pub_copied", True); | |
| 1708 | |
| 1709 if RESPONSE: | |
| 1710 self.redirect(RESPONSE, 'managePublications') | |
| 1711 | |
| 1712 | |
| 50 | 1713 def hasInlineImage(self): |
| 1714 """Return the number of inline images in the description.""" | |
| 1715 text = self.getDescription() | |
| 1716 cnt = text.count('<p class="picture">') | |
| 1717 return cnt | |
| 1718 | |
| 1719 | |
| 1720 def copyImageToMargin(self, RESPONSE=None): | |
| 1721 """copy inline images to marginal images""" | |
| 1722 # getImages from WEB_project_description | |
| 1723 description = self.getDescription() | |
| 1724 | |
| 1725 text2 = description | |
| 1726 splitted = text2.split("""<p class="picture">""") | |
| 1727 | |
| 1728 imageURLs = [] | |
| 1729 imageCaptions = [] | |
| 1730 for split in splitted[1:]: | |
| 1731 tmp = split.split("</p>") | |
| 1732 # return repr(splitted[1]) | |
| 1733 | |
| 1734 try: | |
| 1735 imageURLs.append(tmp[0].split("\"")[1].encode('utf-8')) | |
| 1736 except: | |
| 1737 | |
| 1738 try: | |
| 1739 imageURLs.append(tmp[0].split("src=")[1].split(" ")[0].encode('utf-8')) | |
| 1740 except: | |
| 1741 imageURLs.append("") | |
| 1742 | |
| 1743 split2 = "</p>".join(tmp[1:]) | |
| 1744 splitted = split2.split("""<p class="picturetitle">""") | |
| 1745 if len(splitted) > 1: | |
| 1746 tmp = splitted[1].split("</p>") | |
| 1747 imageCaptions.append(tmp[0].encode('utf-8')) | |
| 1748 | |
| 1749 else: | |
| 1750 # keine caption | |
| 1751 imageCaptions.append("") | |
| 1752 | |
| 1753 # eintragen: | |
| 1754 for imageURL in imageURLs: | |
| 1755 if not imageURL: | |
| 1756 # no URL - no image | |
| 1757 continue | |
| 1758 | |
| 1759 filename = imageURL.split("/")[-1] | |
| 1760 # lege neues images object an, mit leerem bild | |
| 1761 | |
| 1762 if filename in self: | |
| 1763 # existiert das bild schon, dann neuen filenamen | |
| 1764 filename = "project_image_" + filename | |
| 1765 if filename in self: | |
| 1766 # exists too - assume its already converted | |
| 1767 logging.warn("copyImageToMargin: image %s exists - skipping!"%filename) | |
| 1768 continue | |
| 1769 | |
| 1770 self.addImage(None, imageCaptions[imageURLs.index(imageURL)], filename=filename) | |
| 1771 # hole die bilddaten aus der url | |
| 1772 url = self.absolute_url() + "/" + imageURL | |
| 1773 # url=self.absolute_url()+"/"+filename | |
| 1774 | |
| 1775 try: # relative url | |
| 1776 data = urllib.urlopen(url).read() | |
| 1777 except: | |
| 1778 try: # absolute | |
| 1779 data = urllib.urlopen(self.imageURL).read() | |
| 1780 except: | |
| 1781 logging.error("copyImageToMargin: can't open: %s" % url) | |
| 1782 | |
| 1783 obj = getattr(self, filename) | |
| 1784 obj.update_data(data) | |
| 1785 | |
| 1786 # clean description | |
| 1787 logging.debug("copyImageToMargin: description:%s"%repr(description)) | |
| 1788 dom = ET.fromstring(utf8ify("<html>%s</html>"%description)) | |
| 1789 for e in dom.findall(".//p[@class='picture']"): | |
| 1790 # remove contents | |
| 1791 e.clear() | |
| 1792 # remove tag | |
| 1793 e.tag = None | |
| 1794 | |
| 1795 for e in dom.findall(".//p[@class='picturetitle']"): | |
| 1796 # remove contents | |
| 1797 e.clear() | |
| 1798 # remove tag | |
| 1799 e.tag = None | |
| 1800 | |
| 1801 # remove html tag | |
| 1802 dom.tag = None | |
| 1803 # set as new description | |
| 1804 description = unicodify(serialize(dom)) | |
| 1805 logging.debug("copyImageToMargin: new description:%s"%repr(description)) | |
| 1806 setattr(self, 'WEB_project_description', description) | |
| 1807 | |
| 1808 if RESPONSE: | |
| 1809 self.redirect(RESPONSE, 'manageImages') | |
| 1810 | |
| 1811 | |
| 36 | 1812 def updateProjectMembers(self, updateResponsibleScientistsList=False): |
| 60 | 1813 """Update project-member table.""" |
| 1814 # projects are identified by id | |
| 1815 pid = self.getId() | |
| 1816 | |
| 36 | 1817 # clear projects_members table |
| 60 | 1818 self.executeZSQL("delete from projects_members where project_id = %s", [pid]) |
| 36 | 1819 |
| 60 | 1820 for m in self.getResponsibleScientistsList(): |
| 42 | 1821 memberKey = m.get('key', None) |
| 36 | 1822 if not memberKey or not isinstance(memberKey, basestring): |
| 1823 logging.error("updateProjectMembers: not a valid member key: %s" % repr(memberKey)) | |
| 1824 continue | |
| 1825 | |
| 60 | 1826 # fill projects_members table |
| 1827 self.executeZSQL("insert into projects_members (project_id, member_key) values (%s, %s)", (pid, memberKey)) | |
| 56 | 1828 |
| 1829 | |
| 60 | 1830 |
| 56 | 1831 |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1832 def manage_addMPIWGProjectForm(self): |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1833 """form for adding the project""" |
| 35 | 1834 pt = PageTemplateFile(os.path.join(package_home(globals()), 'zpt', 'addMPIWGProjectForm.zpt')).__of__(self) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1835 return pt() |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1836 |
| 35 | 1837 def manage_addMPIWGProject(self, id, RESPONSE=None): |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1838 """method to add a project""" |
| 35 | 1839 # print argv |
| 1840 fileupload = self.REQUEST.get('fileupload', None) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1841 if fileupload: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1842 |
| 35 | 1843 file_name = fileupload.filename |
| 1844 filedata = fileupload.read() | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1845 |
| 35 | 1846 argv = xmlhelper.proj2hash(filedata) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1847 |
| 35 | 1848 # print argv |
| 1849 newObj = MPIWGProject(id, argv) | |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1850 else: |
| 35 | 1851 newObj = MPIWGProject(id) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1852 |
| 35 | 1853 self._setObject(id, newObj) |
|
0
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1854 |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1855 if RESPONSE is not None: |
|
bca61e893fcc
first checkin of MPIWGWeb r2 branch from CVS into mercurial
casties
parents:
diff
changeset
|
1856 RESPONSE.redirect('manage_main') |
| 27 | 1857 |
| 1858 | |
| 33 | 1859 class MPIWGProjectFolder(ZDBInterfaceFolder): |
| 27 | 1860 """Folder of project objects""" |
| 1861 | |
| 35 | 1862 meta_type = "MPIWGProjectFolder" |
| 1863 security = ClassSecurityInfo() | |
| 1864 | |
| 27 | 1865 # cached HashTree with project hierarchy |
| 1866 _v_projectTree = None | |
| 53 | 1867 |
| 34 | 1868 def getProjectTree(self): |
| 43 | 1869 """Return the project hierarchy tree (and cache it). |
| 34 | 1870 |
| 43 | 1871 Returns HashTree instance.""" |
| 27 | 1872 tree = self._v_projectTree |
| 1873 if tree is None: | |
| 43 | 1874 tree = HashTree(keySeparator='.', keyFn=getInt) |
| 27 | 1875 for p in self.objectValues(spec='MPIWGProject'): |
| 51 | 1876 # add all projects |
| 27 | 1877 tree.add(p.getNumber(), p) |
| 1878 | |
| 1879 self._v_projectTree = tree | |
| 35 | 1880 # logging.debug("getProjectTree: tree=%s"%(tree.root.getSubtreeAsText())) |
| 27 | 1881 |
| 1882 return tree | |
| 1883 | |
| 1884 | |
|
105
246d87d33f25
CLOSED - # 79: sortierung der liste der projekte pro abteilung
casties
parents:
102
diff
changeset
|
1885 def getProjectsAsList(self, start=None, active=1, archived=1, depthFirst=True): |
| 43 | 1886 """Return flattened list of projects, starting from start. |
| 33 | 1887 |
| 27 | 1888 active = 0 : all projects |
| 1889 active = 1 : active projects | |
| 1890 active = 2 : inactive projects | |
| 1891 archived = 0 : all projects | |
| 1892 archived = 1 : current projects | |
| 1893 archived = 2 : archived projects | |
| 1894 """ | |
| 35 | 1895 # logging.debug("getProjectsAsList(start=%s,active=%s,archived=%s)"%(repr(start),active,archived)) |
| 34 | 1896 tree = self.getProjectTree() |
| 27 | 1897 node = tree.getNode(start) |
| 1898 if node is None: | |
| 1899 return [] | |
| 1900 | |
|
105
246d87d33f25
CLOSED - # 79: sortierung der liste der projekte pro abteilung
casties
parents:
102
diff
changeset
|
1901 pl = node.getSubtreeAsList(depthFirst=depthFirst) |
|
114
1acfcaaa5ca3
fixed HashTree.getSubTreeAsList when using breadth first.
casties
parents:
108
diff
changeset
|
1902 #logging.debug("getProjectsAsList: node=(%s,%s) pl=%s"%(node.key,node.value,[p.getNumber() for p in pl])) |
| 27 | 1903 # return filtered list |
| 1904 return [p for p in pl if (p.checkActive(active) and p.checkArchived(archived))] | |
| 33 | 1905 |
| 39 | 1906 |
| 1907 def getProject(self, projectNumber=None): | |
| 43 | 1908 """Return the matching project""" |
| 39 | 1909 tree = self.getProjectTree() |
| 1910 if projectNumber is not None: | |
| 1911 return tree.get(projectNumber) | |
| 1912 | |
| 1913 return None | |
| 1914 | |
| 33 | 1915 |
| 1916 def getProjectsOfMember(self, key, active=1, archived=1): | |
| 43 | 1917 """Return a list of all projects of a member. |
| 33 | 1918 |
| 1919 @param key: member's key | |
| 1920 active = 0 : all projects | |
| 1921 active = 1 : active projects | |
| 1922 active = 2 : inactive projects | |
| 1923 archived = 0 : all projects | |
| 1924 archived = 1 : current projects | |
| 1925 archived = 2 : archived projects | |
| 1926 """ | |
| 1927 projects = [] | |
| 1928 # search project numbers | |
| 1929 res = self.executeZSQL("select * from projects_members where lower(member_key) = %s", [key.lower()]) | |
| 77 | 1930 # find projects in folder |
| 33 | 1931 for r in res: |
| 77 | 1932 p = self.get(r.project_id, None) |
| 43 | 1933 # check if active |
| 33 | 1934 if p is not None and p.checkActive(active) and p.checkArchived(archived): |
| 1935 projects.append(p) | |
| 77 | 1936 |
| 1937 # sort by project number | |
| 79 | 1938 projects.sort(key=lambda p:[getInt(n) for n in p.getNumber().split('.')]) |
| 77 | 1939 return projects |
| 1940 | |
| 1941 | |
| 79 | 1942 def getMembersWithProjects(self, onlyActive=True): |
| 77 | 1943 """Return a list of all members that have projects. |
| 1944 | |
| 79 | 1945 @param onlyActive: only active members |
| 1946 | |
| 1947 Returns a list of member objects. | |
| 77 | 1948 """ |
| 79 | 1949 members = [] |
| 1950 sf = self.en.getStaffFolder() | |
| 78 | 1951 res = self.executeZSQL("select distinct member_key from projects_members") |
| 79 | 1952 if onlyActive: |
| 1953 for r in res: | |
| 1954 m = sf.getMember(key=r.member_key) | |
| 1955 if m is not None and m.isActive(): | |
| 1956 members.append(m) | |
| 1957 | |
| 1958 else: | |
| 1959 # not only active | |
| 1960 members = [sf.getMember(key=r.member_key) for r in res] | |
| 1961 | |
| 1962 return members | |
| 27 | 1963 |
| 1964 | |
| 99 | 1965 def resetProjectTree(self): |
| 1966 """Reset the project tree.""" | |
| 1967 self._v_projectTree = None | |
| 1968 | |
| 1969 | |
| 51 | 1970 security.declareProtected('View management screens', 'changeProjectTree') |
| 1971 def changeProjectTree(self, RESPONSE=None): | |
| 1972 """change the complete tree""" | |
| 1973 form=self.REQUEST.form | |
| 1974 onlyArchived=int(form.get("onlyArchived",0)) | |
| 1975 onlyActive=int(form.get("onlyActive",0)) | |
| 1976 dep=form.get("dep",None) | |
| 1977 | |
| 1978 fields = self.getProjectsAsList(start=dep, archived=onlyArchived, active=onlyActive) | |
| 1979 | |
| 1980 logging.info("GOT TREE!----------------------------------------------------") | |
| 1981 for field in form.keys(): | |
| 1982 | |
| 1983 splitted=field.split('_') | |
| 1984 if (len(splitted)>1) and (splitted[1]=="runningNumber"): | |
| 1985 #feld hat die Form Nummer_name und runnignNumber | |
| 1986 nr=int(splitted[0]) # nummer des Datensatzes | |
| 1987 project = fields[nr] | |
| 1988 | |
| 1989 # | |
| 1990 # change active | |
| 1991 # | |
| 1992 if form.has_key('%s_active'%nr): # active flag is set | |
| 1993 project.setActiveFlag(True) | |
| 1994 else: | |
| 1995 project.setActiveFlag(False) | |
| 1996 | |
| 1997 # | |
| 1998 # nummer hat sich geaendert | |
| 1999 # | |
| 2000 entryChanged = False; | |
| 2001 pronum = project.getNumber() | |
| 2002 formnum = form['%s_number'%nr] | |
| 2003 | |
| 2004 if not (pronum == formnum): | |
| 2005 logging.debug("Changed!Number+++++++++++++++++++++++++++++++++") | |
| 2006 logging.debug(repr(fields[nr].xdata_05)+" ---> "+ repr(form[str(nr)+'_number'])) | |
| 2007 entryChanged = True | |
| 2008 | |
| 2009 # | |
| 2010 # completed hat sich geaendert | |
| 2011 # | |
| 2012 td = project.transformDate # hole die funktion zum transformieren des datums | |
| 2013 formstarted = form[str(nr)+'_started'] | |
| 2014 formcompleted = form[str(nr)+'_completed'] | |
| 2015 | |
| 2016 if not (td(project.getCompletedAt()) == td(formcompleted)): | |
| 2017 logging.info(repr(td(project.getCompletedAt()))+" ---> "+ repr(td(form[str(nr)+'_completed']))) | |
| 2018 logging.info("Changed!Completed+++++++++++++++++++++++++++++++++") | |
| 2019 entryChanged = True | |
| 2020 | |
| 2021 if not (td(project.getStartedAt()) == td(formstarted)): | |
| 2022 logging.info(repr(td(project.getStartedAt()))+" ---> "+ repr(td(form[str(nr)+'_started']))) | |
| 2023 logging.info("Changed!Started+++++++++++++++++++++++++++++++++") | |
| 2024 entryChanged = True | |
| 2025 | |
| 2026 if entryChanged: | |
| 2027 logging.info("Changed!+++++++++++++++++++++++++++++++++") | |
| 2028 project.copyObjectToArchive() | |
| 2029 project.xdata_05 = formnum | |
| 2030 project.setCompletedAt(formcompleted) | |
| 2031 project.setStartedAt(formstarted) | |
| 2032 # reset tree | |
| 2033 self._v_projectTree = None | |
| 2034 | |
| 2035 if RESPONSE is not None: | |
| 2036 RESPONSE.redirect(self.en.MPIWGrootURL()+'/admin/showTree') | |
| 2037 | |
| 52 | 2038 |
| 35 | 2039 security.declareProtected('View management screens', 'updateAllProjectMembers') |
| 33 | 2040 def updateAllProjectMembers(self, updateResponsibleScientistsList=False): |
| 43 | 2041 """Re-create responsibleScientistsLists and projects_members table from all current projects.""" |
| 33 | 2042 # empty table |
| 2043 self.executeZSQL('truncate table projects_members') | |
| 2044 cnt = 0 | |
| 2045 # go through all projects | |
| 2046 for p in self.objectValues(spec='MPIWGProject'): | |
| 2047 cnt += 1 | |
| 35 | 2048 logging.debug("updateAllProjectMembers: updating project %s" % p) |
| 36 | 2049 p.updateProjectMembers(updateResponsibleScientistsList=updateResponsibleScientistsList) |
| 33 | 2050 |
| 35 | 2051 return "updated %s projects!" % cnt |
| 33 | 2052 |
| 40 | 2053 |
| 39 | 2054 security.declareProtected('View management screens', 'updateAllProjects') |
| 50 | 2055 def updateAllProjects(self, updateResponsibleScientistsList=False, RESPONSE=None): |
| 43 | 2056 """Patch all current projects for legacy problems.""" |
| 39 | 2057 cnt = 0 |
| 50 | 2058 fulllog = "" |
| 39 | 2059 # go through all projects |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2060 for id, project in self.ZopeFind(self, obj_metatypes=['MPIWGProject'], search_sub=1): |
| 50 | 2061 log = "" |
| 39 | 2062 cnt += 1 |
| 2063 # | |
| 2064 # hasRelatedPublicationsOldVersion | |
| 2065 # | |
| 2066 if project.hasRelatedPublicationsOldVersion(): | |
| 49 | 2067 log += "%s: update relatedPublicationsOldVersion!\n"%project.getId() |
| 39 | 2068 logging.debug("updateAllProjects(%s): update relatedPublicationsOldVersion!"%project.getId()) |
| 2069 project.copyPublicationsToList() | |
| 2070 | |
| 2071 # | |
| 60 | 2072 # create responsibleScientistsList automatically |
| 39 | 2073 # |
| 60 | 2074 if updateResponsibleScientistsList: |
| 39 | 2075 newScientists = {} |
| 65 | 2076 names = project.identifyNames(project.getResponsibleScientists()) |
| 60 | 2077 for name in names: |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2078 msg = "%s: regenerating responsibleScientistsList: name=%s\n"%(project.getId(), repr(name)) |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2079 log += msg |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2080 logging.debug(msg) |
| 60 | 2081 members = names[name] |
| 2082 if len(members) > 0: | |
| 2083 # take the first matching name | |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2084 username = None |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2085 if members[0].e_mail: |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2086 username = re.sub('@mpiwg-berlin\.mpg\.de', '', members[0].e_mail) |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2087 newScientists[name] = {'name': name, 'key' : members[0].key, 'username' : username} |
| 39 | 2088 |
| 2089 project.setResponsibleScientistsList(newScientists) | |
| 60 | 2090 |
| 2091 else: | |
| 2092 # | |
| 2093 # old format responsibleScientistsList | |
| 2094 # | |
| 2095 memberlist = project.getResponsibleScientistsList() | |
| 2096 if len(memberlist) > 0 and isinstance(memberlist[0], tuple): | |
| 2097 log += "%s: updating memberlist!\n"%project.getId() | |
| 2098 logging.debug("updateAllProjects(%s): updating memberlist" % project.getId()) | |
| 2099 newScientists = {} | |
| 2100 for m in memberlist: | |
| 2101 name = m[0] | |
| 2102 key = m[1] | |
| 2103 username = None | |
| 2104 if key: | |
| 2105 if isinstance(key, list): | |
| 2106 key = key[0] | |
| 2107 | |
| 2108 # get username from db | |
| 80 | 2109 member = self.en.getMPIWGRoot().getStaffFolder().getMember(key=key) |
| 60 | 2110 if member is not None: |
| 2111 username = member.getUsername() | |
| 2112 | |
| 2113 newScientists[name] = {'name': name, 'key' : key, 'username' : username} | |
| 2114 | |
| 2115 # set new list | |
| 2116 project.setResponsibleScientistsList(newScientists) | |
| 39 | 2117 |
| 2118 # | |
| 49 | 2119 # old inline images |
| 2120 # | |
| 2121 if project.hasInlineImage(): | |
| 2122 log += "%s: has inlineImage!\n"%project.getId() | |
| 2123 logging.debug("updateAllProjects(%s): has inlineImage!"%project.getId()) | |
| 2124 try: | |
| 2125 project.copyImageToMargin() | |
| 2126 except Exception, e: | |
| 2127 log += "%s: ERROR in copyImageToMargin!\n"%project.getId() | |
| 2128 logging.debug("updateAllProjects(%s): ERROR in copyImageToMargin: %s"%(project.getId(), e)) | |
| 2129 | |
| 2130 | |
| 2131 # | |
| 39 | 2132 # remove old attributes |
| 2133 # | |
| 2134 if hasattr(project, 'definedFields'): | |
| 49 | 2135 log += "%s: has definedFields!\n"%project.getId() |
| 39 | 2136 logging.debug("updateAllProjects(%s): has definedFields!"%project.getId()) |
| 2137 delattr(project, 'definedFields') | |
| 61 | 2138 |
| 45 | 2139 # |
| 61 | 2140 # update related publications |
| 45 | 2141 # |
| 61 | 2142 for pub in project.getPublicationList(): |
| 62 | 2143 if not pub.text: |
| 2144 msg = "%s: publication has no text: %s!\n"%(project.getId(), pub) | |
| 2145 log += msg | |
| 2146 logging.warn(msg) | |
| 2147 if not pub.link: | |
| 2148 msg = "%s: publication has no link either! Deleting: %s!\n"%(project.getId(), pub) | |
| 2149 log += msg | |
| 2150 logging.error(msg) | |
| 2151 project.deletePublication(pub.getId()) | |
| 2152 | |
| 2153 else: | |
| 2154 # hasLinkToBookPage updates the bookId | |
| 2155 pub.hasLinkToBookPage() | |
| 61 | 2156 |
| 81 | 2157 |
| 2158 # | |
| 2159 # update RelatedDigitalSources | |
| 2160 # | |
| 2161 project.moveObjectDigitallibraryToInfoBlock() | |
| 2162 | |
| 50 | 2163 # |
| 2164 # unicodify | |
| 2165 # | |
| 2166 for field in ('WEB_title', 'xdata_01', 'xdata_07', 'xdata_08', 'xdata_11', 'xdata_12', 'xdata_13', | |
| 2167 'WEB_project_description', 'WEB_related_pub'): | |
| 2168 text = getattr(project, field, None) | |
| 2169 if isinstance(text, str): | |
| 2170 log += "%s: has non-unicode field %s\n"%(project.getId(), field) | |
| 2171 logging.debug("updateAllProjects(%s): has has non-unicode field %s\n"%(project.getId(), field)) | |
| 2172 setattr(project, field, unicodify(text)) | |
| 2173 | |
| 2174 fulllog += log | |
| 2175 if RESPONSE is not None: | |
| 2176 RESPONSE.write(log) | |
| 62 | 2177 |
|
123
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2178 # |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2179 # remove obsolete static class members (does this make sense?) |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2180 # |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2181 if hasattr(MPIWGProject, 'responsibleScientistsList'): |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2182 log += "MPIWGProject has class member responsibleScientistsList\n" |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2183 logging.debug("MPIWGProject has class member responsibleScientistsList\n") |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2184 del MPIWGProject.responsibleScientistsList |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2185 |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2186 if hasattr(MPIWGProject, 'projectThumb'): |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2187 log += "MPIWGProject has class member projectThumb\n" |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2188 logging.debug("MPIWGProject has class member projectThumb\n") |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2189 del MPIWGProject.projectThumb |
|
220f37701e8d
fix problem with empty responsible scientists field.
casties
parents:
114
diff
changeset
|
2190 |
| 50 | 2191 log += "\n DONE! updated %s projects!" % cnt |
| 2192 fulllog += log | |
| 2193 if RESPONSE is not None: | |
| 2194 RESPONSE.write(log) | |
| 2195 RESPONSE.flush() | |
| 2196 else: | |
| 2197 return fulllog | |
| 127 | 2198 |
| 2199 def scaleImages(self,REQUEST=None): | |
| 2200 """scaleImages""" | |
| 2201 prjs = self.getProjectsAsList() | |
| 2202 for prj in prjs: | |
| 2203 prj.scaleImage(REQUEST=REQUEST) | |
| 2204 logging.debug(prj.getId()) | |
| 2205 | |
| 33 | 2206 |
| 27 | 2207 def manage_addMPIWGProjectFolderForm(self): |
| 29 | 2208 """form for adding a MPIWGProjectFolder""" |
| 27 | 2209 pt = PageTemplateFile('zpt/project/manage_add_MPIWGProjectFolder', globals()).__of__(self) |
| 2210 return pt() | |
| 2211 | |
| 35 | 2212 def manage_addMPIWGProjectFolder(self, id, title, RESPONSE=None): |
| 29 | 2213 """add a MPIWGProjectFolder""" |
| 35 | 2214 newObj = MPIWGProjectFolder(id, title) |
| 27 | 2215 |
| 35 | 2216 self._setObject(id, newObj) |
| 27 | 2217 |
| 2218 if RESPONSE is not None: | |
| 2219 RESPONSE.redirect('manage_main') | |
| 2220 |
