Эх сурвалжийг харах

Removed obsolete files.

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/new-xsl@8026 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Manuel Canales Esparcia 18 жил өмнө
parent
commit
2711261483
2 өөрчлөгдсөн 0 нэмэгдсэн , 161 устгасан
  1. 0 83
      dump-commands.xsl
  2. 0 78
      lfs-tex.xsl

+ 0 - 83
dump-commands.xsl

@@ -1,83 +0,0 @@
-<?xml version="1.0"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-    xmlns:exsl="http://exslt.org/common"
-    extension-element-prefixes="exsl"
-    version="1.0">
-
-<!-- XSLT stylesheet to extract commands from [B,H]LFS books. -->
-
-  <xsl:template match="/">
-    <xsl:apply-templates select="//sect1"/>
-  </xsl:template>
-
-  <xsl:template match="sect1">
-      <!-- The dirs names -->
-    <xsl:variable name="pi-dir" select="../processing-instruction('dbhtml')"/>
-    <xsl:variable name="pi-dir-value" select="substring-after($pi-dir,'dir=')"/>
-    <xsl:variable name="quote-dir" select="substring($pi-dir-value,1,1)"/>
-    <xsl:variable name="dirname" select="substring-before(substring($pi-dir-value,2),$quote-dir)"/>
-      <!-- The file names -->
-    <xsl:variable name="pi-file" select="processing-instruction('dbhtml')"/>
-    <xsl:variable name="pi-file-value" select="substring-after($pi-file,'filename=')"/>
-    <xsl:variable name="filename" select="substring-before(substring($pi-file-value,2),'.html')"/>
-      <!-- The build order -->
-    <xsl:variable name="position" select="position()"/>
-    <xsl:variable name="order">
-      <xsl:choose>
-        <xsl:when test="string-length($position) = 1">
-          <xsl:text>00</xsl:text>
-          <xsl:value-of select="$position"/>
-        </xsl:when>
-        <xsl:when test="string-length($position) = 2">
-          <xsl:text>0</xsl:text>
-          <xsl:value-of select="$position"/>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:value-of select="$position"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:variable>
-      <!-- Creating dirs and files -->
-    <exsl:document href="{$dirname}/{$order}-{$filename}" method="text">
-      <xsl:apply-templates select=".//screen"/>
-    </exsl:document>
-  </xsl:template>
-
-  <xsl:template match="screen">
-    <xsl:if test="child::* = userinput">
-      <xsl:choose>
-        <xsl:when test="@role = 'root'">
-          <xsl:text>&#xA;</xsl:text>
-          <xsl:text># Run this as root</xsl:text>
-          <xsl:apply-templates select="userinput"/>
-          <xsl:text># End root commands</xsl:text>
-          <xsl:text>&#xA;</xsl:text>
-        </xsl:when>
-        <xsl:otherwise>
-          <xsl:apply-templates select="userinput"/>
-        </xsl:otherwise>
-      </xsl:choose>
-    </xsl:if>
-  </xsl:template>
-
-  <xsl:template match="userinput">
-    <xsl:text>&#xA;</xsl:text>
-    <xsl:if test=".//replaceable">
-      <xsl:text># This block must be edited to suit your needs.</xsl:text>
-    </xsl:if>
-    <xsl:text>&#xA;</xsl:text>
-    <xsl:apply-templates/>
-    <xsl:text>&#xA;</xsl:text>
-    <xsl:if test=".//replaceable">
-      <xsl:text># End of editable block.</xsl:text>
-    </xsl:if>
-    <xsl:text>&#xA;</xsl:text>
-  </xsl:template>
-
-  <xsl:template match="replaceable">
-    <xsl:text>**EDITME</xsl:text>
-    <xsl:apply-templates/>
-    <xsl:text>EDITME**</xsl:text>
-  </xsl:template>
-
-</xsl:stylesheet>

+ 0 - 78
lfs-tex.xsl

@@ -1,78 +0,0 @@
-<?xml version='1.0' encoding='ISO-8859-1'?>
-
-<!-- Created by Larry Lawrence <larry@linuxfromscratch.org> -->
-
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
-version='1.0'>
-
-<xsl:import href="http://db2latex.sourceforge.net/xsl/docbook.xsl"/>
-<xsl:output method="text" encoding="ISO-8859-1" indent="yes"/>
-<xsl:variable name="latex.override">
-
-\documentclass[12pt]{book}
-
-\usepackage{lfs}
-\usepackage{fancyhdr}
-\usepackage{fancyvrb}
-\usepackage{makeidx}
-\usepackage{hyperref}
-\usepackage{fancybox}
-
-\oddsidemargin -0.5in
-\evensidemargin -0.625in
-\textwidth 7in
-\textheight 8.5in
-
-%\ifx\pdfoutput\undefined
-%\else
-%\pdfpagewidth=7in
-%\pdfpageheight=8.5in
-%\fi
-
-\pagestyle{fancy}
-\newenvironment{admonition}[2] {
- \vspace{8mm}
- \hspace{0mm}\newline
- \noindent
-}
-
-
-\fancyhf{}
-\fancyhead[LE,RO]{\bfseries\thepage}
-\fancyhead[LO]{\bfseries\rightmark}
-\fancyhead[RE]{\bfseries\leftmark}
-\renewcommand{\headrulewidth}{0.5pt}
-\renewcommand{\footrulewidth}{0pt}
-\addtolength{\headheight}{3pt}
-\fancypagestyle{plain}{%
-	\fancyhead{}
-	\renewcommand{\headrulewidth}{0pt}
-}
-
-
-\hyphenation{change-log cpp-flags ctrlaltdel ma-cros chil-ton}
-
-<!-- adds \frontmatter to document -->
-
-</xsl:variable>
-
-<xsl:variable name="toc.section.depth">1</xsl:variable>
-
-<xsl:variable name="latex.book.begindocument">
-        <xsl:text>\begin{document}&#10;</xsl:text>
-        <xsl:text>\frontmatter&#10;</xsl:text>
-</xsl:variable>
-
-<!-- This put each section on a new page in the preface section -->
-
-<xsl:template match="preface/sect1">
-        <xsl:text>&#10;</xsl:text>
-        <xsl:text>\newpage&#10;</xsl:text>
-        <xsl:text>\section*{</xsl:text><xsl:copy-of
-select="normalize-space(title)"/><xsl:text>}&#10;</xsl:text>
-        <xsl:apply-templates/>
-</xsl:template>
-
-
-
-</xsl:stylesheet>