|
From: Rob M. <ro...@us...> - 2007-09-21 07:58:44
|
Update of /cvsroot/wix/wix/src/wix/Data In directory sc8-pr-cvs9.sourceforge.net:/tmp/cvs-serv19110/src/wix/Data Modified Files: messages.xml tables.xml Log Message: AaronSte: Creating separate Votive and Sconce DLLs for VS 2005 and VS 2008. Adding the VS 2008 SDK source code that is needed to build the VS 2008 Votive and Sconce dlls. HeathS: SFBUG:1789825 - CreationTimeUTC documents wrong format SFFEATURE:1768845 - Patch element should support MinorUpdateTargetRTM attribute SFFEATURE:1735295 - Patch build should add PATCHNEW* properties to patch transform Added support for ignorables to CompareUnit in WixUnit HeathS: SFBUG:1768842 - PatchProperty does not allow Company RobMen: Ensure RegistryKey element never ends up as KeyPath because MSI SDK says it isn't allowed. RobMen: Component guid generation. RobMen: SFBUG:1795309 - respect the rollback flag for the last SQL string like all the other strings. RobMen: SFBUG:1787888 - correctly handle certificates that are in Components that are conditioned out. RobMen: SFBUG:1675194 - loop through all server bindings when searching for a match. Index: tables.xml =================================================================== RCS file: /cvsroot/wix/wix/src/wix/Data/tables.xml,v retrieving revision 1.48 retrieving revision 1.49 diff -C2 -d -r1.48 -r1.49 *** tables.xml 3 Sep 2007 21:53:29 -0000 1.48 --- tables.xml 21 Sep 2007 07:58:40 -0000 1.49 *************** *** 1372,1375 **** --- 1372,1379 ---- <columnDefinition name="Modularizations" type="string" length="0"/> </tableDefinition> + <tableDefinition name="WixDirectory" unreal="yes"> + <columnDefinition name="Directory_" type="string" length="0" primaryKey="yes" modularize="column"/> + <columnDefinition name="ComponentGuidGenerationSeed" type="string" length="38" nullable="yes"/> + </tableDefinition> <tableDefinition name="WixEnsureTable" unreal="yes"> <columnDefinition name="Table" type="string" length="31"/> Index: messages.xml =================================================================== RCS file: /cvsroot/wix/wix/src/wix/Data/messages.xml,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -d -r1.51 -r1.52 *** messages.xml 3 Sep 2007 21:53:29 -0000 1.51 --- messages.xml 21 Sep 2007 07:58:40 -0000 1.52 *************** *** 1587,1591 **** <Message Id="IllegalComponentWithGeneratableGuid" Number="230"> <Instance> ! The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the some of the criteria for having a generatable guid. Only components with exactly one file which is the key path and no ODBCDataSource child elements may use a generatable guid. </Instance> </Message> --- 1587,1591 ---- <Message Id="IllegalComponentWithGeneratableGuid" Number="230"> <Instance> ! The Component/@Guid attribute's value '*' is not valid for this component because it does not meet the some of the criteria for having a generatable guid. Only components with no ODBCDataSource child elements and either exactly one file which is the key path or no files and a registry with no Property substitutions as the key path may use a generatable guid. </Instance> </Message> *************** *** 2215,2223 **** </Instance> </Message> - <Message Id="GeneratableComponentGuidsAreDangerous" Number="1092"> - <Instance> - USING GENERATED COMPONENT GUIDS IS A HIGHLY EXPERIMENTAL FEATURE WHICH IS NOT CONSIDERED PRODUCTION-QUALITY AT THIS POINT IN TIME. DO NOT SHIP ANY PRODUCTS CONTAINING THIS COMPONENT SINCE THEY MAY BE UNSERVICABLE, COLLIDE WITH OTHER COMPANY'S PRODUCTS, OR CAUSE ANY OTHER VARIOUS "BAD THINGS". THE WIX TEAM WILL NOT BE RESPONSIBLE FOR ANY PRODUCTS SHIPPED USING THIS FEATURE. - </Instance> - </Message> <Message Id="InvalidModuleVersion" Number="1093"> <Instance> --- 2215,2218 ---- |