]> matita.cs.unibo.it Git - helm.git/commitdiff
Initial revision
authorLuca Padovani <luca.padovani@unito.it>
Tue, 6 Feb 2001 16:02:48 +0000 (16:02 +0000)
committerLuca Padovani <luca.padovani@unito.it>
Tue, 6 Feb 2001 16:02:48 +0000 (16:02 +0000)
helm/style/config/style-configuration.dtd [new file with mode: 0644]
helm/style/config/style-configuration.xml [new file with mode: 0644]

diff --git a/helm/style/config/style-configuration.dtd b/helm/style/config/style-configuration.dtd
new file mode 100644 (file)
index 0000000..a729aa7
--- /dev/null
@@ -0,0 +1,13 @@
+<?xml version="1.0"?>
+
+<!ELEMENT style-configuration (style*,apply*)>
+
+<!ELEMENT style (#PCDATA)>
+<!ATTLIST style key CDATA #IMPLIED>
+
+<!ELEMENT apply (style-ref*)>
+<!ATTLIST apply name CDATA #REQUIRED>
+
+<!ELEMENT style-ref EMPTY>
+<!ATTLIST style-ref key CDATA #REQUIRED>
+
diff --git a/helm/style/config/style-configuration.xml b/helm/style/config/style-configuration.xml
new file mode 100644 (file)
index 0000000..81518ef
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<!DOCTYPE style-configuration SYSTEM "style-configuration.dtd">
+
+<style-configuration>
+  <style key="C1">rootcontent.xsl</style>
+  <style key="C2">annotatedpres.xsl</style>
+  <style key="T1">theorycontent.xsl</style>
+  <style key="T2">theorypres.xsl</style>
+
+  <apply name="cic">
+    <style-ref key="C1"/>
+    <style-ref key="C2"/>
+  </apply>
+
+  <apply name="theory">
+    <style-ref key="T1"/>
+    <style-ref key="T2"/>
+  </apply>
+</style-configuration>