<changes>
<release version="3.7-beta3" date="2010-??-??">
+ <action dev="poi-developers" type="add">More XSLFRelation entries for common .pptx file parts</action>
<action dev="poi-developers" type="fix">49872 - avoid exception in XSSFFormulaEvaluator.evaluateInCell when evaluating shared formulas</action>
<action dev="poi-developers" type="fix">49895 - avoid corruption of XSSFWorkbook after removing all merged cells from sheet</action>
<action dev="poi-developers" type="fix">49907 - fixed inconsistent behaviour between HSSF and XSSF when creating consecutive names</action>
public static final XSLFRelation SLIDE = new XSLFRelation(
"application/vnd.openxmlformats-officedocument.presentationml.slide+xml",
- null, null, null
+ "http://schemas.openxmlformats.org/officeDocument/2006/relationships/slide",
+ "/ppt/slides/slide#.xml",
+ null
);
public static final XSLFRelation SLIDE_LAYOUT = new XSLFRelation(
"application/vnd.openxmlformats-officedocument.presentationml.slideLayout+xml",
"http://schemas.openxmlformats.org/officeDocument/2006/relationships/slideLayout",
- null, null
+ "/ppt/slideLayouts/slideLayout#.xml",
+ null
);
public static final XSLFRelation COMMENTS = new XSLFRelation(
null, null
);
+ public static final XSLFRelation THEME = new XSLFRelation(
+ "application/vnd.openxmlformats-officedocument.theme+xml",
+ "http://schemas.openxmlformats.org/officeDocument/2006/relationships/theme",
+ "/ppt/theme/theme#.xml",
+ null
+ );
+
+ public static final XSLFRelation VML_DRAWING = new XSLFRelation(
+ "application/vnd.openxmlformats-officedocument.vmlDrawing",
+ "http://schemas.openxmlformats.org/officeDocument/2006/relationships/vmlDrawing",
+ "/ppt/drawings/vmlDrawing#.vml",
+ null
+ );
+
private XSLFRelation(String type, String rel, String defaultName, Class<? extends POIXMLDocumentPart> cls) {
super(type, rel, defaultName, cls);