csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.8 KiB
49 lines
1.8 KiB
<?xml version="1.0"?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.1"
|
|
xmlns:ddue="http://ddue.schemas.microsoft.com/authoring/2003/5"
|
|
xmlns:MSHelp="http://msdn.microsoft.com/mshelp"
|
|
xmlns:asp="http://temp.uri/asp.net"
|
|
xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
|
|
<!-- WebDocs overrides some of the default Manifold transforms -->
|
|
<xsl:import href="main_sandcastle.xsl"/>
|
|
|
|
<xsl:output method="xml" indent="no" encoding="utf-8" omit-xml-declaration="yes"/>
|
|
<xsl:namespace-alias stylesheet-prefix="xlink" result-prefix="#default"/>
|
|
|
|
<xsl:template match="/">
|
|
<root>
|
|
<xsl:call-template name="insertFilename" />
|
|
<metadata>
|
|
<topic id="{$key}">
|
|
<title><xsl:call-template name="topicTitlePlain"/></title>
|
|
<pageUrl>api/<xsl:value-of select="/document/reference/file/@name"/>.aspx</pageUrl>
|
|
</topic>
|
|
</metadata>
|
|
<content>
|
|
<xsl:processing-instruction name="literal-text">
|
|
<xsl:text><![CDATA[<%@Page Language="C#" MasterPageFile="~/site.master" %>]]>
</xsl:text>
|
|
<xsl:text>
</xsl:text>
|
|
</xsl:processing-instruction>
|
|
<asp:Content ID="MainBodyContent" ContentPlaceHolderID="MainBody" Runat="Server">
|
|
<h1><xsl:call-template name="topicTitleDecorated" /></h1>
|
|
<!--<xsl:call-template name="upperBodyStuff"/> -->
|
|
<xsl:call-template name="main"/>
|
|
</asp:Content>
|
|
</content>
|
|
</root>
|
|
</xsl:template>
|
|
|
|
<xsl:template name="insertFilename">
|
|
<xsl:attribute name="fileName">
|
|
<xsl:value-of select="/document/reference/file/@name" />
|
|
</xsl:attribute>
|
|
</xsl:template>
|
|
|
|
<!-- NO HEADER; WebDocs uses master pages for this purpose -->
|
|
<!--
|
|
<xsl:template name="head">
|
|
</xsl:template>
|
|
-->
|
|
|
|
</xsl:stylesheet>
|
|
|