Files
Umbraco-CMS/umbraco/presentation/web.config.EQUIUM-SAT1.xslt
codegecko 86cddad92a DO NOT DOWNLOAD - GET THE STABLE SOURCE FROM THE DOWNLOADS TAB
Updated GlobalSettings to use Medium-Trust-safe method of modifying web.config. Also modified TypeResolver to not unload Sandbox AppDomain in finally as throws Exception. Updated umbraco.providers.SecUtility to not use System.Processes.GetCurrentProcess() to obtain application name. Added local build XSLT script.

[TFS Changeset #64415]
2010-03-03 17:13:42 +00:00

32 lines
1.2 KiB
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=10.198.22.143;database=umbraco41;integrated security=false;user id=umbraco;pwd=umbraco</xsl:attribute>
</xsl:template>
<xsl:template match="/configuration/appSettings/add[@key='umbracoConfigurationStatus']/@value">
<xsl:attribute name="value"></xsl:attribute>
<!-- <xsl:attribute name="value">4.1.0.betaII</xsl:attribute> -->
</xsl:template>
<xsl:template match="/system.web">
<trust level="Medium" originUrl=".*" />
<xsl:apply-templates select="@*" />
</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>