Commit f2bc42e3 authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

more perforance improvement on OOoTemplate by skipping convertToBaseFormat call.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@40495 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 0b4ab55d
......@@ -590,10 +590,11 @@ class OOoTemplate(ZopePageTemplate):
format = opts.get('format', request.get('format', None))
if format:
# Performance improvement:
# Call convertToBaseFormat only if user
# ask a particular output format
tmp_ooo.convertToBaseFormat()
# Performance improvement:
# We already have OOo format data, so we do not need to call
# convertToBaseFormat(), but just copy it into base_data property.
tmp_ooo.setBaseData(ooo)
tmp_ooo.setBaseContentType(self.content_type)
if request is not None and not batch_mode:
return tmp_ooo.index_html(REQUEST=request,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment