web/webconfig.py
changeset 7040 9b1f9bc74f5d
parent 7031 a04621040cad
child 7130 5eb622c0c672
equal deleted inserted replaced
7025:fee3a1f28ed7 7040:9b1f9bc74f5d
   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'