Mercurial > mplayer.hg
view DOCS/xml/html-common.xsl @ 22772:d2469c37ee29
r22547: fix up some longer than 80 char lines , and use suggestion from Diego.
r22570: dont start newline with a space and readd subdirectory
r22718: add new audio and video codecs to libavcodec list
r22748: add png and gif encoders, how to use them with mencoder is another question
r22749: split sonic into sonic/sonicls and wma into wmav1/wmav2
r22750: add rest of lavc encoders to list (vcr1, cljr, jpegls, ffvhuff, msmpeg4v1)
r22751: gsm requires libgsm so remove it
r22752: aiff isnt there as well, TEST FIRST, THEN DOCUMENT COMPN!
r22753: ok so cljr , vcr1 and msmpegv1 dont actually work... removed
r22679: Some more details for the mga_vid section taken from drivers/README.
r22686: tdfx_vid compilation has been simplified.
r22695: Add a link to Attila's mga_vid port to Linux 2.6.x.
r22704: 'make install' now takes care of most manual installation steps for *_vid.o.
author | voroshil |
---|---|
date | Sat, 24 Mar 2007 03:28:32 +0000 |
parents | abde88225c3a |
children | e9555bd1a9fb |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html" indent="no"/> <!-- ************** Set parameters ************** --> <xsl:param name="chunker.output.encoding" select="'utf-8'"/> <xsl:output encoding="utf-8"/> <xsl:param name="toc.section.depth" select="'4'"/> <xsl:param name="html.stylesheet" select="'default.css'"/> <xsl:param name="html.stylesheet.type" select="'text/css'"/> <xsl:param name="html.cleanup" select="'1'"/> <xsl:param name="make.valid.html" select="'1'"/> <xsl:param name="make.single.year.ranges" select="'1'"/> <xsl:param name="make.year.ranges" select="'1'"/> <!-- Use ID value for generated filenames --> <xsl:param name="use.id.as.filename" select="'1'"/> <!-- Depth to which sections are chunked --> <xsl:param name="chunk.section.depth" select="'1'"/> <!-- Create a chunk for the 1st top-level section too --> <xsl:param name="chunk.first.sections" select="'1'"/> <xsl:param name="admon.graphics" select="'0'"/> <xsl:param name="navig.graphics" select="'0'"/> <xsl:param name="navig.showtitles" select="'1'"/> <!-- Generate more links for Site Navigation Bar --> <xsl:param name="html.extra.head.links" select="1"/> <!-- Label sections too (eg. 2.1, 2.1.1) --> <xsl:param name="section.autolabel" select="'1'"/> <xsl:param name="section.label.includes.component.label" select="'1'"/> <!-- Use informal procedures; no need to number them --> <xsl:param name="formal.procedures" select="'0'"/> <xsl:param name="generate.toc"> appendix toc article toc book toc chapter toc part toc preface toc qandadiv toc qandaset toc reference toc section toc set toc </xsl:param> <!-- ********* Templates ********* --> <xsl:template match="application"> <span class="application"><xsl:apply-templates/></span> </xsl:template> <xsl:template match="option"> <tt class="option"><xsl:apply-templates/></tt> </xsl:template> <xsl:template match="filename"> <tt class="filename"><xsl:apply-templates/></tt> </xsl:template> <xsl:template match="keycap"> <span class="keycap"><b><xsl:apply-templates/></b></span> </xsl:template> <xsl:template match="guimenu"> <span class="guimenu"><xsl:apply-templates/></span> </xsl:template> <xsl:template match="guisubmenu"> <span class="guisubmenu"><xsl:apply-templates/></span> </xsl:template> <xsl:template match="guimenuitem"> <span class="guimenuitem"><xsl:apply-templates/></span> </xsl:template> </xsl:stylesheet>