Properties from Richtext editor isn't encoded by razor anymore as DynamicNode will return an IHtmlString for RTE properties Changed the lookups of Yes/no and tinmce datatypes ids to consts as these won't change anyway
26 lines
990 B
HTML
26 lines
990 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=v47;user id=DBUSER;password=DBPASSWORD</xsl:attribute>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="/configuration/appSettings/add[@key='umbracoConfigurationStatus']/@value">
|
|
<xsl:attribute name="value">4.7.0.beta</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>
|