|
Java example source code file (html_chunk.xsl)
The html_chunk.xsl example source code<?xml version="1.0" encoding="utf-8"?> <!-- ==================================================================== Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ==================================================================== This software consists of voluntary contributions made by many individuals on behalf of the Apache Software Foundation. For more information on the Apache Software Foundation, please see <http://www.apache.org />. ==================================================================== Based on the XSL HTML configuration file for the Spring Reference Documentation. --> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" version="1.0"> <xsl:import href="urn:docbkx:stylesheet"/> <!--################################################### HTML Settings ################################################### --> <xsl:param name="chunk.section.depth">'5' <xsl:param name="use.id.as.filename">'1' <!-- These extensions are required for table printing and other stuff --> <xsl:param name="use.extensions">1 <xsl:param name="tablecolumns.extension">0 <xsl:param name="callout.extensions">1 <xsl:param name="graphicsize.extension">0 <!--################################################### Table Of Contents ################################################### --> <!-- Generate the TOCs for named components only --> <xsl:param name="generate.toc"> book toc </xsl:param> <!-- Show only Sections up to level 3 in the TOCs --> <xsl:param name="toc.section.depth">3 <!--################################################### Labels ################################################### --> <!-- Label Chapters and Sections (numbering) --> <xsl:param name="chapter.autolabel">1 <xsl:param name="section.autolabel" select="1"/> <xsl:param name="section.label.includes.component.label" select="1"/> <!--################################################### Callouts ################################################### --> <!-- Place callout marks at this column in annotated areas --> <xsl:param name="callout.graphics">1 <xsl:param name="callout.defaultcolumn">90 <!--################################################### Misc ################################################### --> <!-- Placement of titles --> <xsl:param name="formal.title.placement"> figure after example before equation before table before procedure before </xsl:param> <xsl:template match="author" mode="titlepage.mode"> <xsl:if test="name(preceding-sibling::*[1]) = 'author'"> <xsl:text>, </xsl:if> <span class="{name(.)}"> <xsl:call-template name="person.name"/> <xsl:apply-templates mode="titlepage.mode" select="./contrib"/> <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/> </span> </xsl:template> <xsl:template match="authorgroup" mode="titlepage.mode"> <div class="{name(.)}"> <h2>Authors <p/> <xsl:apply-templates mode="titlepage.mode"/> </div> </xsl:template> <!--################################################### Headers and Footers ################################################### --> <xsl:template name="user.header.navigation"> <div class="banner"> <a class="bannerLeft" href="http://www.apache.org/" title="Apache Software Foundation"> <img style="border:none;" src="images/asf_logo_wide.gif"/> </a> <a class="bannerRight" href="http://hc.apache.org/httpcomponents-core/" title="Apache HttpComponents Core"> <img style="border:none;" src="images/hc_logo.png"/> </a> <div class="clear"/> </div> </xsl:template> </xsl:stylesheet> Other Java examples (source code examples)Here is a short list of links related to this Java html_chunk.xsl source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.