1
2
3
4
5 package org.daisy.pipeline.script.impl;
6
7 public class XProcScript_dedicon_dtbook_to_pef_SPI
8 extends org.daisy.pipeline.script.impl.XProcScript_dedicon_dtbook_to_pef
9 implements org.daisy.common.spi.ServiceWithProperties
10 , org.daisy.common.spi.CreateOnStart {
11
12 private static final org.slf4j.Logger spi_log = org.slf4j.LoggerFactory.getLogger(XProcScript_dedicon_dtbook_to_pef_SPI.class);
13
14 private final java.util.Map spi_props;
15
16 public XProcScript_dedicon_dtbook_to_pef_SPI() {
17 super();
18 spi_log.trace("Creating XProcScript_dedicon_dtbook_to_pef");
19 spi_props = new java.util.HashMap();
20 spi_props.put("component.name", "dedicon:dtbook-to-pef");
21 spi_props.put("script.id", "dedicon:dtbook-to-pef");
22 spi_props.put("script.description", "Transforms a DTBook (DAISY 3 XML) document into a PEF.");
23 spi_props.put("script.url", "/xml/xproc/__processed__dtbook-to-pef.xpl");
24 spi_props.put("script.version", "1.6.5");
25 spi_log.trace("Activating XProcScript_dedicon_dtbook_to_pef");
26 java.util.HashMap props = new java.util.HashMap();
27 props.put("component.name", "dedicon:dtbook-to-pef");
28 props.put("script.id", "dedicon:dtbook-to-pef");
29 props.put("script.description", "Transforms a DTBook (DAISY 3 XML) document into a PEF.");
30 props.put("script.url", "/xml/xproc/__processed__dtbook-to-pef.xpl");
31 props.put("script.version", "1.6.5");
32 activate(props);
33 }
34
35 public java.util.Map spi_getProperties() {
36 return spi_props;
37 }
38 }