예제 #1
0
	def get_config_map(self, module):
		return [
			(
				item.c_str(), 
				convert_rtf_to_html(try_unicode(value.c_str(), module))
			)
			for item, value in module.getConfigMap().items()
			if item.c_str() not in self.config_entries_to_ignore
		]
예제 #2
0
 def get_config_map(self, module):
     return [(item.c_str(),
              convert_rtf_to_html(try_unicode(value.c_str(), module)))
             for item, value in module.getConfigMap().items()
             if item.c_str() not in self.config_entries_to_ignore]
예제 #3
0
 def get_formatted_config_entry(self, module, entry):
     value = module.getConfigEntry(entry)
     return convert_rtf_to_html(try_unicode(value, module))
예제 #4
0
	def get_formatted_config_entry(self, module, entry):
		value = module.getConfigEntry(entry)
		return convert_rtf_to_html(try_unicode(value, module))