springnet-commits Mailing List for Spring Framework .NET (Page 17)
Brought to you by:
aseovic,
markpollack
You can subscribe to this list here.
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(33) |
Aug
(163) |
Sep
(491) |
Oct
(289) |
Nov
(336) |
Dec
(84) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
(227) |
Feb
(413) |
Mar
(128) |
Apr
(232) |
May
(92) |
Jun
(299) |
Jul
(386) |
Aug
(228) |
Sep
(237) |
Oct
(426) |
Nov
(325) |
Dec
(405) |
2006 |
Jan
(315) |
Feb
(311) |
Mar
(152) |
Apr
(177) |
May
(443) |
Jun
(92) |
Jul
(88) |
Aug
(80) |
Sep
(288) |
Oct
(515) |
Nov
(1049) |
Dec
(440) |
2007 |
Jan
(179) |
Feb
(406) |
Mar
(294) |
Apr
(80) |
May
(432) |
Jun
(242) |
Jul
(452) |
Aug
(710) |
Sep
(206) |
Oct
(240) |
Nov
(65) |
Dec
(227) |
2008 |
Jan
(80) |
Feb
(90) |
Mar
(98) |
Apr
(136) |
May
(101) |
Jun
(12) |
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Aleksandar S. <as...@us...> - 2008-02-05 20:40:49
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/DataBinding In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9288/test/Spring/Spring.Core.Tests/DataBinding Modified Files: BaseBindingManagerTests.cs Log Message: Extracted IValidationErrors interface and made ValidationErrors non-sealed. Added ValidationException class. Modified email, credit card, isbn and url validators to return true (valid) if object to validate is null or empty. Index: BaseBindingManagerTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/DataBinding/BaseBindingManagerTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** BaseBindingManagerTests.cs 31 Jul 2007 00:09:24 -0000 1.3 --- BaseBindingManagerTests.cs 5 Feb 2008 20:40:26 -0000 1.4 *************** *** 174,178 **** { BaseBindingManager dbm = new BaseBindingManager(); ! ValidationErrors errors = new ValidationErrors(); Hashtable source = new Hashtable(); source["boolValue"] = false; --- 174,178 ---- { BaseBindingManager dbm = new BaseBindingManager(); ! IValidationErrors errors = new ValidationErrors(); Hashtable source = new Hashtable(); source["boolValue"] = false; *************** *** 197,201 **** { BaseBindingManager dbm = new BaseBindingManager(); ! ValidationErrors errors = new ValidationErrors(); Inventor st = new Inventor("Nikola Tesla", new DateTime(1856, 7, 9), "Serbian"); st.Inventions = new string[] {"Invention One", "Invention Two"}; --- 197,201 ---- { BaseBindingManager dbm = new BaseBindingManager(); ! IValidationErrors errors = new ValidationErrors(); Inventor st = new Inventor("Nikola Tesla", new DateTime(1856, 7, 9), "Serbian"); st.Inventions = new string[] {"Invention One", "Invention Two"}; |
From: Mark P. <mar...@us...> - 2008-02-04 22:49:46
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10006 Added Files: SQLiteTests.cs Log Message: add misc missing files --- NEW FILE: SQLiteTests.cs --- (This appears to be a binary file; contents omitted.) |
From: Mark P. <mar...@us...> - 2008-02-04 22:47:51
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9234 Added Files: DbProviderTemplateTests.cs dbProviderTemplateTests.xml Log Message: add misc missing files --- NEW FILE: DbProviderTemplateTests.cs --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dbProviderTemplateTests.xml --- <?xml version="1.0" encoding="utf-8" ?> <objects xmlns='http://www.springframework.net' xmlns:db="http://www.springframework.net/database"> <!-- <db:provider id="DbProvider" provider="SqlServer-1.1" connectionString="Data Source=(local);Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> --> <object id="DbProvider" type="Spring.Data.Common.UserCredentialsDbProvider, Spring.Data"> <property name="TargetDbProvider" ref="targetDbProvider"/> <property name="Username" value="User ID=defaultName"/> <property name="Password" value="Password=defaultPass"/> </object> <db:provider id="targetDbProvider" provider="SqlServer-2.0" connectionString="Data Source=MARKT60\SQL2005;Trusted_Connection=False"/> <!-- <db:provider id="DbProvider" provider="OracleODP-2.0" connectionString="Data Source=AGORA; User Id=agora_user; Password=welcome_bad"/> --> <object id="SessionFactory" type="Spring.Data.NHibernate.LocalSessionFactoryObject, Spring.Data.NHibernate"> <property name="DbProvider" ref="DbProvider"/> <property name="MappingResources"> <list> <value>assembly://Spring.Data.NHibernate.Integration.Tests/Spring.Data.NHibernate/TestObject.hbm.xml</value> </list> </property> <!-- <property name="MappingAssemblies"> <list> <value>Spring.Data.NHibernate.Integration.Tests</value> </list> </property> --> <property name="HibernateProperties"> <dictionary> <!-- <entry key="hibernate.connection.provider" value="NHibernate.Connection.DriverConnectionProvider"/> <entry key="hibernate.dialect" value="NHibernate.Dialect.Oracle9Dialect"/> --> <entry key="hibernate.dialect" value="NHibernate.Dialect.MsSql2000Dialect"/> <entry key="hibernate.connection.driver_class" value="NHibernate.Driver.SqlClientDriver"/> </dictionary> </property> </object> <!-- <object id="nativeNHTestObjectDao" type="Spring.Data.NHibernate.NativeNHTestObjectDao, Spring.Data.NHibernate.Integration.Tests"> <property name="SessionFactory" ref="SessionFactory"/> </object> <object id="NHTestObjectDao" type="Spring.Data.NHibernate.NHTestObjectDao, Spring.Data.NHibernate.Integration.Tests"> <property name="SessionFactory" ref="SessionFactory"/> </object> --> <object id="hibernateTransactionManager" type="Spring.Data.NHibernate.HibernateTransactionManager, Spring.Data.NHibernate"> <property name="DbProvider" ref="DbProvider"/> <property name="sessionFactory" ref="SessionFactory"/> </object> <!-- Transactional Proxy for TestObjectDao using the TransactionProxyFactory --> <object id="testObjectDaoTransProxy" type="Spring.Transaction.Interceptor.TransactionProxyFactoryObject, Spring.Data"> <foo/> <property name="PlatformTransactionManager" ref="hibernateTransactionManager"/> <property name="Target"> <object type="Spring.Data.NHibernate.NHTestObjectDao, Spring.Data.NHibernate.Integration.Tests"> <property name="SessionFactory" ref="SessionFactory"/> </object> </property> <property name="ProxyInterfaces" value="Spring.Data.NHibernate.ITestObjectDao"/> <property name="TransactionAttributes"> <name-values> <add key="Create*" value="PROPAGATION_REQUIRED"/> <add key="Delete*" value="PROPAGATION_REQUIRED"/> <add key="Update*" value="PROPAGATION_REQUIRED"/> <add key="Find*" value="PROPAGATION_REQUIRED"/> </name-values> </property> </object> </objects> |
From: Mark P. <mar...@us...> - 2008-02-04 22:45:04
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8028 Added Files: AdoTemplatePerformanceTests.cs NestedTxScopeTests.cs Log Message: add misc missing files --- NEW FILE: NestedTxScopeTests.cs --- (This appears to be a binary file; contents omitted.) --- NEW FILE: AdoTemplatePerformanceTests.cs --- (This appears to be a binary file; contents omitted.) |
From: Mark P. <mar...@us...> - 2008-02-04 22:44:32
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Xml In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv8002 Added Files: XmlObjectDefinitionStoreException.cs Log Message: (Partial Fix) SPRNET-867 - Add line number to top level error message when there are XML parsing errors. --- NEW FILE: XmlObjectDefinitionStoreException.cs --- using System; using System.Runtime.Serialization; using System.Xml; namespace Spring.Objects.Factory.Xml { /// <summary> /// XML-specific ObjectDefinitionStoreException subclass that wraps a XmlException, which /// contains information about the error location. /// </summary> [Serializable] public class XmlObjectDefinitionStoreException : ObjectDefinitionStoreException { #region Required for Standards Compliance /// <summary> /// Initializes a new instance of the <see cref="XmlObjectDefinitionStoreException"/> class. /// </summary> public XmlObjectDefinitionStoreException() { } /// <summary> /// Creates a new instance of the XmlObjectDefinitionStoreException class. /// </summary> /// <param name="message"> /// A message about the exception. /// </param> public XmlObjectDefinitionStoreException(string message) : base(message) { } /// <summary> /// Creates a new instance of the XmlObjectDefinitionStoreException class. /// </summary> /// <param name="message"> /// A message about the exception. /// </param> /// <param name="rootCause"> /// The root exception that is being wrapped. /// </param> public XmlObjectDefinitionStoreException(string message, Exception rootCause) : base(message, rootCause) { } /// <summary> /// Creates a new instance of the XmlObjectDefinitionStoreException class. /// </summary> /// <param name="info"> /// The <see cref="System.Runtime.Serialization.SerializationInfo"/> /// that holds the serialized object data about the exception being thrown. /// </param> /// <param name="context"> /// The <see cref="System.Runtime.Serialization.StreamingContext"/> /// that contains contextual information about the source or destination. /// </param> protected XmlObjectDefinitionStoreException( SerializationInfo info, StreamingContext context) : base(info, context) { } #endregion /// <summary> /// Initializes a new instance of the <see cref="XmlObjectDefinitionStoreException"/> class. /// </summary> /// <param name="resourceDescription">The description of the resource that the object definition came from</param> /// <param name="msg">The detail message (used as exception message as-is).</param> /// <param name="cause">The XmlException root cause.</param> public XmlObjectDefinitionStoreException(string resourceDescription, string msg, XmlException cause) : base(resourceDescription, msg, cause) { } /// <summary> /// Gets the line number in the XML resource that failed. /// </summary> /// <value>The line number if available (in case of a XmlException); -1 else.</value> public int LineNumber { get { XmlException cause = InnerException as XmlException; if (cause != null) { return (cause.LineNumber); } else { return -1; } } } /// <summary> /// Gets the line position in the XML resource that failed. /// </summary> /// <value>The line position if available (in case of a XmlException); -1 else.</value> public int LinePosition { get { XmlException cause = InnerException as XmlException; if (cause != null) { return (cause.LinePosition); } else { return -1; } } } } } |
From: Mark P. <mar...@us...> - 2008-02-04 22:44:15
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Objects/Factory/Xml In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7943 Modified Files: ReadOnlyXmlTestResource.cs XmlObjectFactoryTests.cs Log Message: (Partial Fix) SPRNET-867 - Add line number to top level error message when there are XML parsing errors. Index: XmlObjectFactoryTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Objects/Factory/Xml/XmlObjectFactoryTests.cs,v retrieving revision 1.78 retrieving revision 1.79 diff -C2 -d -r1.78 -r1.79 *** XmlObjectFactoryTests.cs 8 Aug 2007 17:49:04 -0000 1.78 --- XmlObjectFactoryTests.cs 4 Feb 2008 22:44:11 -0000 1.79 *************** *** 965,986 **** [Test] - [ExpectedException(typeof(ObjectDefinitionStoreException))] public void InvalidXmlFile() { DefaultListableObjectFactory xof = new DefaultListableObjectFactory(); XmlObjectDefinitionReader reader = new XmlObjectDefinitionReader(xof); ! // should be validating by default... ! reader.LoadObjectDefinitions( ! new ReadOnlyXmlTestResource("invalid.xml", GetType())); } [Test] - [ExpectedException(typeof(ObjectDefinitionStoreException))] public void DefaultXmlResolverIsUsedIfNullSuppliedOrSet() { DefaultListableObjectFactory xof = new DefaultListableObjectFactory(); XmlObjectDefinitionReader reader = new XmlObjectDefinitionReader(xof, null); ! reader.LoadObjectDefinitions( ! new ReadOnlyXmlTestResource("invalid.xml", GetType())); } --- 965,1008 ---- [Test] public void InvalidXmlFile() { DefaultListableObjectFactory xof = new DefaultListableObjectFactory(); XmlObjectDefinitionReader reader = new XmlObjectDefinitionReader(xof); ! try ! { ! reader.LoadObjectDefinitions(new ReadOnlyXmlTestResource("invalid.xml", GetType())); ! Assert.Fail("Should have thrown XmlObjectDefinitionStoreException"); ! } ! #if !NET_1_0 ! catch (XmlObjectDefinitionStoreException e) ! { ! Assert.AreEqual(0, e.Message.IndexOf("Line 21 in XML document")); ! } ! #else ! catch (XmlObjectDefinitionStoreException) ! {} ! #endif } [Test] public void DefaultXmlResolverIsUsedIfNullSuppliedOrSet() { DefaultListableObjectFactory xof = new DefaultListableObjectFactory(); XmlObjectDefinitionReader reader = new XmlObjectDefinitionReader(xof, null); ! try ! { ! reader.LoadObjectDefinitions(new ReadOnlyXmlTestResource("invalid.xml", GetType())); ! Assert.Fail("Should have thrown XmlObjectDefinitionStoreException"); ! } ! #if !NET_1_0 ! catch (XmlObjectDefinitionStoreException e) ! { ! Assert.AreEqual(0, e.Message.IndexOf("Line 21 in XML document")); ! } ! #else ! catch (XmlObjectDefinitionStoreException) ! {} ! #endif ! } Index: ReadOnlyXmlTestResource.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Objects/Factory/Xml/ReadOnlyXmlTestResource.cs,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ReadOnlyXmlTestResource.cs 8 Aug 2007 17:49:04 -0000 1.10 --- ReadOnlyXmlTestResource.cs 4 Feb 2008 22:44:11 -0000 1.11 *************** *** 136,139 **** --- 136,144 ---- } } + + public override string ToString() + { + return Description; + } } } |
From: Mark P. <mar...@us...> - 2008-02-04 22:44:07
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7587 Modified Files: ObjectDefinitionStoreException.cs Log Message: (Partial Fix) SPRNET-867 - Add line number to top level error message when there are XML parsing errors. Index: ObjectDefinitionStoreException.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/ObjectDefinitionStoreException.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ObjectDefinitionStoreException.cs 8 Aug 2007 17:47:13 -0000 1.11 --- ObjectDefinitionStoreException.cs 4 Feb 2008 22:44:03 -0000 1.12 *************** *** 69,75 **** /// Creates a new instance of the ObjectDefinitionStoreException class. /// </summary> ! /// <param name="resourceDescription"> ! /// The description of the resource associated with the object. ! /// </param> /// <param name="name"> /// The name of the object that triggered the exception. --- 69,75 ---- /// Creates a new instance of the ObjectDefinitionStoreException class. /// </summary> ! /// <param name="resourceDescription"> ! /// The description of the resource that the object definition came from ! /// </param> /// <param name="name"> /// The name of the object that triggered the exception. *************** *** 84,87 **** --- 84,101 ---- } + /// <summary> + /// Initializes a new instance of the <see cref="ObjectDefinitionStoreException"/> class. + /// </summary> + /// <param name="resourceDescription"> + /// The description of the resource that the object definition came from + /// </param> + /// <param name="msg">The detail message (used as exception message as-is)</param> + /// <param name="cause">The root cause. (may be <code>null</code></param> + public ObjectDefinitionStoreException(string resourceDescription, string msg, Exception cause) + : this(msg, cause) + { + _resourceDescription = resourceDescription; + } + /// <summary> /// Creates a new instance of the ObjectDefinitionStoreException class. *************** *** 135,141 **** /// Creates a new instance of the ObjectDefinitionStoreException class. /// </summary> ! /// <param name="resourceDescription"> ! /// The description of the resource associated with the object. ! /// </param> /// <param name="message"> /// A message about the exception. --- 149,155 ---- /// Creates a new instance of the ObjectDefinitionStoreException class. /// </summary> ! /// <param name="resourceDescription"> ! /// The description of the resource that the object definition came from ! /// </param> /// <param name="message"> /// A message about the exception. *************** *** 234,239 **** } ! private string _resourceDescription = string.Empty; ! private string _objectName = string.Empty; } } \ No newline at end of file --- 248,260 ---- } ! /// <summary> ! /// The description of the resource associated with the object ! /// </summary> ! protected string _resourceDescription = string.Empty; ! ! /// <summary> ! /// The name of the object that trigger the exception. ! /// </summary> ! protected string _objectName = string.Empty; } } \ No newline at end of file |
From: Mark P. <mar...@us...> - 2008-02-04 22:44:07
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Xml In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7587/Xml Modified Files: XmlObjectDefinitionReader.cs Log Message: (Partial Fix) SPRNET-867 - Add line number to top level error message when there are XML parsing errors. Index: XmlObjectDefinitionReader.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Xml/XmlObjectDefinitionReader.cs,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** XmlObjectDefinitionReader.cs 27 Aug 2007 13:57:43 -0000 1.32 --- XmlObjectDefinitionReader.cs 4 Feb 2008 22:44:03 -0000 1.33 *************** *** 25,29 **** using System.Xml; using System.Xml.Schema; - using Spring.Core; using Spring.Core.IO; using Spring.Objects.Factory.Support; --- 25,28 ---- *************** *** 239,249 **** catch (XmlException ex) { ! throw new ObjectDefinitionStoreException( ! "XmlException parsing XML document from " + resource.Description, ex); } catch (Exception ex) { ! throw new ObjectDefinitionStoreException( ! "Unexpected exception parsing XML document from " + resource.Description, ex); } } --- 238,248 ---- catch (XmlException ex) { ! throw new XmlObjectDefinitionStoreException(resource.Description, ! "Line " + ex.LineNumber + " in XML document from " + ! resource + " is invalid. " + ex.Message, ex); } catch (Exception ex) { ! throw new ObjectDefinitionStoreException("Unexpected exception parsing XML document from " + resource.Description + "Inner exception message= " + ex.Message, ex); } } *************** *** 258,262 **** if (args.Severity == XmlSeverityType.Error) { ! throw new XmlException(args.Message, args.Exception); } else --- 257,265 ---- if (args.Severity == XmlSeverityType.Error) { ! #if !NET_1_0 ! throw new XmlException(args.Message, args.Exception, args.Exception.LineNumber, args.Exception.LinePosition); ! #else ! throw new XmlException(args.Message, args.Exception); ! #endif } else |
From: Mark P. <mar...@us...> - 2008-02-04 22:44:07
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Support In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv7587/Support Modified Files: AbstractAutowireCapableObjectFactory.cs Log Message: (Partial Fix) SPRNET-867 - Add line number to top level error message when there are XML parsing errors. Index: AbstractAutowireCapableObjectFactory.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Objects/Factory/Support/AbstractAutowireCapableObjectFactory.cs,v retrieving revision 1.83 retrieving revision 1.84 diff -C2 -d -r1.83 -r1.84 *** AbstractAutowireCapableObjectFactory.cs 5 Dec 2007 00:28:04 -0000 1.83 --- AbstractAutowireCapableObjectFactory.cs 4 Feb 2008 22:44:03 -0000 1.84 *************** *** 885,894 **** instanceWrapper = InstantiateUsingFactoryMethod(name, definition, arguments); } ! //Handle case when arguments are passed in explicitly. else if (arguments != null && arguments.Length > 0) { instanceWrapper = AutowireConstructor(name, definition, arguments); } ! else if (definition.ResolvedAutowireMode == AutoWiringMode.Constructor || definition.HasConstructorArgumentValues) { instanceWrapper = AutowireConstructor(name, definition); --- 885,895 ---- instanceWrapper = InstantiateUsingFactoryMethod(name, definition, arguments); } ! //Handle case when arguments are passed in explicitly. else if (arguments != null && arguments.Length > 0) { instanceWrapper = AutowireConstructor(name, definition, arguments); } ! else if (definition.ResolvedAutowireMode == AutoWiringMode.Constructor || ! definition.HasConstructorArgumentValues) { instanceWrapper = AutowireConstructor(name, definition); |
From: Mark P. <mar...@us...> - 2008-02-04 22:43:38
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/src/Spring/Spring.Core Modified Files: Spring.Core.2002.csproj Spring.Core.2003.csproj Spring.Core.2005.csproj Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.Core.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Spring.Core.2005.csproj,v retrieving revision 1.113 retrieving revision 1.114 diff -C2 -d -r1.113 -r1.114 *** Spring.Core.2005.csproj 3 Dec 2007 09:07:18 -0000 1.113 --- Spring.Core.2005.csproj 4 Feb 2008 22:42:49 -0000 1.114 *************** *** 565,568 **** --- 565,569 ---- <Compile Include="Objects\Factory\Xml\ObjectDefinitionParserHelper.cs" /> <Compile Include="Objects\Factory\Xml\ParserContext.cs" /> + <Compile Include="Objects\Factory\Xml\XmlObjectDefinitionStoreException.cs" /> <Compile Include="Objects\Factory\Xml\XmlReaderContext.cs" /> <Compile Include="Objects\FatalObjectException.cs" /> Index: Spring.Core.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Spring.Core.2003.csproj,v retrieving revision 1.53 retrieving revision 1.54 diff -C2 -d -r1.53 -r1.54 *** Spring.Core.2003.csproj 3 Dec 2007 09:07:18 -0000 1.53 --- Spring.Core.2003.csproj 4 Feb 2008 22:42:49 -0000 1.54 *************** *** 1955,1958 **** --- 1955,1963 ---- /> <File + RelPath = "Objects\Factory\Xml\XmlObjectDefinitionStoreException.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Objects\Factory\Xml\XmlObjectFactory.cs" SubType = "Code" Index: Spring.Core.2002.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Spring.Core.2002.csproj,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** Spring.Core.2002.csproj 29 Jan 2008 18:24:58 -0000 1.14 --- Spring.Core.2002.csproj 4 Feb 2008 22:42:49 -0000 1.15 *************** *** 1936,1939 **** --- 1936,1944 ---- /> <File + RelPath = "Objects\Factory\Xml\XmlObjectDefinitionStoreException.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Objects\Factory\Xml\XmlObjectFactory.cs" SubType = "Code" |
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate Modified Files: TemplateTests.cs TestObject.cs TestObject.hbm.xml templateTests.xml Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: TestObject.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate/TestObject.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestObject.cs 31 May 2007 20:25:14 -0000 1.1 --- TestObject.cs 4 Feb 2008 22:42:50 -0000 1.2 *************** *** 49,53 **** #region Properties ! public int Age { get { return age; } --- 49,53 ---- #region Properties ! public virtual int Age { get { return age; } *************** *** 55,59 **** } ! public string Name { get { return name; } --- 55,59 ---- } ! public virtual string Name { get { return name; } *************** *** 61,65 **** } ! public int ObjectNumber { get { return objectNumber; } --- 61,65 ---- } ! public virtual int ObjectNumber { get { return objectNumber; } Index: TemplateTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate/TemplateTests.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TemplateTests.cs 31 May 2007 20:25:14 -0000 1.1 --- TemplateTests.cs 4 Feb 2008 22:42:50 -0000 1.2 *************** *** 29,33 **** --- 29,35 ---- using Spring.Context.Support; using Spring.Data.Common; + using Spring.Data.Config; using Spring.Data.Support; + using Spring.Objects.Factory.Xml; using Spring.Transaction; using Spring.Transaction.Support; *************** *** 77,80 **** --- 79,83 ---- public void SetUp() { + //NamespaceParserRegistry.RegisterParser(typeof(DatabaseNamespaceParser)); BasicConfigurator.Configure(); ctx = Index: templateTests.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate/templateTests.xml,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** templateTests.xml 29 Jan 2008 20:27:41 -0000 1.4 --- templateTests.xml 4 Feb 2008 22:42:50 -0000 1.5 *************** *** 1,20 **** <?xml version="1.0" encoding="utf-8" ?> <objects xmlns='http://www.springframework.net' ! xmlns:db="http://www.springframework.net/database"> ! <!-- ! <db:provider id="DbProvider" provider="SqlServer-1.1" connectionString="Data Source=(local);Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> <db:provider id="DbProvider" provider="OracleODP-2.0" connectionString="Data Source=AGORA; User Id=agora_user; Password=welcome_bad"/> --> ! <db:provider id="DbProvider" provider="System.Data.SqlClient" connectionString="Data Source=MARKT60\SQL2005;Initial Catalog=Spring;User ID=springqa; Password=springqa"/> ! <object id="SessionFactory" type="Spring.Data.NHibernate.LocalSessionFactoryObject, Spring.Data.NHibernate"> <!-- TODO Provide dedicated NHibernate Schema --> <property name="DbProvider" ref="DbProvider"/> --- 1,25 ---- <?xml version="1.0" encoding="utf-8" ?> <objects xmlns='http://www.springframework.net' ! xmlns:db="http://www.springframework.net/database"> ! ! <db:provider id="DbProvider" provider="SqlServer-1.1" + connectionString="Data Source=MARKT60\SQL2005;Initial Catalog=Spring;User ID=springqa; Password=springqa"/> + <!-- connectionString="Data Source=(local);Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> + --> + <!-- <db:provider id="DbProvider" provider="OracleODP-2.0" connectionString="Data Source=AGORA; User Id=agora_user; Password=welcome_bad"/> --> ! <!-- <db:provider id="DbProvider" provider="System.Data.SqlClient" connectionString="Data Source=MARKT60\SQL2005;Initial Catalog=Spring;User ID=springqa; Password=springqa"/> + --> ! <object id="SessionFactory" type="Spring.Data.NHibernate.LocalSessionFactoryObject, Spring.Data.NHibernate12"> <!-- TODO Provide dedicated NHibernate Schema --> <property name="DbProvider" ref="DbProvider"/> *************** *** 63,67 **** <object id="hibernateTransactionManager" ! type="Spring.Data.NHibernate.HibernateTransactionManager, Spring.Data.NHibernate"> <property name="DbProvider" ref="DbProvider"/> --- 68,72 ---- <object id="hibernateTransactionManager" ! type="Spring.Data.NHibernate.HibernateTransactionManager, Spring.Data.NHibernate12"> <property name="DbProvider" ref="DbProvider"/> Index: TestObject.hbm.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Data/NHibernate/TestObject.hbm.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TestObject.hbm.xml 31 May 2007 20:25:14 -0000 1.1 --- TestObject.hbm.xml 4 Feb 2008 22:42:50 -0000 1.2 *************** *** 1,4 **** <?xml version="1.0" encoding="utf-8" ?> ! <hibernate-mapping xmlns="urn:nhibernate-mapping-2.0"> <class name="Spring.Data.NHibernate.TestObject, Spring.Data.NHibernate.Integration.Tests" table="TestObjects"> <id name="ObjectNumber" column="TestObjectNo" type="Int32"> --- 1,4 ---- <?xml version="1.0" encoding="utf-8" ?> ! <hibernate-mapping xmlns="urn:nhibernate-mapping-2.2"> <class name="Spring.Data.NHibernate.TestObject, Spring.Data.NHibernate.Integration.Tests" table="TestObjects"> <id name="ObjectNumber" column="TestObjectNo" type="Int32"> |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/lib/NHibernate12/net/1.1 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/lib/NHibernate12/net/1.1 Added Files: Castle.DynamicProxy.dll HashCodeProvider.dll Iesi.Collections.dll NHibernate.dll log4net.dll Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 --- NEW FILE: NHibernate.dll --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Iesi.Collections.dll --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Castle.DynamicProxy.dll --- (This appears to be a binary file; contents omitted.) --- NEW FILE: HashCodeProvider.dll --- (This appears to be a binary file; contents omitted.) --- NEW FILE: log4net.dll --- (This appears to be a binary file; contents omitted.) |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate12 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/src/Spring/Spring.Data.NHibernate12 Modified Files: Spring.Data.NHibernate12.build Added Files: Spring.Data.NHibernate12.2003.csproj Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.Data.NHibernate12.build =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate12/Spring.Data.NHibernate12.build,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Spring.Data.NHibernate12.build 3 Oct 2007 05:02:49 -0000 1.3 --- Spring.Data.NHibernate12.build 4 Feb 2008 22:42:49 -0000 1.4 *************** *** 26,29 **** --- 26,30 ---- <exclude name="../Spring.Data.NHibernate/Data/**/LocalSessionFactoryObject.cs" /> <exclude name="../Spring.Data.NHibernate/Data/**/HibernateAccessor.cs" /> + <exclude name="./Data/NHibernate/Generic/*.cs" if="${nant.settings.currentframework == 'net-1.1'}"/> <include name="../CommonAssemblyInfo.cs" /> </sources> --- NEW FILE: Spring.Data.NHibernate12.2003.csproj --- <VisualStudioProject> <CSHARP ProjectType = "Local" ProductVersion = "7.10.6030" SchemaVersion = "2.0" ProjectGuid = "{2E12AE3E-5690-46A5-9F89-80F1D3004ADB}" > <Build> <Settings ApplicationIcon = "" AssemblyKeyContainerName = "" AssemblyName = "Spring.Data.NHibernate12" AssemblyOriginatorKeyFile = "" DefaultClientScript = "JScript" DefaultHTMLPageLayout = "Grid" DefaultTargetSchema = "IE50" DelaySign = "false" OutputType = "Library" PreBuildEvent = "" PostBuildEvent = "" RootNamespace = "Spring.Data.NHibernate12" RunPostBuildEvent = "OnBuildSuccess" StartupObject = "" > <Config Name = "Debug" AllowUnsafeBlocks = "false" BaseAddress = "285212672" CheckForOverflowUnderflow = "false" ConfigurationOverrideFile = "" DefineConstants = "DEBUG;TRACE;NET_1_1" DocumentationFile = "" DebugSymbols = "true" FileAlignment = "4096" IncrementalBuild = "false" NoStdLib = "false" NoWarn = "" Optimize = "false" OutputPath = "bin\Debug\" RegisterForComInterop = "false" RemoveIntegerChecks = "false" TreatWarningsAsErrors = "false" WarningLevel = "4" /> <Config Name = "Release" AllowUnsafeBlocks = "false" BaseAddress = "285212672" CheckForOverflowUnderflow = "false" ConfigurationOverrideFile = "" DefineConstants = "TRACE" DocumentationFile = "" DebugSymbols = "false" FileAlignment = "4096" IncrementalBuild = "false" NoStdLib = "false" NoWarn = "" Optimize = "true" OutputPath = "bin\Release\" RegisterForComInterop = "false" RemoveIntegerChecks = "false" TreatWarningsAsErrors = "false" WarningLevel = "4" /> </Settings> <References> <Reference Name = "System" AssemblyName = "System" HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.dll" /> <Reference Name = "System.Data" AssemblyName = "System.Data" HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Data.dll" /> <Reference Name = "System.XML" AssemblyName = "System.Xml" HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.XML.dll" /> <Reference Name = "NHibernate" AssemblyName = "NHibernate" HintPath = "..\..\..\lib\NHibernate12\net\1.1\NHibernate.dll" /> <Reference Name = "Castle.DynamicProxy" AssemblyName = "Castle.DynamicProxy" HintPath = "..\..\..\lib\NHibernate12\net\1.1\Castle.DynamicProxy.dll" /> <Reference Name = "Iesi.Collections" AssemblyName = "Iesi.Collections" HintPath = "..\..\..\lib\NHibernate12\net\1.1\Iesi.Collections.dll" /> <Reference Name = "log4net" AssemblyName = "log4net" HintPath = "..\..\..\lib\NHibernate12\net\1.1\log4net.dll" /> <Reference Name = "Spring.Aop.2003" Project = "{3A3A4E65-45A6-4B20-B460-0BEDC302C02C}" Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" /> <Reference Name = "Spring.Core.2003" Project = "{710961A3-0DF4-49E4-A26E-F5B9C044AC84}" Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" /> <Reference Name = "Spring.Data.2003" Project = "{E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}" Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" /> <Reference Name = "Common.Logging" AssemblyName = "Common.Logging" HintPath = "..\..\..\lib\Net\1.1\Common.Logging.dll" /> <Reference Name = "HashCodeProvider" AssemblyName = "HashCodeProvider" HintPath = "..\..\..\lib\NHibernate12\net\1.1\HashCodeProvider.dll" /> <Reference Name = "System.Web" AssemblyName = "System.Web" HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Web.dll" /> </References> </Build> <Files> <Include> <File RelPath = "AssemblyInfo.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "CommonAssemblyInfo.cs" Link = "..\CommonAssemblyInfo.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateAccessor.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateAdoException.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateAdoException.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateDelegate.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateDelegate.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateObjectRetrievalFailureException.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateObjectRetrievalFailureException.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateOptimisticLockingFailureException.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateOptimisticLockingFailureException.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateQueryException.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateQueryException.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateSystemException.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateSystemException.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateTemplate.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateTemplate.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\HibernateTransactionManager.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\HibernateTransactionManager.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\ICommonHibernateOperations.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\ICommonHibernateOperations.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\IHibernateCallback.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\IHibernateCallback.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\IHibernateOperations.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\IHibernateOperations.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\LocalSessionFactoryObject.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\SessionFactoryUtils.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\SessionFactoryUtils.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\SessionHolder.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\SessionHolder.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\SpringSessionContext.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\SpringSessionSynchronization.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\TemplateFlushMode.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\TemplateFlushMode.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\Support\ConfigSectionSessionScopeSettings.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\Support\ConfigSectionSessionScopeSettings.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\Support\dontdelete.txt" BuildAction = "Content" /> <File RelPath = "Data\NHibernate\Support\HibernateDaoSupport.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\Support\HibernateDaoSupport.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\Support\OpenSessionInViewModule.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\Support\OpenSessionInViewModule.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\Support\SessionScope.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\Support\SessionScope.cs" SubType = "Code" BuildAction = "Compile" /> <File RelPath = "Data\NHibernate\Support\SessionScopeSettings.cs" Link = "..\Spring.Data.NHibernate\Data\NHibernate\Support\SessionScopeSettings.cs" SubType = "Code" BuildAction = "Compile" /> </Include> </Files> </CSHARP> </VisualStudioProject> |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/test/Spring/Spring.Data.NHibernate.Integration.Tests Modified Files: Spring.Data.NHibernate.Integration.Tests.2003.csproj Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.Data.NHibernate.Integration.Tests.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Spring.Data.NHibernate.Integration.Tests.2003.csproj,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Spring.Data.NHibernate.Integration.Tests.2003.csproj 6 Dec 2007 23:02:24 -0000 1.6 --- Spring.Data.NHibernate.Integration.Tests.2003.csproj 4 Feb 2008 22:42:50 -0000 1.7 *************** *** 91,99 **** /> <Reference - Name = "Spring.Data.NHibernate.2003" - Project = "{E8467024-8AE3-44A4-BAAD-1D78747EC7BD}" - Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" - /> - <Reference Name = "nunit.framework" AssemblyName = "nunit.framework" --- 91,94 ---- *************** *** 103,122 **** Name = "NHibernate" AssemblyName = "NHibernate" ! HintPath = "..\..\..\lib\NHibernate10\net\1.1\NHibernate.dll" /> <Reference Name = "Castle.DynamicProxy" AssemblyName = "Castle.DynamicProxy" ! HintPath = "..\..\..\lib\NHibernate10\net\1.1\Castle.DynamicProxy.dll" /> <Reference Name = "Iesi.Collections" AssemblyName = "Iesi.Collections" ! HintPath = "..\..\..\lib\NHibernate10\net\1.1\Iesi.Collections.dll" /> <Reference Name = "log4net" AssemblyName = "log4net" ! HintPath = "..\..\..\lib\NHibernate10\net\1.1\log4net.dll" /> </References> --- 98,132 ---- Name = "NHibernate" AssemblyName = "NHibernate" ! HintPath = "..\..\..\lib\NHibernate12\net\1.1\NHibernate.dll" /> <Reference Name = "Castle.DynamicProxy" AssemblyName = "Castle.DynamicProxy" ! HintPath = "..\..\..\lib\NHibernate12\net\1.1\Castle.DynamicProxy.dll" /> <Reference Name = "Iesi.Collections" AssemblyName = "Iesi.Collections" ! HintPath = "..\..\..\lib\NHibernate12\net\1.1\Iesi.Collections.dll" /> <Reference Name = "log4net" AssemblyName = "log4net" ! HintPath = "..\..\..\lib\NHibernate12\net\1.1\log4net.dll" ! /> ! <Reference ! Name = "Common.Logging.Log4Net" ! AssemblyName = "Common.Logging.Log4Net" ! HintPath = "..\..\..\lib\Net\1.1\Common.Logging.Log4Net.dll" ! /> ! <Reference ! Name = "Common.Logging" ! AssemblyName = "Common.Logging" ! HintPath = "..\..\..\lib\Net\1.1\Common.Logging.dll" ! /> ! <Reference ! Name = "Spring.Data.NHibernate12.2003" ! Project = "{2E12AE3E-5690-46A5-9F89-80F1D3004ADB}" ! Package = "{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" /> </References> *************** *** 131,135 **** <File RelPath = "Spring.Data.NHibernate.Integration.Tests.dll.config" ! BuildAction = "None" /> <File --- 141,145 ---- <File RelPath = "Spring.Data.NHibernate.Integration.Tests.dll.config" ! BuildAction = "Content" /> <File |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/lib/NHibernate12/net/2.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/lib/NHibernate12/net/2.0 Modified Files: Iesi.Collections.dll NHibernate.dll Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: NHibernate.dll =================================================================== RCS file: /cvsroot/springnet/Spring.Net/lib/NHibernate12/net/2.0/NHibernate.dll,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvspQdKjH and /tmp/cvswQwIEx differ Index: Iesi.Collections.dll =================================================================== RCS file: /cvsroot/springnet/Spring.Net/lib/NHibernate12/net/2.0/Iesi.Collections.dll,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 Binary files /tmp/cvslWMsh1 and /tmp/cvsZxWrKR differ |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/src/Spring/Spring.Data Modified Files: Spring.Data.2003.csproj Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.Data.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data/Spring.Data.2003.csproj,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -d -r1.28 -r1.29 *** Spring.Data.2003.csproj 7 Dec 2007 15:57:04 -0000 1.28 --- Spring.Data.2003.csproj 4 Feb 2008 22:42:49 -0000 1.29 *************** *** 399,402 **** --- 399,407 ---- /> <File + RelPath = "Data\Common\DelegatingDbProvider.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Data\Common\ErrorCodes.cs" SubType = "Code" *************** *** 434,437 **** --- 439,447 ---- /> <File + RelPath = "Data\Common\UserCredentialsDbProvider.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Data\Config\DatabaseNamespaceParser.cs" SubType = "Code" *************** *** 891,894 **** --- 901,909 ---- /> <File + RelPath = "Transaction\Interceptor\TransactionAttributeConverter.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Transaction\Interceptor\TransactionAttributeEditor.cs" SubType = "Code" |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:53
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/test/Spring/Spring.Core.Tests Modified Files: Spring.Core.Tests.2003.csproj Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.Core.Tests.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests/Spring.Core.Tests.2003.csproj,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** Spring.Core.Tests.2003.csproj 26 Nov 2007 14:16:29 -0000 1.39 --- Spring.Core.Tests.2003.csproj 4 Feb 2008 22:42:49 -0000 1.40 *************** *** 2,6 **** <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.3077" SchemaVersion = "2.0" ProjectGuid = "{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}" --- 2,6 ---- <CSHARP ProjectType = "Local" ! ProductVersion = "7.10.6030" SchemaVersion = "2.0" ProjectGuid = "{44B16BAA-6DF8-447C-9D7F-3AD3D854D904}" *************** *** 128,131 **** --- 128,136 ---- HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Runtime.Serialization.Formatters.Soap.dll" /> + <Reference + Name = "System.Windows.Forms" + AssemblyName = "System.Windows.Forms" + HintPath = "C:\WINDOWS\Microsoft.NET\Framework\v1.1.4322\System.Windows.Forms.dll" + /> </References> </Build> |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:52
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate/Data/NHibernate In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679/src/Spring/Spring.Data.NHibernate/Data/NHibernate Modified Files: LocalSessionFactoryObject.cs Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: LocalSessionFactoryObject.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Data.NHibernate/Data/NHibernate/LocalSessionFactoryObject.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** LocalSessionFactoryObject.cs 29 Jan 2008 19:48:45 -0000 1.4 --- LocalSessionFactoryObject.cs 4 Feb 2008 22:42:49 -0000 1.5 *************** *** 106,116 **** } ! /// <summary> /// Sets the hibernate configuration files to load, i.e. hibernate.cfg.xml. /// </summary> ! public string[] ConfigFilenames ! { ! set { configFilenames = value; } ! } /// <summary> --- 106,116 ---- } ! /// <summary> /// Sets the hibernate configuration files to load, i.e. hibernate.cfg.xml. /// </summary> ! public string[] ConfigFilenames ! { ! set { configFilenames = value; } ! } /// <summary> |
From: Mark P. <mar...@us...> - 2008-02-04 22:42:52
|
Update of /cvsroot/springnet/Spring.Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6679 Modified Files: Spring.Net.1.1.2003.sln Spring.build Log Message: SPRNET-866 - Support .NET 1.1 for NHibernate 1.2 SPRNET-809 - Update to NHibernate 1.2.1 Index: Spring.build =================================================================== RCS file: /cvsroot/springnet/Spring.Net/Spring.build,v retrieving revision 1.194 retrieving revision 1.195 diff -C2 -d -r1.194 -r1.195 *** Spring.build 6 Dec 2007 22:53:53 -0000 1.194 --- Spring.build 4 Feb 2008 22:42:48 -0000 1.195 *************** *** 161,164 **** --- 161,165 ---- <property name="current.package.dir" value="${package.dir}/${project::get-name()}"/> + <!-- for docs packaging MLP <property name="current.package.dir" value="l:/release/${project::get-name()}"/> *************** *** 300,304 **** <nant buildfile="src/Spring/Spring.Data/Spring.Data.build" target="build" if="${build-data}"/> <nant buildfile="src/Spring/Spring.Data.NHibernate/Spring.Data.NHibernate.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-1.1' or nant.settings.currentframework == 'net-2.0')}"/> ! <nant buildfile="src/Spring/Spring.Data.NHibernate12/Spring.Data.NHibernate12.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-2.0')}"/> <nant buildfile="src/Spring/Spring.Services/Spring.Services.build" target="build" if="${build-services}"/> <nant buildfile="src/Spring/Spring.Testing.NUnit/Spring.Testing.NUnit.build" target="build" if="${build-testing}"/> --- 301,305 ---- <nant buildfile="src/Spring/Spring.Data/Spring.Data.build" target="build" if="${build-data}"/> <nant buildfile="src/Spring/Spring.Data.NHibernate/Spring.Data.NHibernate.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-1.1' or nant.settings.currentframework == 'net-2.0')}"/> ! <nant buildfile="src/Spring/Spring.Data.NHibernate12/Spring.Data.NHibernate12.build" target="build" if="${build-data and (nant.settings.currentframework == 'net-1.1' or nant.settings.currentframework == 'net-2.0')}"/> <nant buildfile="src/Spring/Spring.Services/Spring.Services.build" target="build" if="${build-services}"/> <nant buildfile="src/Spring/Spring.Testing.NUnit/Spring.Testing.NUnit.build" target="build" if="${build-testing}"/> Index: Spring.Net.1.1.2003.sln =================================================================== RCS file: /cvsroot/springnet/Spring.Net/Spring.Net.1.1.2003.sln,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Spring.Net.1.1.2003.sln 25 Aug 2007 14:26:33 -0000 1.11 --- Spring.Net.1.1.2003.sln 4 Feb 2008 22:42:48 -0000 1.12 *************** *** 64,70 **** --- 64,76 ---- EndProjectSection EndProject + Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Spring.Data.NHibernate12.2003", "src\Spring\Spring.Data.NHibernate12\Spring.Data.NHibernate12.2003.csproj", "{2E12AE3E-5690-46A5-9F89-80F1D3004ADB}" + ProjectSection(ProjectDependencies) = postProject + EndProjectSection + EndProject Global GlobalSection(SolutionConfiguration) = preSolution + Debug = Debug Debug-1.1 = Debug-1.1 + Release = Release Release-1.1 = Release-1.1 EndGlobalSection *************** *** 72,139 **** --- 78,217 ---- EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution + {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug.ActiveCfg = Debug-1.1|.NET + {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug.Build.0 = Debug-1.1|.NET {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Debug-1.1.Build.0 = Debug-1.1|.NET + {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release.ActiveCfg = Release-1.1|.NET + {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release.Build.0 = Release-1.1|.NET {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release-1.1.ActiveCfg = Release-1.1|.NET {710961A3-0DF4-49E4-A26E-F5B9C044AC84}.Release-1.1.Build.0 = Release-1.1|.NET + {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug.ActiveCfg = Debug-1.1|.NET + {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug.Build.0 = Debug-1.1|.NET {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Debug-1.1.Build.0 = Debug-1.1|.NET + {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release.ActiveCfg = Release-1.1|.NET + {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release.Build.0 = Release-1.1|.NET {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release-1.1.ActiveCfg = Release-1.1|.NET {44B16BAA-6DF8-447C-9D7F-3AD3D854D904}.Release-1.1.Build.0 = Release-1.1|.NET + {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug.ActiveCfg = Debug-1.1|.NET + {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug.Build.0 = Debug-1.1|.NET {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Debug-1.1.Build.0 = Debug-1.1|.NET + {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release.ActiveCfg = Release-1.1|.NET + {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release.Build.0 = Release-1.1|.NET {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release-1.1.ActiveCfg = Release-1.1|.NET {3A3A4E65-45A6-4B20-B460-0BEDC302C02C}.Release-1.1.Build.0 = Release-1.1|.NET + {2111596A-0327-4C9D-8919-294FBD988A23}.Debug.ActiveCfg = Debug-1.1|.NET + {2111596A-0327-4C9D-8919-294FBD988A23}.Debug.Build.0 = Debug-1.1|.NET {2111596A-0327-4C9D-8919-294FBD988A23}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {2111596A-0327-4C9D-8919-294FBD988A23}.Debug-1.1.Build.0 = Debug-1.1|.NET + {2111596A-0327-4C9D-8919-294FBD988A23}.Release.ActiveCfg = Release-1.1|.NET + {2111596A-0327-4C9D-8919-294FBD988A23}.Release.Build.0 = Release-1.1|.NET {2111596A-0327-4C9D-8919-294FBD988A23}.Release-1.1.ActiveCfg = Release-1.1|.NET {2111596A-0327-4C9D-8919-294FBD988A23}.Release-1.1.Build.0 = Release-1.1|.NET + {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug.ActiveCfg = Debug-1.1|.NET + {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug.Build.0 = Debug-1.1|.NET {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {BA4789EB-281A-48EA-8763-28B9F0596A18}.Debug-1.1.Build.0 = Debug-1.1|.NET + {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release.ActiveCfg = Release-1.1|.NET + {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release.Build.0 = Release-1.1|.NET {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release-1.1.ActiveCfg = Release-1.1|.NET {BA4789EB-281A-48EA-8763-28B9F0596A18}.Release-1.1.Build.0 = Release-1.1|.NET + {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Debug.ActiveCfg = Debug-1.1|.NET + {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Debug.Build.0 = Debug-1.1|.NET {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Debug-1.1.Build.0 = Debug-1.1|.NET + {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Release.ActiveCfg = Release-1.1|.NET + {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Release.Build.0 = Release-1.1|.NET {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Release-1.1.ActiveCfg = Release-1.1|.NET {EB2587B7-8B26-4FBC-852A-4128D5CACAFC}.Release-1.1.Build.0 = Release-1.1|.NET + {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Debug.ActiveCfg = Debug-1.1|.NET + {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Debug.Build.0 = Debug-1.1|.NET {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Debug-1.1.Build.0 = Debug-1.1|.NET + {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Release.ActiveCfg = Release-1.1|.NET + {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Release.Build.0 = Release-1.1|.NET {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Release-1.1.ActiveCfg = Release-1.1|.NET {B58E34CF-6E70-481D-AC87-1BC2D13C21FB}.Release-1.1.Build.0 = Release-1.1|.NET + {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Debug.ActiveCfg = Debug-1.1|.NET + {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Debug.Build.0 = Debug-1.1|.NET {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Debug-1.1.Build.0 = Debug-1.1|.NET + {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Release.ActiveCfg = Release-1.1|.NET + {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Release.Build.0 = Release-1.1|.NET {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Release-1.1.ActiveCfg = Release-1.1|.NET {EB2687B7-8B26-4FBC-852A-4128D5CACAFC}.Release-1.1.Build.0 = Release-1.1|.NET + {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Debug.ActiveCfg = Debug-1.1|.NET + {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Debug.Build.0 = Debug-1.1|.NET {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Debug-1.1.Build.0 = Debug-1.1|.NET + {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Release.ActiveCfg = Release-1.1|.NET + {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Release.Build.0 = Release-1.1|.NET {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Release-1.1.ActiveCfg = Release-1.1|.NET {E10A3BED-795F-41CB-A4A8-8C4B342ACDDF}.Release-1.1.Build.0 = Release-1.1|.NET + {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Debug.ActiveCfg = Debug-1.1|.NET + {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Debug.Build.0 = Debug-1.1|.NET {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Debug-1.1.Build.0 = Debug-1.1|.NET + {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Release.ActiveCfg = Release-1.1|.NET + {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Release.Build.0 = Release-1.1|.NET {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Release-1.1.ActiveCfg = Release-1.1|.NET {C5585365-561C-4EC4-8956-87FFBD9AB1CD}.Release-1.1.Build.0 = Release-1.1|.NET + {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Debug.ActiveCfg = Debug-1.1|.NET + {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Debug.Build.0 = Debug-1.1|.NET {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Debug-1.1.Build.0 = Debug-1.1|.NET + {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Release.ActiveCfg = Release-1.1|.NET + {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Release.Build.0 = Release-1.1|.NET {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Release-1.1.ActiveCfg = Release-1.1|.NET {A9D3732A-D40B-4C35-80CE-9C4A53D2DEAD}.Release-1.1.Build.0 = Release-1.1|.NET + {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Debug.ActiveCfg = Debug-1.1|.NET + {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Debug.Build.0 = Debug-1.1|.NET {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Debug-1.1.Build.0 = Debug-1.1|.NET + {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Release.ActiveCfg = Release-1.1|.NET + {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Release.Build.0 = Release-1.1|.NET {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Release-1.1.ActiveCfg = Release-1.1|.NET {6B8639E3-88BB-4F7B-9F23-699E84C30D58}.Release-1.1.Build.0 = Release-1.1|.NET + {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Debug.ActiveCfg = Debug-1.1|.NET + {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Debug.Build.0 = Debug-1.1|.NET {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Debug-1.1.Build.0 = Debug-1.1|.NET + {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Release.ActiveCfg = Release-1.1|.NET + {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Release.Build.0 = Release-1.1|.NET {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Release-1.1.ActiveCfg = Release-1.1|.NET {E8467024-8AE3-44A4-BAAD-1D78747EC7BD}.Release-1.1.Build.0 = Release-1.1|.NET + {8DA67FF2-C473-4329-8FF6-3747182196D7}.Debug.ActiveCfg = Debug-1.1|.NET + {8DA67FF2-C473-4329-8FF6-3747182196D7}.Debug.Build.0 = Debug-1.1|.NET {8DA67FF2-C473-4329-8FF6-3747182196D7}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {8DA67FF2-C473-4329-8FF6-3747182196D7}.Debug-1.1.Build.0 = Debug-1.1|.NET + {8DA67FF2-C473-4329-8FF6-3747182196D7}.Release.ActiveCfg = Release-1.1|.NET + {8DA67FF2-C473-4329-8FF6-3747182196D7}.Release.Build.0 = Release-1.1|.NET {8DA67FF2-C473-4329-8FF6-3747182196D7}.Release-1.1.ActiveCfg = Release-1.1|.NET {8DA67FF2-C473-4329-8FF6-3747182196D7}.Release-1.1.Build.0 = Release-1.1|.NET + {8755D942-7828-4971-835B-37A5992C06C9}.Debug.ActiveCfg = Debug-1.1|.NET + {8755D942-7828-4971-835B-37A5992C06C9}.Debug.Build.0 = Debug-1.1|.NET {8755D942-7828-4971-835B-37A5992C06C9}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {8755D942-7828-4971-835B-37A5992C06C9}.Debug-1.1.Build.0 = Debug-1.1|.NET + {8755D942-7828-4971-835B-37A5992C06C9}.Release.ActiveCfg = Release-1.1|.NET + {8755D942-7828-4971-835B-37A5992C06C9}.Release.Build.0 = Release-1.1|.NET {8755D942-7828-4971-835B-37A5992C06C9}.Release-1.1.ActiveCfg = Release-1.1|.NET {8755D942-7828-4971-835B-37A5992C06C9}.Release-1.1.Build.0 = Release-1.1|.NET + {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Debug.ActiveCfg = Debug-1.1|.NET + {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Debug.Build.0 = Debug-1.1|.NET {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Debug-1.1.ActiveCfg = Debug-1.1|.NET {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Debug-1.1.Build.0 = Debug-1.1|.NET + {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Release.ActiveCfg = Release-1.1|.NET + {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Release.Build.0 = Release-1.1|.NET {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Release-1.1.ActiveCfg = Release-1.1|.NET {E2689B4A-A951-420E-A274-BE5EBCD5F8D8}.Release-1.1.Build.0 = Release-1.1|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Debug.ActiveCfg = Debug|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Debug.Build.0 = Debug|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Debug-1.1.ActiveCfg = Debug|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Debug-1.1.Build.0 = Debug|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Release.ActiveCfg = Release|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Release.Build.0 = Release|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Release-1.1.ActiveCfg = Release|.NET + {2E12AE3E-5690-46A5-9F89-80F1D3004ADB}.Release-1.1.Build.0 = Release|.NET EndGlobalSection GlobalSection(SolutionItems) = postSolution |
From: Erich E. <oak...@us...> - 2008-02-03 22:11:35
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DataBinding/EasyEmployeeInfo In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10673/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DataBinding/EasyEmployeeInfo Modified Files: Default.aspx Log Message: added SPRNET-799 Index: Default.aspx =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DataBinding/EasyEmployeeInfo/Default.aspx,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Default.aspx 14 Dec 2007 16:38:17 -0000 1.2 --- Default.aspx 3 Feb 2008 22:11:30 -0000 1.3 *************** *** 18,23 **** </p> <p> ! TODO: describe DataBindingPanel </p> <spring:DataBindingPanel ID="ctlDataBindingPanel" runat="server"> <table cellpadding="3" cellspacing="3" border="0"> --- 18,26 ---- </p> <p> ! By placing your controls within a DataBindingPanel, you can use additional attributes ! to specify binding information on your server controls. </p> + <spring:ValidationSummary ID="ctlErrorList" Provider="errors.summary" runat="server" /> + <spring:DataBindingPanel ID="ctlDataBindingPanel" runat="server"> <table cellpadding="3" cellspacing="3" border="0"> *************** *** 25,29 **** <td>Employee ID:</td> <td> ! <asp:TextBox ID="txtId" runat="server" BindingTarget="Employee.Id" /> <spring:ValidationError ID="ctlIdErrors" Provider="id.errors" runat="server" /> </td> --- 28,32 ---- <td>Employee ID:</td> <td> ! <asp:TextBox ID="txtId" runat="server" BindingTarget="Employee.Id" MessageId="ID has to be an integer" ErrorProviders="id.errors,errors.summary" /> <spring:ValidationError ID="ctlIdErrors" Provider="id.errors" runat="server" /> </td> *************** *** 40,44 **** <td>Date of Birth:</td> <td> ! <asp:TextBox ID="txtDOB" runat="server" BindingTarget="Employee.DateOfBirth"/> <spring:ValidationError ID="ctlDOBErrors" Provider="dob.errors" runat="server" /> </td> --- 43,47 ---- <td>Date of Birth:</td> <td> ! <asp:TextBox ID="txtDOB" runat="server" BindingTarget="Employee.DateOfBirth" MessageId="Invalid date value" ErrorProviders="errors.summary,dob.errors"/> <spring:ValidationError ID="ctlDOBErrors" Provider="dob.errors" runat="server" /> </td> *************** *** 60,64 **** <td>Salary:</td> <td> ! <asp:TextBox ID="txtSalary" runat="server" BindingTarget="Employee.Salary" BindingFormatter="theCurrencyFormatter" /> <spring:ValidationError ID="ctlSalaryErrors" Provider="salary.errors" runat="server" /> </td> --- 63,67 ---- <td>Salary:</td> <td> ! <asp:TextBox ID="txtSalary" runat="server" BindingTarget="Employee.Salary" BindingFormatter="theCurrencyFormatter" MessageId="Salary must be a valid currency value." ErrorProviders="errors.summary,salary.errors" /> <spring:ValidationError ID="ctlSalaryErrors" Provider="salary.errors" runat="server" /> </td> |
From: Erich E. <oak...@us...> - 2008-02-03 21:38:32
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30198/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld Modified Files: CustomControl.ascx Default.aspx Log Message: fix for SPRNET-794 Index: CustomControl.ascx =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld/CustomControl.ascx,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CustomControl.ascx 27 Mar 2007 11:31:38 -0000 1.2 --- CustomControl.ascx 3 Feb 2008 21:38:27 -0000 1.3 *************** *** 9,12 **** <p> The TextBox below has been filled in by typename using the <object name="System.Web.UI.WebControls.TextBox"> object definition: ! </p> ! <p><asp:TextBox runat="server" /></p> --- 9,19 ---- <p> The TextBox below has been filled in by typename using the <object name="System.Web.UI.WebControls.TextBox"> object definition: ! </p> ! <p><asp:TextBox runat="server" id="myTextBox"/></p> ! ! <p> ! Use a spring:Panel to selectively enable/disable automatic dependency injection: ! </p> ! <spring:Panel runat="server" ID="diContainer" suppressDependencyInjection="true" renderContainerTag="false"> ! <asp:TextBox runat="server" id="TextBox2"/> ! </spring:Panel> Index: Default.aspx =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/DI/HelloWorld/Default.aspx,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Default.aspx 23 Aug 2007 10:37:37 -0000 1.3 --- Default.aspx 3 Feb 2008 21:38:27 -0000 1.4 *************** *** 23,27 **** </p> <p> ! <ctl:CustomControl runat="server" /> </p> </form> --- 23,27 ---- </p> <p> ! <ctl:CustomControl runat="server" ID="myCustomControl" /> </p> </form> |
From: Erich E. <oak...@us...> - 2008-02-03 21:38:32
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/UI/Controls In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30198/src/Spring/Spring.Web/Web/UI/Controls Modified Files: Panel.cs Log Message: fix for SPRNET-794 Index: Panel.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/UI/Controls/Panel.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Panel.cs 2 Feb 2008 16:31:08 -0000 1.1 --- Panel.cs 3 Feb 2008 21:38:27 -0000 1.2 *************** *** 28,31 **** --- 28,32 ---- using System.Web.UI.HtmlControls; using Spring.Context; + using Spring.Context.Support; using Spring.Util; using Spring.Web.Support; *************** *** 119,122 **** --- 120,139 ---- } + /// <summary> + /// Overridden to automatically aquire a reference to + /// root application context to use for DI. + /// </summary> + protected override ControlCollection CreateControlCollection() + { + // set root application context to signal, that we care + // for our children ourselves + if (_suppressDependencyInjection) + { + _defaultApplicationContext = WebApplicationContext.GetRootContext(); + } + + return base.CreateControlCollection(); + } + #endregion Dependency Injection Support } |
From: Erich E. <oak...@us...> - 2008-02-03 21:38:31
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Support In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30198/src/Spring/Spring.Web/Web/Support Modified Files: WebDependencyInjectionUtils.cs Log Message: fix for SPRNET-794 Index: WebDependencyInjectionUtils.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Web/Support/WebDependencyInjectionUtils.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WebDependencyInjectionUtils.cs 1 Aug 2007 23:11:01 -0000 1.1 --- WebDependencyInjectionUtils.cs 3 Feb 2008 21:38:27 -0000 1.2 *************** *** 54,57 **** --- 54,63 ---- if (control is LiteralControl) return; // nothing to do + ISupportsWebDependencyInjection diControl = control as ISupportsWebDependencyInjection; + if (diControl != null && diControl.DefaultApplicationContext != null) + { + return; // nothing to do anymore - control cares for its children + } + // "intercept" Control to make it DI-aware ControlInterceptor.EnsureControlIntercepted(appContext, control); |
From: Erich E. <oak...@us...> - 2008-02-03 21:38:31
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv30198/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005 Modified Files: Web.Config Log Message: fix for SPRNET-794 Index: Web.Config =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.WebQuickStart/src/Spring.WebQuickStart.2005/Web.Config,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Web.Config 27 Jul 2007 13:52:21 -0000 1.5 --- Web.Config 3 Feb 2008 21:38:27 -0000 1.6 *************** *** 1,32 **** <?xml version="1.0"?> <configuration> ! ! <configSections> ! <sectionGroup name="spring"> ! <section name="context" type="Spring.Context.Support.WebContextHandler, Spring.Web"/> ! <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/> ! </sectionGroup> ! ! <sectionGroup name="common"> ! <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging" /> ! </sectionGroup> ! ! </configSections> ! ! <!-- to see logging output in the attached debugger --> ! <common> ! <logging> ! <factoryAdapter type="Common.Logging.Simple.TraceLoggerFactoryAdapter, Common.Logging"> ! <arg key="Level" value="ALL" /> ! </factoryAdapter> ! </logging> ! </common> ! <system.web> <compilation debug="true"> <assemblies> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation> ! <authentication mode="Windows"/> ! <!-- The following needs to be configured in order to enable Spring.NET Web Framework features --- 1,30 ---- <?xml version="1.0"?> <configuration> ! <configSections> ! <sectionGroup name="spring"> ! <section name="context" type="Spring.Context.Support.WebContextHandler, Spring.Web"/> ! <section name="objects" type="Spring.Context.Support.DefaultSectionHandler, Spring.Core"/> ! </sectionGroup> ! <sectionGroup name="common"> ! <section name="logging" type="Common.Logging.ConfigurationSectionHandler, Common.Logging"/> ! </sectionGroup> ! </configSections> ! <!-- to see logging output in the attached debugger --> ! <common> ! <logging> ! <factoryAdapter type="Common.Logging.Simple.TraceLoggerFactoryAdapter, Common.Logging"> ! <arg key="Level" value="ALL"/> ! </factoryAdapter> ! </logging> ! </common> <system.web> <compilation debug="true"> <assemblies> <add assembly="System.DirectoryServices, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B03F5F7F11D50A3A"/></assemblies></compilation> ! <pages> ! <controls> ! <add tagPrefix="spring" namespace="Spring.Web.UI.Controls" assembly="Spring.Web"/> ! </controls> ! </pages> <!-- The following needs to be configured in order to enable Spring.NET Web Framework features *************** *** 34,38 **** <httpModules> <add name="SpringModule" type="Spring.Context.Support.WebSupportModule, Spring.Web"/> ! <add name="HtmlCommentAppender" type="HtmlCommentAppenderModule"/> <!-- this custom module is only for DI demonstration purposes --> </httpModules> <httpHandlers> --- 32,37 ---- <httpModules> <add name="SpringModule" type="Spring.Context.Support.WebSupportModule, Spring.Web"/> ! <add name="HtmlCommentAppender" type="HtmlCommentAppenderModule"/> ! <!-- this custom module is only for DI demonstration purposes --> </httpModules> <httpHandlers> *************** *** 40,45 **** </httpHandlers> </system.web> ! ! <!-- demonstrates how to configure IHttpModule instances --> <spring> <context> --- 39,43 ---- </httpHandlers> </system.web> ! <!-- demonstrates how to configure IHttpModule instances --> <spring> <context> *************** *** 47,59 **** </context> <objects xmlns="http://www.springframework.net"> - <!-- configure our custom HttpModule --> <object name="HttpApplicationConfigurer" type="Spring.Context.Support.HttpApplicationConfigurer, Spring.Web"> <property name="ModuleTemplates"> <dictionary> ! <entry key="HtmlCommentAppender"> <!-- this name must match the module name --> <object> <!-- select "view source" in your browser on any page to see the appended html comment --> ! <property name="AppendText" value="My configured comment!" /> </object> </entry> --- 45,57 ---- </context> <objects xmlns="http://www.springframework.net"> <!-- configure our custom HttpModule --> <object name="HttpApplicationConfigurer" type="Spring.Context.Support.HttpApplicationConfigurer, Spring.Web"> <property name="ModuleTemplates"> <dictionary> ! <entry key="HtmlCommentAppender"> ! <!-- this name must match the module name --> <object> <!-- select "view source" in your browser on any page to see the appended html comment --> ! <property name="AppendText" value="My configured comment!"/> </object> </entry> *************** *** 61,67 **** </property> </object> - </objects> </spring> - </configuration> --- 59,63 ---- |
From: Erich E. <oak...@us...> - 2008-02-02 16:31:16
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv17566/src/Spring/Spring.Web Modified Files: Spring.Web.2005.csproj Log Message: added SPRNET-799 added new Panel control as a workaround for SPRNET-794 Index: Spring.Web.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Spring.Web.2005.csproj,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** Spring.Web.2005.csproj 28 Nov 2007 23:25:46 -0000 1.37 --- Spring.Web.2005.csproj 2 Feb 2008 16:31:08 -0000 1.38 *************** *** 236,239 **** --- 236,240 ---- </Compile> <Compile Include="Web\UI\Controls\MultiView.cs" /> + <Compile Include="Web\UI\Controls\Panel.cs" /> <Compile Include="Web\UI\Controls\RadioButtonGroup.cs"> <SubType>Code</SubType> |