equal
deleted
inserted
replaced
205 )) |
205 )) |
206 |
206 |
207 def fckeditor_installed(self): |
207 def fckeditor_installed(self): |
208 return exists(self.uiprops['FCKEDITOR_PATH']) |
208 return exists(self.uiprops['FCKEDITOR_PATH']) |
209 |
209 |
210 def eproperty_definitions(self): |
210 def cwproperty_definitions(self): |
211 for key, pdef in super(WebConfiguration, self).eproperty_definitions(): |
211 for key, pdef in super(WebConfiguration, self).cwproperty_definitions(): |
212 if key == 'ui.fckeditor' and not self.fckeditor_installed(): |
212 if key == 'ui.fckeditor' and not self.fckeditor_installed(): |
213 continue |
213 continue |
214 yield key, pdef |
214 yield key, pdef |
215 |
215 |
216 # method used to connect to the repository: 'inmemory' / 'pyro' |
216 # method used to connect to the repository: 'inmemory' / 'pyro' |