Skip to content

Commit 8081fa8

Browse files
committed
Merge commit '3069c007833aac3cdbf4c6faae756c3f463bb6b6'
2 parents 449a574 + 3069c00 commit 8081fa8

File tree

11 files changed

+19
-10
lines changed

11 files changed

+19
-10
lines changed

vscode-xslt-xpath/code-diagnostics.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Debugging | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/editing-xslt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Editing XSLT/XPath | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/editing.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Editing XML | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/navigation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Code Navigation | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/refactoring-xslt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Refactoring: Extract to xsl:function | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/run-xslt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Running XSLT | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/settings.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>Settings | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/xpath-notebook.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>XPath Notebooks | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

vscode-xslt-xpath/xsl/createPages.xsl

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
<xsl:output method="html" version="5.0" indent="no"/>
1212
<xsl:mode name="copyPage" on-no-match="shallow-copy"/>
1313

14+
<xsl:variable name="indexTitle" as="xs:string" select="normalize-space(/html/head/title)"/>
15+
1416
<xsl:template match="nav//ul" mode="#default">
1517
<xsl:message select="'debug message'"/>
1618
<xsl:apply-templates select="li/a/@href"/>
@@ -36,6 +38,13 @@
3638
</xsl:result-document>
3739
</xsl:template>
3840

41+
<xsl:template match="title" mode="copyPage">
42+
<xsl:param name="pageTitle" as="xs:string" tunnel="yes"/>
43+
<xsl:copy>
44+
<xsl:value-of select="$pageTitle || ' | ' || $indexTitle"/>
45+
</xsl:copy>
46+
</xsl:template>
47+
3948
<xsl:template match="div[@class eq 'main']" mode="copyPage">
4049
<xsl:param name="pageTitle" as="xs:string" tunnel="yes"/>
4150
<xsl:param name="mainDiv" as="element()" tunnel="yes"/>

vscode-xslt-xpath/xslt30.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<!-- Basic Page Needs
1616
==================================================-->
1717

18-
<title>VS Code XSLT/XPath</title>
18+
<title>XSLT 3.0 | VS Code XSLT/XPath</title>
1919
<meta name="description" content="User Guide for DeltaXML's XSLT/XPath Editor extension for Visual Studio Code.">
2020
<meta name="author" content="Philip Fearon">
2121

0 commit comments

Comments
 (0)