From 3c53605985f4e67eb6584d3239b08e0432510eff Mon Sep 17 00:00:00 2001 From: Benedikt Meurer <benny@xfce.org> Date: Wed, 1 Mar 2006 01:38:24 +0000 Subject: [PATCH] 2006-03-01 Benedikt Meurer <benny@xfce.org> * configure.in.in, docs/Makefile.am, docs/manual/: Import initial parts of the user manual. * HACKING: Update repository URLs. * docs/README.volumes: Update notes. (Old svn revision: 20140) --- ChangeLog | 7 + HACKING | 4 +- configure.in.in | 16 ++ docs/Makefile.am | 1 + docs/README.volumes | 22 ++- docs/manual/C/Makefile.am | 68 +++++++++ docs/manual/C/Thunar.xml.in | 251 ++++++++++++++++++++++++++++++ docs/manual/C/images/Makefile.am | 9 ++ docs/manual/Makefile.am | 14 ++ docs/manual/thunar.css | 99 ++++++++++++ docs/manual/thunar.xsl | 254 +++++++++++++++++++++++++++++++ 11 files changed, 738 insertions(+), 7 deletions(-) create mode 100644 docs/manual/C/Makefile.am create mode 100644 docs/manual/C/Thunar.xml.in create mode 100644 docs/manual/C/images/Makefile.am create mode 100644 docs/manual/Makefile.am create mode 100644 docs/manual/thunar.css create mode 100644 docs/manual/thunar.xsl diff --git a/ChangeLog b/ChangeLog index 82f8e94b6..70d4c4cc1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2006-03-01 Benedikt Meurer <benny@xfce.org> + + * configure.in.in, docs/Makefile.am, docs/manual/: Import initial parts + of the user manual. + * HACKING: Update repository URLs. + * docs/README.volumes: Update notes. + 2006-02-28 Benedikt Meurer <benny@xfce.org> * thunar/thunar-details-view.c, thunar/thunar-icon-view.c, diff --git a/HACKING b/HACKING index 1add425ba..2c8366b42 100644 --- a/HACKING +++ b/HACKING @@ -16,11 +16,11 @@ Please send a patch against a recent version of this package. Patches against the Subversion trunk branch are most preferable. You can always access the trunk branch from - http://svn.foo-projects.org/svn/xfce/thunar/trunk + http://svn.xfce.org/svn/xfce/thunar/trunk or using an installed Subversion client - svn co http://svn.foo-projects.org/svn/xfce/thunar/trunk thunar + svn co http://svn.xfce.org/svn/xfce/thunar/trunk thunar Feature requests diff --git a/configure.in.in b/configure.in.in index 35ff5e0f3..acd7d1f34 100644 --- a/configure.in.in +++ b/configure.in.in @@ -206,6 +206,18 @@ dnl *** Check for gtk-doc *** dnl ************************* GTK_DOC_CHECK([1.0]) +dnl ************************** +dnl *** Check for xsltproc *** +dnl ************************** +AC_ARG_ENABLE([xsltproc], [AC_HELP_STRING([--enable-xsltproc], [Use xsltproc to build documentation @<:@default=no@:>@])],, [enable_xsltproc=no]) +if test x"$enable_xsltproc" = x"yes"; then + AC_PATH_PROG([XSLTPROC], [xsltproc], [no]) + if test x"$XSLTPROC" = x"no"; then + enable_xsltproc=no + fi +fi +AM_CONDITIONAL([ENABLE_XSLTPROC], [test x"$enable_xsltproc" = x"yes"]) + dnl **************************************************** dnl *** Check for file system monitor implementation *** dnl **************************************************** @@ -327,6 +339,10 @@ AC_OUTPUT([ Makefile docs/Makefile docs/design/Makefile +docs/manual/Makefile +docs/manual/C/Makefile +docs/manual/C/Thunar.xml +docs/manual/C/images/Makefile docs/papers/Makefile docs/reference/Makefile docs/reference/thunar-vfs/Makefile diff --git a/docs/Makefile.am b/docs/Makefile.am index e1480e64d..3e0629cf7 100644 --- a/docs/Makefile.am +++ b/docs/Makefile.am @@ -2,6 +2,7 @@ SUBDIRS = \ design \ + manual \ papers \ reference diff --git a/docs/README.volumes b/docs/README.volumes index 862183fc5..859636a07 100644 --- a/docs/README.volumes +++ b/docs/README.volumes @@ -3,8 +3,7 @@ The Thunar Volume Manager The Thunar-VFS library contains an abstract interface to volume managers and implementations of this interface for some platforms (currently only - FreeBSD is known to work properly, although Net- and OpenBSD should also - work fine). + FreeBSD and Linux with HAL is known to work properly). Using this abstract interface (in fact the platform specific implementations of the interface), Thunar is able to display mounted and mountable volumes @@ -17,9 +16,9 @@ The Thunar Volume Manager Unfortunately, this functionality is currently only available to BSD users. I'm looking for people to provide implementations of ThunarVfsVolume and ThunarVfsVolumeManager (see thunar-vfs-volume.h) for other platforms. If - you need a starting point, you should have a look at the BSD implementation - in thunar-vfs-volume-bsd.c, it's a bit tricky when it comes to details, - but it should give you the basic idea. + you need a starting point, you should have a look at the FreeBSD implemen- + tation in thunar-vfs-volume-freebsd.c, it's a bit tricky when it comes to + details, but it should give you the basic idea. Notes for FreeBSD users @@ -42,3 +41,16 @@ The Thunar Volume Manager In order to be able to eject removable devices, you will need to install the eject utility from the sysutils/eject port. + + + Notes for Linux users + --------------------- + + On Linux platforms, Thunar requires HAL 0.5 or better to provide information + about volumes. + + To be able to mount and unmount volumes, you will also need either the pmount + utility or HAL with fstab-sync. Thunar may also support gnome-mount in the + future. + + To be able to eject dics, you will need the eject utility program. diff --git a/docs/manual/C/Makefile.am b/docs/manual/C/Makefile.am new file mode 100644 index 000000000..ca26e7ee7 --- /dev/null +++ b/docs/manual/C/Makefile.am @@ -0,0 +1,68 @@ +# $Id$ + +SUBDIRS = \ + images + +TARGET_DIR = $(datadir)/doc/Thunar/html/C +STYLESHEET = ../thunar.xsl +DOCUMENT = Thunar.xml + +# We set GPATH here; this gives us semantics for GNU make +# which are more like other make's VPATH, when it comes to +# whether a source that is a target of one rule is then +# searched for in VPATH/GPATH. +GPATH = $(srcdir) + +DOC_STAMPS = html-build.stamp + +EXTRA_DIST = $(DOCUMENT) +CLEANFILES = $(DOC_STAMPS) + +if ENABLE_XSLTPROC +all-local: html-build.stamp + +html-build.stamp: $(srcdir)/$(DOCUMENT) $(srcdir)/$(STYLESHEET) + @echo "*** Building HTML ***" + @-chmod -R u+w $(srcdir) + rm -rf $(srcdir)/html + mkdir $(srcdir)/html + $(XSLTPROC) --nonet -o $(srcdir)/html/ $(srcdir)/$(STYLESHEET) \ + $(srcdir)/$(DOCUMENT) + touch html-build.stamp +else +all-local: +endif + +maintainer-clean-local: clean + (cd $(srcdir) && rm -rf html) + +install-data-local: + installfiles=`echo $(srcdir)/html/*`; \ + if test "$$installfiles" = '$(srcdir)/html/*'; then \ + echo "--- Nothing to install"; \ + else \ + $(mkinstalldirs) $(DESTDIR)$(TARGET_DIR); \ + for file in $$installfiles; do \ + echo "--- Installing "$$file; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(TARGET_DIR); \ + done; \ + fi + +uninstall-local: + rm -rf $(DESTDIR)$(TARGET_DIR)/* + +if ENABLE_XSLTPROC +dist-check-xsltproc: all +else +dist-check-xsltproc: + @echo "*** xsltproc must be installed and enabled in order to make dist" + @false +endif + +dist-hook: dist-check-xsltproc dist-hook-local + mkdir $(distdir)/html + -cp $(srcdir)/html/* $(distdir)/html + +.PHONY: dist-hook-local + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/docs/manual/C/Thunar.xml.in b/docs/manual/C/Thunar.xml.in new file mode 100644 index 000000000..ce3df3902 --- /dev/null +++ b/docs/manual/C/Thunar.xml.in @@ -0,0 +1,251 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE article PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN" + "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [ + <!ENTITY date "March 2006"> + <!ENTITY version "@PACKAGE_VERSION@"> + <!ENTITY application "@PACKAGE_NAME@"> +]> +<article id="index" lang="en"> + + <!-- Header --> + <articleinfo> + <title>Thunar File Manager</title> + + <pubdate>&date;</pubdate> + + <copyright> + <year>2004</year> + <year>2005</year> + <year>2006</year> + <holder>Benedikt Meurer</holder> + </copyright> + + <legalnotice id="legalnotice"> + <para> + Permission is granted to copy, distribute and/or modify this document + under the terms of the GNU Free Documentation License, Version 1.1 or + any later version published by the Free Software Foundation; with no + Invariant Sections, with no Front-Cover Texts, and with no Back-Cover + Texts. The complete license text is available from the <ulink + type="http" url="http://www.gnu.org/">Free Software Foundation</ulink>. + </para> + </legalnotice> + + <authorgroup> + <author> + <firstname>Benedikt</firstname> + <surname>Meurer</surname> + <affiliation> + <address><email>benny@xfce.org</email></address> + <orgname>os-cillation</orgname> + <orgdiv>System development</orgdiv> + <jobtitle>Software developer</jobtitle> + </affiliation> + </author> + </authorgroup> + + <releaseinfo> + This manual describes version &version; of &application;. + </releaseinfo> + </articleinfo> + + <sect1 id="intro"> + <title>Introduction to &application;</title> + + <para> + Thunar is a new modern file manager for the Xfce Desktop Environment. Thunar has been designed from the ground up to + be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless + options by default. Thunar is fast and responsive with a good start up time and folder load time. + </para> + + <para> + The Thunar file manager thereby provides an integrated access point to your files and applications. You can use the + file manager to do the following: + </para> + + <itemizedlist> + <listitem>Create folders and documents.</listitem> + <listitem>Display your files and folders.</listitem> + <listitem>Manage your files and folders.</listitem> + <listitem>Run and manage custom actions.</listitem> + <listitem>Access Removable Media.</listitem> + </itemizedlist> + </sect1> + + + <sect1 id="advanced-topics"> + <title>Advanced Topics</title> + + <sect2 id="the-unix-file-system"> + <title>The UNIX File System</title> + + <para> + While the Thunar file manager does a good job at abstracting the details of the underlying file system, so the user + does not need to care about them, it is sometimes useful to understand the basic concepts to get the whole picture. + This section tries to give a brief introduction to the concepts of the UNIX file system, which is used today by all + incarnations of UNIX, including Linux. + </para> + + <sect3 id="folders-and-paths"> + <title>Folders and Paths</title> + + <para> + In a UNIX file system all folders are arranged in a simple inverted tree structure descending and branching down + from a single top level folder, which is called the <emphasis>root directory</emphasis> (the term + <emphasis>directory</emphasis> is often used instead of <emphasis>folder</emphasis>) and displayed as + <guilabel>File System</guilabel> in Thunar. This means that you can get from any folder to any other by going + up the tree until you reach a common point, then down the tree through the appropriate subfolders until you reach + your target. + </para> + + <para> + The position of any file or folder in the tree can be described by its <emphasis>path</emphasis>. The path is the + list of folders you would have to descend through to get to the target folder or file, starting from the top level + folder. For example <filename role="directory">/home/luke</filename> is the subfolder <filename + role="directory">luke</filename> of the subfolder <filename role="directory">home</filename> of the top level folder, + and <filename>/home/luke/myfile.txt</filename> is the file <filename>myfile.txt</filename> in that subfolder. The + leading <filename role="directory">/</filename> in these paths represents the top level folder. + </para> + + <para> + Every user has their own folder to hold their personal files and settings. This folder is called the <emphasis>home + directory</emphasis> and is displayed in Thunar as special icon with the users login name. The folder is similar to + the <guilabel>My Files</guilabel> folder known from Windows. The <emphasis>home directories</emphasis> of the various + users in a system are usually located below the <filename role="directory">/home</filename> folder. For example + <filename role="directory">/home/luke</filename> would be the home directory of the user with the login name + <filename role="directory">luke</filename>, while <filename role="directory">/home/jane</filename> would be + the home directory for the user with the login name <filename role="directory">jane</filename>. + </para> + </sect3> + + <sect3 id="file-types"> + <title>File Types</title> + + <para> + You may have already heard that everything is a file in UNIX. This is true for most objects present in UNIX systems + today. In fact even devices are represented as a special files. While this may not make sense at first sight, it is + one of the strengths of UNIX and its derivates, and has helped it to maintain a simple core over the years where other + operating systems had to introduce new concepts for every new technology. + </para> + + <para> + These are the four most important types of files in the UNIX file system. + </para> + + <sect4 id="file-types-ordinary-files"> + <title>Ordinary Files</title> + + <para> + An ordinary file may contain text, a program or other data. This includes image files, audio files, office documents + and video files. The term <emphasis>file</emphasis> is often used to refer to an ordinary file. + </para> + </sect4> + + <sect4 id="file-types-folder-files"> + <title>Folder Files</title> + + <para> + Folders are also files in the UNIX file system. To be exact a folder is a special file, which contains a + mapping of file names to file references for every file contained within this folder. + </para> + </sect4> + + <sect4 id="file-types-symbolic-link-files"> + <title>Symbolic Link Files</title> + + <para> + A Symbolic link (often called a <emphasis>symlink</emphasis>) is a special file that contains a path to + another file in the file system. Symbolic link files therefore do not contain any useful information + themselves, but just refer to other files. + </para> + </sect4> + + <sect4 id="file-types-device-files"> + <title>Device Files</title> + + <para> + As mentioned earlier (most) devices are also accessed through the file system. These special device files are + usually located in the <filename role="directory">/dev</filename> folder. For example the special file + <filename>/dev/hda</filename> represents the first IDE disk on Linux. + </para> + </sect4> + </sect3> + </sect2> + </sect1> + + + <sect1 id="support"> + <title>Support</title> + + <para> + To report a bug or to make a suggestion regarding this application or this manual, use the bug tracking system at <ulink + url="http://bugzilla.xfce.org/enter_bug.cgi?product=Thunar&format=guided">http://bugzilla.xfce.org/</ulink>. + Remember that useful bug reports are ones that get bugs fixed, so a useful bug report has two qualities: + </para> + + <itemizedlist> + <listitem> + <para> + <emphasis role="bold">Reproducible.</emphasis> If the developer cannot see the bug himself + to prove that it exists, he will most probably not be able to fix it at all. Every detail you + can provide helps. + </para> + </listitem> + <listitem> + <para> + <emphasis role="bold">Specific.</emphasis> The quicker the developer can isolate the problem + to a specific area, the more likely he will expediently fix it. + </para> + </listitem> + </itemizedlist> + + <para> + In case you want to request a new feature, please make clear why you consider it a worth + addition for the application. It is more likely that a new feature gets added if you provide + good arguments for the feature. It will increase the chance of addition even more if you + provide a patch that implements the requested feature, but make sure that you read the file + <ulink type="http" url="http://svn.xfce.org/svn/xfce/terminal/trunk/HACKING">HACKING</ulink> + - especially the section labeled <emphasis>Coding Style</emphasis> - before you start hacking + up the source. + </para> + + <para> + Else, if you have questions about the use or installation of this software, please ask on the + <ulink type="http" url="http://foo-projects.org/mailman/listinfo/thunar-dev">thunar-dev mailing + list</ulink> or point your IRC client to <emphasis role="bold">irc.freenode.net</emphasis>, + join the channel <emphasis role="bold">#thunar</emphasis> and ask for help. + </para> + </sect1> + + <sect1 id="copyright"> + <title>About &application;</title> + + <para> + &application; was written by Benedikt Meurer (<email>benny@xfce.org</email>). Visit the + <ulink url="http://thunar.xfce.org/" type="http">Thunar website</ulink> for more information. + </para> + + <para> + This documentation was written by Benedikt Meurer (<email>benny@xfce.org</email>). The latest + version of this document is always available from the <ulink type="http" + url="http://thunar.xfce.org/">Thunar website</ulink>. + </para> + + <para> + This software is distributed under the terms of the GNU General Public License + as published by the Free Software Foundation; either version 2 of the License, or + (at your option) any later version. + </para> + + <para> + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, + USA. + </para> + </sect1> + +</article> +<!-- + vim:set ts=2 sw=2 et ai: +--> diff --git a/docs/manual/C/images/Makefile.am b/docs/manual/C/images/Makefile.am new file mode 100644 index 000000000..7448799e3 --- /dev/null +++ b/docs/manual/C/images/Makefile.am @@ -0,0 +1,9 @@ +# $Id$ + +imagesdir = $(datadir)/doc/Thunar/html/C/images +images_DATA = + +EXTRA_DIST = \ + $(images_DATA) + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/docs/manual/Makefile.am b/docs/manual/Makefile.am new file mode 100644 index 000000000..c655e8f10 --- /dev/null +++ b/docs/manual/Makefile.am @@ -0,0 +1,14 @@ +# $Id$ + +SUBDIRS = \ + C + +cssdir = $(datadir)/doc/Thunar/html +css_DATA = \ + thunar.css + +EXTRA_DIST = \ + $(css_DATA) \ + thunar.xsl + +# vi:set ts=8 sw=8 noet ai nocindent syntax=automake: diff --git a/docs/manual/thunar.css b/docs/manual/thunar.css new file mode 100644 index 000000000..e86fba6f1 --- /dev/null +++ b/docs/manual/thunar.css @@ -0,0 +1,99 @@ +body address +{ + line-height: 1.3; + margin: .6em 0; +} + +body blockquote +{ + margin-top: .75em; + line-height: 1.5; + margin-bottom: .75em; +} + +html body +{ + margin: 1em 8% 1em 10%; + line-height: 1.2; + background-color: #ffffff; +} + +body pre +{ + margin: .75em 0; + line-height: 1.3; + color: #4f3f3f; + font-weight: bold; +} + +body div +{ + margin: 0; +} + +dl +{ + margin: .8em 0; + line-height: 1.2; +} + +.legalnotice +{ + font-size: small; + font-variant: small-caps; +} + +h1,h2,h3,h4,h5,h6, +div.example p b, +.question, +div.table p b, +div.procedure p b +{ + color: #990000; +} + +.option +{ + color: #0000ca; + font-weight: bold; +} + +.parameter +{ + color: #007a00; + font-weight: bold; +} + +a +{ + color: #000000; +} + +a:hover +{ + color: #3c3c3c; + border-bottom: 1px dotted #dc0000; +} + +hr +{ + background-color: #9c9c9c; + border-style: none; + height: 1px; +} + +li +{ + list-style-type: square; +} + +.programlisting, .screen +{ + background-color: #F8F9FD; + border-color: #907777; + border-width: 1px; + border-style: solid; + padding: 0.5em; +} + +/* vim:set ts=2 sw=2 et ai: */ diff --git a/docs/manual/thunar.xsl b/docs/manual/thunar.xsl new file mode 100644 index 000000000..637e95fea --- /dev/null +++ b/docs/manual/thunar.xsl @@ -0,0 +1,254 @@ +<?xml version='1.0'?> +<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + version='1.0' + xmlns="http://www.w3.org/TR/xhtml1/transitional" + exclude-result-prefixes="#default"> + +<xsl:import href="http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl"/> + +<!-- Use stylesheet --> +<xsl:param name="html.stylesheet" select="'../thunar.css'"/> + +<!-- labels and numbering --> +<xsl:param name="autotoc.label.separator" select="'. '"/> +<xsl:param name="chapter.autolabel" select="1"/> + +<!-- Don't force the use of index.html as root filename --> +<xsl:param name="root.filename" select="''"/> + +<!-- Use element id (if present) as file name --> +<xsl:variable name="use.id.as.filename">1</xsl:variable> + +<xsl:template match="releaseinfo" mode="titlepage.mode"> + <span class="{name(.)}"> + <br/> + <xsl:apply-templates mode="titlepage.mode"/> + <br/> + </span> +</xsl:template> + +<!-- Use graphics in admonitions (note, warning, etc) --> +<xsl:variable name="admon.graphics">0</xsl:variable> + +<xsl:param name="admon.style"> + <xsl:text>text-align: left;</xsl:text></xsl:param> + +<xsl:variable name="admon.graphics.path">stylesheet-images/</xsl:variable> + +<xsl:variable name="admon.graphics.extension">.gif</xsl:variable> + +<xsl:param name="table.border.thickness" select="'0.2pt'"/> + +<xsl:param name="graphic.default.extension" select="png"/> + +<!-- This requires an adapted template for tgroup (see end of stylesheet) --> +<xsl:attribute-set name="table.style"> + <xsl:attribute name="bgcolor">#fdf9f8</xsl:attribute> + <xsl:attribute name="cellspacing">0</xsl:attribute> + <xsl:attribute name="cellpadding">4</xsl:attribute> +</xsl:attribute-set> + + +<xsl:param name="generate.legalnotice.link" select="0"/> + +<!-- set font styles for various tags --> +<xsl:template match="guibutton"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="guiicon"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="guilabel"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="guimenu"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="guimenuitem"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="guisubmenu"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<xsl:template match="application"> +<xsl:call-template name="inline.boldmonoseq"/> +</xsl:template> + +<xsl:template match="caption"> +<xsl:call-template name="inline.boldseq"/> +</xsl:template> + +<!-- Adapted template for tgroup. The only change is the addition of --> +<!-- table.style attributes --> +<xsl:template match="tgroup"> + <table xsl:use-attribute-sets="table.style"> + <xsl:choose> + <!-- If there's a <?dbhtml table-summary="foo"?> PI, use it for + the HTML table summary attribute --> + <xsl:when test="processing-instruction('dbhtml')"> + <xsl:variable name="summary"> + <xsl:call-template name="dbhtml-attribute"> + <xsl:with-param name="pis" + select="processing-instruction('dbhtml')[1]"/> + <xsl:with-param name="attribute" select="'table-summary'"/> + </xsl:call-template> + </xsl:variable> + <xsl:if test="$summary != ''"> + <xsl:attribute name="summary"> + <xsl:value-of select="$summary"/> + </xsl:attribute> + </xsl:if> + </xsl:when> + <!-- Otherwise, if there's a title, use that --> + <xsl:when test="../title"> + <xsl:attribute name="summary"> + <xsl:value-of select="string(../title)"/> + </xsl:attribute> + </xsl:when> + <!-- Otherwise, forget the whole idea --> + <xsl:otherwise><!-- nevermind --></xsl:otherwise> + </xsl:choose> + + <xsl:if test="../@pgwide=1"> + <xsl:attribute name="width">100%</xsl:attribute> + </xsl:if> + + <xsl:choose> + <xsl:when test="../@frame='none'"> + <xsl:attribute name="border">0</xsl:attribute> + </xsl:when> + <xsl:when test="$table.borders.with.css != 0"> + <xsl:attribute name="border">0</xsl:attribute> + <xsl:choose> + <xsl:when test="../@frame='topbot' or ../@frame='top'"> + <xsl:attribute name="style"> + <xsl:call-template name="border"> + <xsl:with-param name="side" select="'top'"/> + </xsl:call-template> + </xsl:attribute> + </xsl:when> + <xsl:when test="../@frame='sides'"> + <xsl:attribute name="style"> + <xsl:call-template name="border"> + <xsl:with-param name="side" select="'left'"/> + </xsl:call-template> + <xsl:call-template name="border"> + <xsl:with-param name="side" select="'right'"/> + </xsl:call-template> + </xsl:attribute> + </xsl:when> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:attribute name="border">1</xsl:attribute> + </xsl:otherwise> + </xsl:choose> + + <xsl:variable name="colgroup"> + <colgroup> + <xsl:call-template name="generate.colgroup"> + <xsl:with-param name="cols" select="@cols"/> + </xsl:call-template> + </colgroup> + </xsl:variable> + + <xsl:variable name="explicit.table.width"> + <xsl:call-template name="dbhtml-attribute"> + <xsl:with-param name="pis" + select="../processing-instruction('dbhtml')[1]"/> + <xsl:with-param name="attribute" select="'table-width'"/> + </xsl:call-template> + </xsl:variable> + + <xsl:variable name="table.width"> + <xsl:choose> + <xsl:when test="$explicit.table.width != ''"> + <xsl:value-of select="$explicit.table.width"/> + </xsl:when> + <xsl:when test="$default.table.width = ''"> + <xsl:text>100%</xsl:text> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$default.table.width"/> + </xsl:otherwise> + </xsl:choose> + </xsl:variable> + + <xsl:if test="$default.table.width != '' + or $explicit.table.width != ''"> + <xsl:attribute name="width"> + <xsl:choose> + <xsl:when test="contains($table.width, '%')"> + <xsl:value-of select="$table.width"/> + </xsl:when> + <xsl:when test="$use.extensions != 0 + and $tablecolumns.extension != 0"> + <xsl:choose> + <xsl:when test="function-available('stbl:convertLength')"> + <xsl:value-of select="stbl:convertLength($table.width)"/> + </xsl:when> + <xsl:when test="function-available('xtbl:convertLength')"> + <xsl:value-of select="xtbl:convertLength($table.width)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>No convertLength function available.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:value-of select="$table.width"/> + </xsl:otherwise> + </xsl:choose> + </xsl:attribute> + </xsl:if> + + <xsl:choose> + <xsl:when test="$use.extensions != 0 + and $tablecolumns.extension != 0"> + <xsl:choose> + <xsl:when test="function-available('stbl:adjustColumnWidths')"> + <xsl:copy-of select="stbl:adjustColumnWidths($colgroup)"/> + </xsl:when> + <xsl:when test="function-available('xtbl:adjustColumnWidths')"> + <xsl:copy-of select="xtbl:adjustColumnWidths($colgroup)"/> + </xsl:when> + <xsl:otherwise> + <xsl:message terminate="yes"> + <xsl:text>No adjustColumnWidths function available.</xsl:text> + </xsl:message> + </xsl:otherwise> + </xsl:choose> + </xsl:when> + <xsl:otherwise> + <xsl:copy-of select="$colgroup"/> + </xsl:otherwise> + </xsl:choose> + + <xsl:apply-templates select="thead"/> + <xsl:apply-templates select="tbody"/> + <xsl:apply-templates select="tfoot"/> + + <xsl:if test=".//footnote"> + <tbody class="footnotes"> + <tr> + <td colspan="{@cols}"> + <xsl:apply-templates select=".//footnote" + mode="table.footnote.mode"/> + </td> + </tr> + </tbody> + </xsl:if> + </table> +</xsl:template> + + +</xsl:stylesheet> + -- GitLab