mirror of
https://github.com/nasa/trick.git
synced 2024-12-20 05:37:55 +00:00
14a75508a3
Changed all header file once include variables to follow the same naming convention and not start with any underscores. Also deleted old incorrect copyright notices. Also removed $Id: tags from all files. Fixes #14. Fixes #22.
234 lines
11 KiB
XML
234 lines
11 KiB
XML
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
|
<xsl:output method="text"/>
|
|
|
|
<xsl:template match="/file">
|
|
<xsl:apply-templates select="file_name"/>
|
|
<xsl:apply-templates select="trick_header"/>
|
|
|
|
<xsl:if test="count(enumerations/enum) != 0">
|
|
|
|
{\bf Enumerations:}
|
|
\begin{itemize} <xsl:for-each select="enumerations/enum">
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="enum_name"/></xsl:call-template>
|
|
</xsl:for-each>
|
|
\end{itemize}
|
|
</xsl:if>
|
|
|
|
<xsl:if test="count(structures/struct) != 0">
|
|
|
|
|
|
|
|
{\bf Structures:}
|
|
\begin{itemize} <xsl:for-each select="structures/struct">
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="struct_name"/></xsl:call-template>
|
|
</xsl:for-each>
|
|
\end{itemize}
|
|
</xsl:if>
|
|
<xsl:apply-templates select="enumerations"/>
|
|
<xsl:apply-templates select="structures"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="file_name">
|
|
{\bf File:} {\tt <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="text()"/></xsl:call-template> }
|
|
\vspace{0.125in}
|
|
</xsl:template>
|
|
|
|
<!-- write out the trick header -->
|
|
<xsl:template match="trick_header">
|
|
<xsl:apply-templates select="purpose"/>
|
|
<xsl:apply-templates select="references"/>
|
|
<xsl:apply-templates select="assumptions"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="purpose">
|
|
{\bf Purpose:}
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="text()"/></xsl:call-template>
|
|
\vspace{0.125in}
|
|
</xsl:template>
|
|
|
|
<xsl:template match="references">
|
|
{\bf References:}
|
|
<xsl:if test="count(reference) != 0">
|
|
\begin{itemize} <xsl:apply-templates select="reference"/>
|
|
\end{itemize}
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="reference">
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="author"/></xsl:call-template>
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="source"/></xsl:call-template>
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="id"/></xsl:call-template>
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="location"/></xsl:call-template>
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="date"/></xsl:call-template>
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="notes"/></xsl:call-template>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="assumptions">
|
|
{\bf Assumption and Limitations:}
|
|
<xsl:if test="count(assumption) != 0">
|
|
\begin{itemize} <xsl:apply-templates select="assumption"/>
|
|
\end{itemize}
|
|
</xsl:if>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="assumption">
|
|
\item <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="text()"/></xsl:call-template>
|
|
</xsl:template>
|
|
|
|
|
|
<xsl:template match="enumerations">
|
|
<xsl:apply-templates select="enum"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="enum">
|
|
\begin{table}[hbt]
|
|
\begin{center}
|
|
\begin{tabular}{|l|l|p{3.0in}|} \hline
|
|
\multicolumn{3}{|c|}{\bf <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="enum_name"/></xsl:call-template>} \\ \hline \hline
|
|
{\em Tag Name} & {\em Value} & {\em Description} \\ \hline
|
|
<xsl:for-each select="member">
|
|
{\tt <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="name"/></xsl:call-template> } &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="value"/></xsl:call-template> &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="comment"/></xsl:call-template> \\ \hline
|
|
</xsl:for-each>
|
|
|
|
\end{tabular}
|
|
\end{center}
|
|
\caption{<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="enum_name"/></xsl:call-template> enumeration tag values.}
|
|
\label{tbl:<xsl:value-of select="enum_name"/>}
|
|
\end{table}
|
|
</xsl:template>
|
|
|
|
<xsl:template match="file/enumerations/enum/member">
|
|
{\tt <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="name"/></xsl:call-template> } &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="value"/></xsl:call-template> &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="comment"/></xsl:call-template> \\ \hline
|
|
</xsl:template>
|
|
|
|
<xsl:template match="structures">
|
|
<xsl:apply-templates select="struct"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="struct">
|
|
\begin{table}[hbt]
|
|
\begin{center}
|
|
\begin{tabular}{|l|l|l|l|p{2.75in}|} \hline
|
|
\multicolumn{5}{|c|}{\bf <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="struct_name"/></xsl:call-template>} \\ \hline \hline
|
|
{\em Field Name} & {\em Type} & {\em Dim} & {\em Units} & {\em Description} \\ \hline
|
|
<xsl:apply-templates select="member"/>
|
|
\end{tabular}
|
|
\end{center}
|
|
\caption{<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="struct_name"/></xsl:call-template> field members.}
|
|
\label{tbl:<xsl:value-of select="struct_name"/>}
|
|
\end{table}
|
|
</xsl:template>
|
|
|
|
<xsl:template match="member">
|
|
{\tt <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="name"/></xsl:call-template> } &
|
|
{\tt <xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="type"/></xsl:call-template> } &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="dims"/></xsl:call-template> &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="units"/></xsl:call-template> &
|
|
<xsl:call-template name="transform_special"><xsl:with-param name="incoming" select="comment"/></xsl:call-template> \\ \hline
|
|
</xsl:template>
|
|
|
|
<xsl:template name="replace">
|
|
<xsl:param name="string" select="''"/>
|
|
<xsl:param name="pattern" select="''"/>
|
|
<xsl:param name="replacement" select="''"/>
|
|
<xsl:choose>
|
|
<xsl:when test="$pattern != '' and $string != '' and contains($string, $pattern)">
|
|
<xsl:value-of select="substring-before($string, $pattern)"/>
|
|
<xsl:copy-of select="$replacement"/>
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string" select="substring-after($string, $pattern)"/>
|
|
<xsl:with-param name="pattern" select="$pattern"/>
|
|
<xsl:with-param name="replacement" select="$replacement"/>
|
|
</xsl:call-template>
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="$string"/>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="transform_special">
|
|
<xsl:param name="incoming" select="''"/>
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string">
|
|
<xsl:call-template name="replace">
|
|
<xsl:with-param name="string" select="normalize-space($incoming)"/>
|
|
<xsl:with-param name="pattern" select="'\'"/>
|
|
<xsl:with-param name="replacement" select="'$\backslash$'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'&'"/>
|
|
<xsl:with-param name="replacement" select="'\&'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'#'"/>
|
|
<xsl:with-param name="replacement" select="'\#'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'$'"/>
|
|
<xsl:with-param name="replacement" select="'\$'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'%'"/>
|
|
<xsl:with-param name="replacement" select="'\%'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'^'"/>
|
|
<xsl:with-param name="replacement" select="'\^{}'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'{'"/>
|
|
<xsl:with-param name="replacement" select="'\{'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'}'"/>
|
|
<xsl:with-param name="replacement" select="'\}'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'~'"/>
|
|
<xsl:with-param name="replacement" select="'\~{}'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'_'"/>
|
|
<xsl:with-param name="replacement" select="'\_'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'>'"/>
|
|
<xsl:with-param name="replacement" select="'$>$'"/>
|
|
</xsl:call-template>
|
|
</xsl:with-param>
|
|
<xsl:with-param name="pattern" select="'<'"/>
|
|
<xsl:with-param name="replacement" select="'$<$'"/>
|
|
</xsl:call-template>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|
|
|