Files
Umbraco-CMS/umbraco/presentation/web.config.PETER-PC.xslt
pgregorynz 6f5e742ea1 WORK IN PROGRESS, GET STABLE SOURCE FROM DOWNLOAD TAB
Fixes issue #26148 Publish All in beta 4.1 resets the document template

[TFS Changeset #64148]
2010-02-23 22:03:04 +00:00

26 lines
1013 B
HTML

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" exclude-result-prefixes="msxsl">
<xsl:output method="xml" indent="yes"/>
<!-- Set up a local connection string -->
<xsl:template match="/configuration/appSettings/add[@key='umbracoDbDSN']/@value">
<xsl:attribute name="value">server=.\sqlexpress;database=umbraco41;integrated security=false;user id=sa;pwd=password</xsl:attribute>
</xsl:template>
<xsl:template match="/configuration/appSettings/add[@key='umbracoConfigurationStatus']/@value">
<xsl:attribute name="value">4.1.0.betaII</xsl:attribute>
</xsl:template>
<!-- Default templates to match anything else -->
<xsl:template match="@*">
<xsl:copy/>
</xsl:template>
<xsl:template match="node()">
<xsl:copy>
<xsl:apply-templates select="@*"/>
<xsl:apply-templates/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>