diff options
author | Frank Peters <fpe@openoffice.org> | 2004-08-23 13:22:17 +0000 |
---|---|---|
committer | Frank Peters <fpe@openoffice.org> | 2004-08-23 13:22:17 +0000 |
commit | 512d114b209b42c62d45a02f6b2b1f949ba2ae32 (patch) | |
tree | ed0bade17b563f4c95237597dcb6501eb361bd38 | |
parent | 464bd359f8991cf1f1f72feb8191129050aea5a5 (diff) |
index.xsl
-rw-r--r-- | helpcontent2/source/auxiliary/index.xsl | 58 |
1 files changed, 49 insertions, 9 deletions
diff --git a/helpcontent2/source/auxiliary/index.xsl b/helpcontent2/source/auxiliary/index.xsl index 89cf73604d..db4d27e0ef 100644 --- a/helpcontent2/source/auxiliary/index.xsl +++ b/helpcontent2/source/auxiliary/index.xsl @@ -17,48 +17,89 @@ <xsl:param name="Language" select="'de'"/> -<xsl:template match="office:document|office:body"> +<xsl:template match="helpdocument|body"> <xsl:apply-templates/> </xsl:template> -<xsl:template match="headingheading"> +<xsl:template match="title"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> -<xsl:template match="text:p"> +<xsl:template match="table"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> -<xsl:template match="text:span"> +<xsl:template match="tablecell"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> -<xsl:template match="help:to-be-embedded"> +<xsl:template match="tablerow"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> +<xsl:template match="list"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="listitem"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> -<xsl:template match="help:key-word"> +<xsl:template match="item"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> -<xsl:template match="help:link"> +<xsl:template match="emph"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> </xsl:template> -<xsl:template match="help:help-text[@value='visible']"> +<xsl:template match="paragraph"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="section"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="bookmark"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="bookmark_value"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="link"> + <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> + <xsl:apply-templates/> + </index:element> +</xsl:template> + +<xsl:template match="ahelp[@visibility='visible']"> <index:element index:tokenizer="com.sun.xmlsearch.util.SimpleTokenizer"> <xsl:apply-templates/> </index:element> @@ -70,7 +111,6 @@ </index:text> </xsl:template> - <xsl:template match="*"/> </xsl:stylesheet> |