https://bz.apache.org/ooo/show_bug.cgi?id=79650
--- Comment #8 from [email protected] --- With: xsltproc filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl ~/Downloads/test.xml the error given is: runtime error: file filter/source/xslt/import/spreadsheetml/spreadsheetml2ooo.xsl line 7395 element variable xsltApplySequenceConstructor: A potential infinite template recursion was detected. You can adjust xsltMaxDepth (--maxdepth) in order to raise the maximum number of nested template calls and variables/params (currently set to 3000). Templates: #0 name process-header-footer-style-properties #1 name create-header-footer-style #2 name create-header-footer-style #3 name create-header-footer-style #4 name create-header-footer-style #5 name create-header-footer-style #6 name create-header-footer-style #7 name create-header-footer-style #8 name create-header-footer-style #9 name create-header-footer-style #10 name create-header-footer-style #11 name create-header-footer-style #12 name create-header-footer-style #13 name create-header-footer-style #14 name create-header-footer-style And I think the problem is that several of those xsl:template entries used in processing the header, such as locate-header-footer-data, get-current-content-last-pos, process-header-footer-style-properties, get-current-content-pos (this one is called from create-header-footer-style in that error trace) don't support the "&V" among the "&" prefixed types they support. They support "&X", "&Y", "&S", "&U", "&E", "&B", but not "&V". Changing "&V" to "&B" gets the file to open successfully. -- You are receiving this mail because: You are the assignee for the issue. You are on the CC list for the issue.
