]> granicus.if.org Git - docbook-dsssl/commitdiff
tools dir has been long obsoleted; now removed
authorMichael Smith <xmldoc@users.sourceforge.net>
Thu, 24 Mar 2005 14:32:41 +0000 (14:32 +0000)
committerMichael Smith <xmldoc@users.sourceforge.net>
Thu, 24 Mar 2005 14:32:41 +0000 (14:32 +0000)
xsl/tools/olink/olink-common.xsl [deleted file]
xsl/tools/olink/olink.xsl [deleted file]
xsl/tools/olink/olinkchunk.xsl [deleted file]
xsl/tools/olink/olinksum.dtd [deleted file]
xsl/tools/profile/profile.xsl [deleted file]

diff --git a/xsl/tools/olink/olink-common.xsl b/xsl/tools/olink/olink-common.xsl
deleted file mode 100644 (file)
index 8bb50ee..0000000
+++ /dev/null
@@ -1,193 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version="1.0">
-
-<xsl:template match="/">
-  <xsl:apply-templates mode="olink.mode"/>
-</xsl:template>
-
-<xsl:template name="attrs">
-  <xsl:param name="nd" select="."/>
-
-  <xsl:attribute name="type">
-    <xsl:value-of select="local-name(.)"/>
-  </xsl:attribute>
-
-  <xsl:attribute name="href">
-    <xsl:call-template name="olink.href.target">
-      <xsl:with-param name="object" select="$nd"/>
-    </xsl:call-template>
-  </xsl:attribute>
-
-  <xsl:attribute name="label">
-    <xsl:apply-templates select="$nd" mode="label.markup"/>
-  </xsl:attribute>
-
-  <xsl:if test="$nd/@id">
-    <xsl:attribute name="id">
-      <xsl:value-of select="$nd/@id"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@lang">
-    <xsl:attribute name="lang">
-      <xsl:value-of select="$nd/@lang"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@arch">
-    <xsl:attribute name="arch">
-      <xsl:value-of select="$nd/@arch"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@conformance">
-    <xsl:attribute name="conformance">
-      <xsl:value-of select="$nd/@conformance"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@os">
-    <xsl:attribute name="os">
-      <xsl:value-of select="$nd/@os"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@revision">
-    <xsl:attribute name="revision">
-      <xsl:value-of select="$nd/@revision"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@userlevel">
-    <xsl:attribute name="userlevel">
-      <xsl:value-of select="$nd/@userlevel"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@vendor">
-    <xsl:attribute name="vendor">
-      <xsl:value-of select="$nd/@vendor"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@condition">
-    <xsl:attribute name="condition">
-      <xsl:value-of select="$nd/@condition"/>
-    </xsl:attribute>
-  </xsl:if>
-
-  <xsl:if test="$nd/@security">
-    <xsl:attribute name="security">
-      <xsl:value-of select="$nd/@security"/>
-    </xsl:attribute>
-  </xsl:if>
-</xsl:template>
-
-<xsl:template name="div">
-  <xsl:param name="nd" select="."/>
-
-  <div>
-    <xsl:call-template name="attrs">
-      <xsl:with-param name="nd" select="$nd"/>
-    </xsl:call-template>
-    <ttl>
-      <xsl:apply-templates select="$nd" mode="title.markup"/>
-    </ttl>
-    <objttl>
-      <xsl:apply-templates select="$nd" mode="object.title.markup"/>
-    </objttl>
-    <xref>
-      <xsl:choose>
-        <xsl:when test="$nd/@xreflabel">
-          <xsl:call-template name="xref.xreflabel">
-            <xsl:with-param name="target" select="$nd"/>
-          </xsl:call-template>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:apply-templates select="$nd" mode="xref-to"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xref>
-    <xsl:apply-templates mode="olink.mode"/>
-  </div>
-</xsl:template>
-
-<xsl:template name="obj">
-  <xsl:param name="nd" select="."/>
-
-  <obj>
-    <xsl:call-template name="attrs">
-      <xsl:with-param name="nd" select="$nd"/>
-    </xsl:call-template>
-    <ttl>
-      <xsl:apply-templates select="$nd" mode="title.markup"/>
-    </ttl>
-    <objttl>
-      <xsl:apply-templates select="$nd" mode="object.title.markup"/>
-    </objttl>
-    <xref>
-      <xsl:choose>
-        <xsl:when test="$nd/@xreflabel">
-          <xsl:call-template name="xref.xreflabel">
-            <xsl:with-param name="target" select="$nd"/>
-          </xsl:call-template>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:apply-templates select="$nd" mode="xref-to"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xref>
-  </obj>
-</xsl:template>
-
-<xsl:template match="text()|processing-instruction()|comment()"
-              mode="olink.mode">
-  <!-- nop -->
-</xsl:template>
-
-<xsl:template match="*" mode="olink.mode">
-  <!-- nop -->
-</xsl:template>
-
-<xsl:template match="set" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="book" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="preface|chapter|appendix" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="part|reference" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="article" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="refentry" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="section|sect1|sect2|sect3|sect4|sect5" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="refsection|refsect1|refsect2|refsect3" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-<xsl:template match="figure|example|table" mode="olink.mode">
-  <xsl:call-template name="obj"/>
-</xsl:template>
-
-<xsl:template match="equation[title]" mode="olink.mode">
-  <xsl:call-template name="div"/>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/xsl/tools/olink/olink.xsl b/xsl/tools/olink/olink.xsl
deleted file mode 100644 (file)
index e30516c..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version="1.0">
-
-<xsl:import href="../html/docbook.xsl"/>
-<xsl:include href="olink-common.xsl"/>
-
-<xsl:output method="xml"
-            indent="yes"
-            doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V1.2//EN"
-            doctype-system="http://docbook.sourceforge.net/???"/>
-
-<xsl:param name="base-uri" select="''"/>
-
-<xsl:template name="olink.href.target">
-  <xsl:param name="nd" select="."/>
-
-  <xsl:value-of select="$base-uri"/>
-  <xsl:call-template name="href.target">
-    <xsl:with-param name="object" select="$nd"/>
-  </xsl:call-template>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/xsl/tools/olink/olinkchunk.xsl b/xsl/tools/olink/olinkchunk.xsl
deleted file mode 100644 (file)
index f8867cb..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version="1.0">
-
-<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/>
-
-<xsl:include href="olink-common.xsl"/>
-
-<xsl:output method="xml"
-            indent="yes"
-            doctype-public="-//Norman Walsh//DTD DocBook OLink Summary V1.2//EN"
-            doctype-system="http://docbook.sourceforge.net/release/xsl/current/tools/olink/olinksum.dtd"/>
-
-<xsl:template name="olink.href.target">
-  <xsl:param name="nd" select="."/>
-
-  <xsl:call-template name="href.target">
-    <xsl:with-param name="object" select="$nd"/>
-  </xsl:call-template>
-</xsl:template>
-
-</xsl:stylesheet>
diff --git a/xsl/tools/olink/olinksum.dtd b/xsl/tools/olink/olinksum.dtd
deleted file mode 100644 (file)
index 3ff9a62..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-<!-- $Id$
-
-     DTD for OLINK Summary Information
-
-     Common declaration:
-
-     <!DOCTYPE div
-               PUBLIC "-//Norman Walsh//DTD DocBook OLink Summary V1.2//EN">
--->
-
-<!ENTITY % commonatts
-"      type            CDATA   #IMPLIED
-       name            CDATA   #IMPLIED
-       href            CDATA   #IMPLIED
-       id              ID      #IMPLIED
-       label           CDATA   #IMPLIED
-       lang            CDATA   #IMPLIED
-       arch            CDATA   #IMPLIED
-       conformance     CDATA   #IMPLIED
-       os              CDATA   #IMPLIED
-       revision        CDATA   #IMPLIED
-       userlevel       CDATA   #IMPLIED
-       vendor          CDATA   #IMPLIED">
-
-<!ELEMENT div (ttl, objttl, xref, obj*, div*)>
-<!ATTLIST div %commonatts;>
-
-<!ELEMENT obj (ttl, objttl, xref)>
-<!ATTLIST obj %commonatts;>
-
-<!ENTITY % inlines "tt|i|sub|sup|span">
-
-<!ELEMENT ttl (#PCDATA|%inlines;)*>
-<!ELEMENT objttl (#PCDATA|%inlines;)*>
-<!ELEMENT xref (#PCDATA|%inlines;)*>
-
-<!ELEMENT tt (#PCDATA|%inlines;)*>   <!-- typewriter (courier) -->
-<!ATTLIST tt
-       class   CDATA   #IMPLIED
->
-
-<!ELEMENT i (#PCDATA|%inlines;)*>   <!-- italics -->
-<!ATTLIST i
-       class   CDATA   #IMPLIED
->
-
-<!ELEMENT sub (#PCDATA|%inlines;)*>  <!-- subscript -->
-<!ATTLIST sub
-       class   CDATA   #IMPLIED
->
-
-<!ELEMENT sup (#PCDATA|%inlines;)*>  <!-- superscript -->
-<!ATTLIST sup
-       class   CDATA   #IMPLIED
->
-
-<!ELEMENT span (#PCDATA|%inlines;)*> <!-- span -->
-<!ATTLIST span
-       class   CDATA   #IMPLIED
->
diff --git a/xsl/tools/profile/profile.xsl b/xsl/tools/profile/profile.xsl
deleted file mode 100644 (file)
index 571c355..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-                version="1.0">
-
-<xsl:template match="/">
-  <xsl:message terminate="yes">WARNING:
-Profiling stylesheet has moved to new location profiling/profile.xsl.
-This new version uses different names of parameters. Please use e.g.
-"profile.os" instead of simply "os". You can now also perform
-profiling in a single step as an integral part of transformation. Check
-new stylesheets profile-docbook.xsl and profile-chunk.xsl.
-  </xsl:message>  
-</xsl:template>
-
-</xsl:stylesheet>
-