From: <mcu...@us...> - 2007-10-15 06:35:04
|
Revision: 1154 http://orm.svn.sourceforge.net/orm/?rev=1154&view=rev Author: mcurland Date: 2007-10-14 23:35:07 -0700 (Sun, 14 Oct 2007) Log Message: ----------- Switch xsl:variable to xsl:param in OIALtoORM.xslt. Fixes error from [1152]. refs #305 Modified Paths: -------------- trunk/BuildReadme.txt trunk/ORMModel/Shell/Converters/OIALtoORM.xslt trunk/README.txt Modified: trunk/BuildReadme.txt =================================================================== --- trunk/BuildReadme.txt 2007-10-15 06:33:06 UTC (rev 1153) +++ trunk/BuildReadme.txt 2007-10-15 06:35:07 UTC (rev 1154) @@ -3,13 +3,13 @@ The batch files perform as follows: 1) Build.bat builds all of the NORMA tools and extension projects. The test build helper, libary, and setup pieces are not built. -2) BuildDevTools.bat builds the (relatively static) NUBuild MSBuild extensions and DSLTools directive processors. CalFled by FirstTimeBuild.bat +2) BuildDevTools.bat builds the (relatively static) NUBuild MSBuild extensions and DSLTools directive processors. Called by FirstTimeBuild.bat 3) FirstTimeBuild.bat should be run the first time the tool is used in a development environment. Does not do test or setup. 4) BuildTests.bat builds testing tools and samples. Requires XML Diff Patch and nunit2.2.9 installation as discussed in README.txt in this directory. -5) BuildSetup.bat builds everything included in setup. Requires install of WIX 3.0 as discussed in the README.txt file. +5) BuildSetup.bat builds everything included in setup. Requires install of WIX 3 as discussed in the README.txt file. 6) BuildAll.bat builds everything except the development tools Modified: trunk/ORMModel/Shell/Converters/OIALtoORM.xslt =================================================================== --- trunk/ORMModel/Shell/Converters/OIALtoORM.xslt 2007-10-15 06:33:06 UTC (rev 1153) +++ trunk/ORMModel/Shell/Converters/OIALtoORM.xslt 2007-10-15 06:35:07 UTC (rev 1154) @@ -19,7 +19,7 @@ xmlns:oil="http://schemas.orm.net/OIAL" extension-element-prefixes="exsl" exclude-result-prefixes="odt oil"> - <xsl:variable name="RequireReadingModification" select="false()"/> + <xsl:param name="RequireReadingModification" select="false()"/> <xsl:output method="xml" encoding="utf-8" media-type="text/xml" indent="no"/> <xsl:template match="oil:model"> <xsl:variable name="dirtyOrmIdsFragment"> Modified: trunk/README.txt =================================================================== --- trunk/README.txt 2007-10-15 06:33:06 UTC (rev 1153) +++ trunk/README.txt 2007-10-15 06:35:07 UTC (rev 1154) @@ -19,7 +19,7 @@ Additional components used by other portions of this software include: Windows Installer XML (WiX) toolset - Homepage: http://wix.sourceforge.net + Homepage: http://wix.sourceforge.net (use version 3) Microsoft XML Diff and Patch 1.0 Homepage: http://apps.gotdotnet.com/xmltools/xmldiff This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |