Mercurial > mplayer.hg
annotate DOCS/xml/xsl/ldp-html.xsl @ 33263:5f527a9a9521
Add an exit function.
This function will allow performing clean-up operations.
(MPlayer calls guiDone() before exiting, but only if the GUI has been
initialized, i.e. if guiInit() has been called successfully. Any
exit_player()/exit_player_with_rc() after GUI's cfg_read() until
guiInit(), or any exit_player() during guiInit() itself will end the GUI
without calling guiDone(). This exit function will at least handle
abortions during guiInit() itself. It will be called twice in case of an
guiExit() after GUI initialization - first directly, next by guiDone()
via MPlayer's exit_player_with_rc().)
author | ib |
---|---|
date | Tue, 03 May 2011 12:19:22 +0000 |
parents | 0f1b5b68af32 |
children |
rev | line source |
---|---|
9675 | 1 <?xml version='1.0'?> |
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" | |
3 version='1.0' | |
4 xmlns="http://www.w3.org/TR/xhtml1/transitional" | |
5 exclude-result-prefixes="#default"> | |
6 | |
7 <!-- $Id$ --> | |
8 | |
9 <!-- This stylesheet calls Norman Walsh's 'docbook.xsl' stylesheet | |
10 and therefore generates a SINGLE HTML FILE as output. --> | |
11 | |
12 <!-- Note the the *order* of the import statements below is important and | |
13 should not be changed. --> | |
14 | |
15 <!-- Change this to the path to where you have installed Norman | |
16 Walsh's XSL stylesheets. --> | |
17 <xsl:import href="/usr/share/sgml/docbook/xsl-stylesheets-1.60.1/html/docbook.xsl"/> | |
18 | |
19 <!-- Imports the common LDP customization layer. --> | |
20 <xsl:import href="/home/n/xml/xsl/ldp-html-common.xsl"/> | |
21 | |
29263
0f1b5b68af32
whitespace cosmetics: Remove all trailing whitespace.
diego
parents:
9675
diff
changeset
|
22 <!-- If there was some reason to override 'ldp-html-common.xsl' or to |
9675 | 23 perform any other customizations that affect *only* the generation |
24 of a single HTML file, those templates or parameters could be | |
25 entered here. --> | |
26 | |
27 </xsl:stylesheet> |