springnet-commits Mailing List for Spring Framework .NET (Page 8)
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: Mark P. <mar...@us...> - 2008-04-04 20:40:33
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.Data.NHibernate.Northwind/src/Spring.Northwind.Web/App_Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv22387 Removed Files: northwnd_log.LDF Log Message: moved file --- northwnd_log.LDF DELETED --- |
From: Mark P. <mar...@us...> - 2008-04-04 16:02:38
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27093 Modified Files: AccountManagerTests.cs Log Message: remove programmatic configuration of context Index: AccountManagerTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart/AccountManagerTests.cs,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** AccountManagerTests.cs 3 Apr 2008 06:02:49 -0000 1.7 --- AccountManagerTests.cs 4 Apr 2008 16:02:34 -0000 1.8 *************** *** 68,105 **** } - private static IApplicationContext CreateContextMixXmlAndProgrammatic() - { - GenericApplicationContext ctx = new GenericApplicationContext(); - - IObjectDefinitionReader objectDefinitionReader = new XmlObjectDefinitionReader(ctx); - objectDefinitionReader.LoadObjectDefinitions("assembly://Spring.TxQuickStart/Spring.TxQuickStart/application-config.xml"); - - IObjectDefinitionFactory objectDefinitionFactory = new DefaultObjectDefinitionFactory(); - - ObjectDefinitionBuilder builder = - ObjectDefinitionBuilder.RootObjectDefinition(objectDefinitionFactory, typeof(DbProviderFactoryObject)); - builder.AddPropertyValue("ProviderName", "System.Data.SqlClient") - .AddPropertyValue("ConnectionString", - "Data Source=MARKT60\SQL2005;Initial Catalog=CreditsAndDebits;User ID=springqa; Password=springqa") - - ctx.RegisterObjectDefinition("DebitDbProvider", builder.ObjectDefinition); - ctx.RegisterAlias("DebitDbProvider", "CreditDbProvider"); - - builder = ObjectDefinitionBuilder.RootObjectDefinition(objectDefinitionFactory, typeof(AdoPlatformTransactionManager)); - builder.AddPropertyValue("DbProvider", "DebitDbProvider"); - - ctx.RegisterObjectDefinition("transactionManager", builder.ObjectDefinition); - - TxAttributeDrivenObjectDefinitionBuilder txBuilder = TxAttributeDrivenObjectDefinitionBuilder.CreateBuilder(); - txBuilder.SetTransationManagerName("transationManager").SetProxyTargetType(true).SetOrder(2); - ctx.RegisterObjectDefinitions(txBuilder.ObjectDefinitions); - - - - ctx.Refresh(); - - return ctx; - } - [Test] public void TransferBelowMaxAmount() --- 68,71 ---- |
From: Mark P. <mar...@us...> - 2008-04-04 15:50:10
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv21898 Modified Files: App.config Log Message: fixed. Index: App.config =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/App.config,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** App.config 3 Apr 2008 06:02:38 -0000 1.2 --- App.config 4 Apr 2008 15:50:03 -0000 1.3 *************** *** 27,38 **** <context> ! <!-- using embedded assembly configuration file --> <resource uri="assembly://Spring.IocQuickStart.MovieFinder/Spring.IocQuickStart.MovieFinder/AppContext.xml"/> ! <!-- using section in App.config --> - <!-- <resource uri="config://spring/objects"/> ! ! --> </context> --- 27,37 ---- <context> ! <!-- using embedded assembly configuration file <resource uri="assembly://Spring.IocQuickStart.MovieFinder/Spring.IocQuickStart.MovieFinder/AppContext.xml"/> ! --> ! <!-- using section in App.config --> <resource uri="config://spring/objects"/> ! </context> *************** *** 42,57 **** <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> ! <!-- ! <property name="movieFinder" ref="AnotherMovieFinder"/> ! --> </object> ! <!-- ! An IMovieFinder implementation that uses harcoded values as it's movie source... ! --> <object id="MyMovieFinder" type="Spring.IocQuickStart.MovieFinder.SimpleMovieFinder, Spring.IocQuickStart.MovieFinder"/> ! <!-- ! An IMovieFinder implementation that uses a text file as it's movie source... ! --> <object id="AnotherMovieFinder" type="Spring.IocQuickStart.MovieFinder.ColonDelimitedMovieFinder, Spring.IocQuickStart.MovieFinder"> --- 41,52 ---- <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> ! <property name="MovieFinder" ref="AnotherMovieFinder"/> </object> ! ! <!-- An IMovieFinder implementation that uses harcoded values as it's movie source... --> <object id="MyMovieFinder" type="Spring.IocQuickStart.MovieFinder.SimpleMovieFinder, Spring.IocQuickStart.MovieFinder"/> ! ! <!-- An IMovieFinder implementation that uses a text file as it's movie source... --> <object id="AnotherMovieFinder" type="Spring.IocQuickStart.MovieFinder.ColonDelimitedMovieFinder, Spring.IocQuickStart.MovieFinder"> |
From: Mark P. <mar...@us...> - 2008-04-04 15:50:09
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv21898/MovieFinder Modified Files: AppContext.xml Log Message: fixed. Index: AppContext.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder/AppContext.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** AppContext.xml 3 Apr 2008 06:02:38 -0000 1.3 --- AppContext.xml 4 Apr 2008 15:50:03 -0000 1.4 *************** *** 5,11 **** <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> ! <!-- ! <property name="movieFinder" ref="AnotherMovieFinder"/> ! --> </object> --- 5,9 ---- <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> ! <property name="MovieFinder" ref="AnotherMovieFinder"/> </object> |
From: Mark P. <mar...@us...> - 2008-04-04 15:31:24
|
Update of /cvsroot/springnet/Spring.Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14211 Modified Files: changelog.txt Log Message: add last improvments... Index: changelog.txt =================================================================== RCS file: /cvsroot/springnet/Spring.Net/changelog.txt,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** changelog.txt 4 Apr 2008 15:24:17 -0000 1.33 --- changelog.txt 4 Apr 2008 15:31:20 -0000 1.34 *************** *** 77,80 **** --- 77,81 ---- [SPRNET-916] - Add additional BadSqlGrammarCode for Postgres [SPRNET-917] - Add additonal db error codes for exception translation for Oracle and MySql providers + [SPRNET-918] - Add property to enable/disable logging of return value in SimpleLoggingAdvice New Feature |
From: Mark P. <mar...@us...> - 2008-04-04 15:30:18
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13724 Modified Files: SimpleLoggingAdvice.cs Log Message: misc conding convention clean up. Index: SimpleLoggingAdvice.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging/SimpleLoggingAdvice.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** SimpleLoggingAdvice.cs 4 Apr 2008 14:59:38 -0000 1.6 --- SimpleLoggingAdvice.cs 4 Apr 2008 15:30:13 -0000 1.7 *************** *** 57,61 **** /// Flag to indicate if the return value should be in the log message. /// </summary> ! private bool _logReturnValue; /// <summary> --- 57,61 ---- /// Flag to indicate if the return value should be in the log message. /// </summary> ! private bool logReturnValue; /// <summary> *************** *** 132,137 **** public bool LogReturnValue { ! get { return _logReturnValue; } ! set { _logReturnValue = value; } } --- 132,137 ---- public bool LogReturnValue { ! get { return logReturnValue; } ! set { logReturnValue = value; } } |
From: Mark P. <mar...@us...> - 2008-04-04 15:24:23
|
Update of /cvsroot/springnet/Spring.Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11314 Modified Files: changelog.txt readme.txt Log Message: updated changelog, readme, and installer files. Index: changelog.txt =================================================================== RCS file: /cvsroot/springnet/Spring.Net/changelog.txt,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** changelog.txt 8 Dec 2007 00:02:47 -0000 1.32 --- changelog.txt 4 Apr 2008 15:24:17 -0000 1.33 *************** *** 3,6 **** --- 3,106 ---- http://www.springframework.net + Release 1.1.1, April 4, 2008 + + Bug + + [SPRNET-394] - Fix recursive calls to Context.GetRegistry() + [SPRNET-538] - Binding fails with binding to property of nullable type + [SPRNET-570] - ObjectNameAutoProxyCreator incompatible with NHibernate.LocalSessionFactoryObject + [SPRNET-576] - Allow formatting null values for .NET 2.0 Nullable Types + [SPRNET-755] - SpEL method invocation fails if the same expression instance is used with two different context types + [SPRNET-818] - Provide .NET TypeConverter for ITransactionAttribute + [SPRNET-820] - spring:CheckBoxList doesn't allow for <asp:ListItem> children + [SPRNET-821] - HttpRequestBindingContainer can't bind to checkboxes + [SPRNET-827] - TypedDataSetUtils should use IDbCommand instead of provider specified SqlDbCommand. + [SPRNET-829] - Named constructor argument metadata should be stored/compared using consistent CultureInfo + [SPRNET-838] - 404 exception handling in NET 1.1 does not work as expected / differs from standard behaviour + [SPRNET-845] - OSIV/SessionScope generates the wrong key for EntityInterceptorObjectName + [SPRNET-846] - ProxyFactory allows for advisors being added twice + [SPRNET-847] - Implementations of AbstractPointcurAdvisor.Equals() and .GetHashCode() are wrong + [SPRNET-852] - Creating a custom attribute did not take into account public field values that match the named arguments in the attribute declaration. + [SPRNET-853] - Throw HibernateSystemException (part of Spring's DAO exception hierarchy) when can not translate inner exception in NHibernate.ADOException + [SPRNET-854] - Fix NullReferenceException in HibernateAccessor when SqlString in ADOException is null. + [SPRNET-860] - Placeholders not resolved in name-values element + [SPRNET-861] - Couldn't resolve internal properties in Strong Typed resources in Web Application + [SPRNET-862] - Resolve object references that use the Spring expression language while parsing config files + [SPRNET-871] - GenericApplicationContext.ctor(IApplicationContext) always throws NullReferenceException + [SPRNET-872] - Resolve WebResources relative to HttpContext.Current.Request.FilePath + [SPRNET-873] - ReadCommitted was misspelled in spring-tx-1.1.xsd + [SPRNET-874] - Null reference accessing TransactionSynchronizationManager.CurrentTransactionIsolationLevel when no Spring managed transaction is active + [SPRNET-877] - IConfigurableFactoryObject instance cannot be proxied with the AOP auto proxy functionality + [SPRNET-880] - Logging exception handler should continue processing of exception handler chain. + [SPRNET-882] - Test "ExistsValidHttp" fails + [SPRNET-886] - IInitializingObject isn't honored in case of calls to ConfigureObject() + [SPRNET-891] - Failure to create hiearchical context with depth greater than two. + [SPRNET-893] - Retry advice goes into infinite loop when exception type not listed in advice is thrown + [SPRNET-899] - HttpContext.CurrenHandler returns Spring's internal PageHandler instead of real Page + [SPRNET-902] - DbProvider ExtractError method should explicitly perform ToString operation on object returned from SpEL expression to obtain error code + [SPRNET-908] - ReflectionUtils.MethodIsOnOneOfTheseInterfaces does not correctly iterate over multiple interface types + + Improvement + + [SPRNET-531] - It is not possible to call Page.SetResult() outside the page (e.g. from a Control) + [SPRNET-558] - Enable Data Validation and Model Management for UserControl + [SPRNET-559] - Change ValidationError control to enable Message resolution for UserControl + [SPRNET-762] - De-couple the url from the actual object definition name in WebServiceExporter + [SPRNET-772] - Distribute Northwind sql server 2005 data files to provide easy 'out-of-the-box' running of NHibernate example application. + [SPRNET-783] - Take TypeConverters into account in SpEL numeric aggregate functions + [SPRNET-785] - SessionScope / OSIV should obtain 1 EntityInterceptor per Session instance + [SPRNET-799] - Add support for IBinding.SetMessage() to DataBindingPanel + [SPRNET-814] - Improve Spring.Web DataBinding error handling ("SetErrorMessage()") documentation + [SPRNET-824] - Make WebApplicationContext and WebObjectFactory accessible from non Web threads + [SPRNET-830] - Improved performance in Spring.Data by optimizing reflection calls. + [SPRNET-835] - Add additional convenience method to set TableAdapter transaction/connection properties using DbProvider. + [SPRNET-841] - Add option to specify external hibernate configuration files (hibernate.cfg.xml) in LocalSessionFactoryObject + [SPRNET-842] - Using DbProvider to configure LocalSessionFactory object will by default integrate with NHibernate's 'external connection' management feature + [SPRNET-855] - Update Oracle error code mapping to include ORA-2292 as a DataIntegrityViolationCodes + [SPRNET-856] - Add 03000 as BadSqlGrammarCode and 40001 as CannotSerializeTransactioncode for Postgress providers. + [SPRNET-857] - Improved MySql provider error code mappings for DataIntegrityViolationCodes + [SPRNET-858] - Added IDbProvider implementation, UserCredentialsDbProvider, to allow changing of username, password connection strings at runtime. + [SPRNET-859] - Add addtional constructor to MultiDelegatingDbProvider that takes dictionary of target name/providers. + [SPRNET-864] - Add additional result mapping variable prefix what will not clash with PropertyPlaceholderConfigurer + [SPRNET-867] - Add line number to top level error message when there are XML parsing errors. + [SPRNET-879] - LocalSessionFactoryObject can configure ISessionFactory to use Spring's IDbProvider as a NHibernate ConnectionProvider + [SPRNET-887] - Add support for asp:HiddenField in DataBindingPanel + [SPRNET-897] - Allow binding/unbding string.Empty to nullable types + [SPRNET-898] - Add additional ICollectionProcessors to SpEL + [SPRNET-901] - Extend SpEL selection with mysql-like LIMIT functionality + [SPRNET-905] - RollbackRuleAttribute checks for null Type and null or empty string in constructor + [SPRNET-906] - Build scripts generate unique revision numbers for assemblies + [SPRNET-910] - Updated DB2 codes for exception translation + [SPRNET-913] - Add convenience method in Spring.Web.UI.Page/UserControl to navigate to a Result using a user provided object for result expression evaluation. + [SPRNET-914] - Add convenience method to get the Spring.Web.UI.Page Result as a url + [SPRNET-915] - Add additional CannotSerializeTransactionCodes for Oracle providers + [SPRNET-916] - Add additional BadSqlGrammarCode for Postgres + [SPRNET-917] - Add additonal db error codes for exception translation for Oracle and MySql providers + + New Feature + + [SPRNET-892] - Introduce <spring:Panel> control for finer grained control over when to perform DI on user controls + [SPRNET-907] - Add Required attribute and RequiredObjectFactoryPostProcessor, allowing to enforce required object properties + [SPRNET-911] - Provide ParameterValidationAdvice to use validation framework to validate method arguments. + + Task + + [SPRNET-587] - Add example of validation usage in middle tier services + [SPRNET-689] - Add more documentation describing ITransactionAttributeSource implementations. + [SPRNET-775] - Document using a custom IFactoryObject to help with configuring embedded resources + [SPRNET-780] - Valdiation example for ASP.NET refers to wrong namespace. + [SPRNET-809] - Update to NHibernate 1.2.1 + [SPRNET-819] - Add Multiselection samples (CheckListBox, ListBox) to WebQuickStart DataBindingPanel sample + [SPRNET-826] - Add section about manually registering objects with the container ("registersingleton" etc.) + [SPRNET-831] - SpringAir html doesn't pass VS2005 default validation (not xhtml transitional) + [SPRNET-849] - Add "SetErrorMessage" sample to Data Binding section in reference docs + [SPRNET-865] - Add Documention for the expression attribute. + [SPRNET-866] - Support .NET 1.1 for NHibernate 1.2 + [SPRNET-875] - Documentation incorrectly lists Unspecified as default isolation level, should be ReadCommitted. + [SPRNET-885] - Add doc for <spring:Panel> server control usage + [SPRNET-909] - Document that WebServiceExporter does not add WebServiceBinding attribute with WSI basic profile 1.1 by default. + + + Release 1.1 final, December 7, 2007 Index: readme.txt =================================================================== RCS file: /cvsroot/springnet/Spring.Net/readme.txt,v retrieving revision 1.34 retrieving revision 1.35 diff -C2 -d -r1.34 -r1.35 *** readme.txt 8 Dec 2007 01:26:12 -0000 1.34 --- readme.txt 4 Apr 2008 15:24:17 -0000 1.35 *************** *** 1,3 **** ! THE SPRING.NET FRAMEWORK, Release 1.1 (December 7, 2007) -------------------------------------------------------------------- http://www.springframework.net/ --- 1,3 ---- ! THE SPRING.NET FRAMEWORK, Release 1.1.1 (April 4, 2007) -------------------------------------------------------------------- http://www.springframework.net/ *************** *** 60,72 **** The "bin" directory contains the following distinct dll files for use in applications. Dependencies are those other than on the .NET BCL. ! * "Spring.Core" (~536 KB) - Contents: Inversion of control container. Collection classes. - Dependencies: antlr.runtime, Common.Logging ! * "Spring.Aop" (~120 KB) - Contents: Abstract Oriented Programming Framework. - Dependencies: Spring.Core, Common.Logging ! * "Spring.Data" (~220 KB) - Contents: Transaction and ADO.NET Framework. - Dependencies: Spring.Core, Spring.Aop --- 60,72 ---- The "bin" directory contains the following distinct dll files for use in applications. Dependencies are those other than on the .NET BCL. ! * "Spring.Core" (~596 KB) - Contents: Inversion of control container. Collection classes. - Dependencies: antlr.runtime, Common.Logging ! * "Spring.Aop" (~144 KB) - Contents: Abstract Oriented Programming Framework. - Dependencies: Spring.Core, Common.Logging ! * "Spring.Data" (~312 KB) - Contents: Transaction and ADO.NET Framework. - Dependencies: Spring.Core, Spring.Aop *************** *** 76,80 **** - Dependencies: Spring.Core, Spring.Aop, Spring.Data, NHibernate ! * "Spring.Data.NHibernate12" (~80 KB) - Contents: NHibernate 1.2 integration - Dependencies: Spring.Core, Spring.Aop, Spring.Data, NHibernate --- 76,80 ---- - Dependencies: Spring.Core, Spring.Aop, Spring.Data, NHibernate ! * "Spring.Data.NHibernate12" (~84 KB) - Contents: NHibernate 1.2 integration - Dependencies: Spring.Core, Spring.Aop, Spring.Data, NHibernate *************** *** 84,96 **** - Dependencies: Spring.Core, Spring.Aop ! * "Spring.Web" (~116 KB) - Contents: ASP.NET based Web Application Framework. - Dependencies: Spring.Core, Spring.Aop ! * "Spring.Web.Extensions" (~20 KB) - Contents: ASP.NET AJAX Integartion - Dependencies: Spring.Core, Spring.Aop, System.Web.Extensions ! * "Spring.Testing.NUnit" (~14 KB) - Contents: NUnit Integration - Dependencies: Spring.Core, Spring.Data, NUnit --- 84,96 ---- - Dependencies: Spring.Core, Spring.Aop ! * "Spring.Web" (~156 KB) - Contents: ASP.NET based Web Application Framework. - Dependencies: Spring.Core, Spring.Aop ! * "Spring.Web.Extensions" (~8 KB) - Contents: ASP.NET AJAX Integartion - Dependencies: Spring.Core, Spring.Aop, System.Web.Extensions ! * "Spring.Testing.NUnit" (~24 KB) - Contents: NUnit Integration - Dependencies: Spring.Core, Spring.Data, NUnit |
From: Mark P. <mar...@us...> - 2008-04-04 15:24:21
|
Update of /cvsroot/springnet/Spring.Net/installer/installaware/Spring.NET-1.1 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv11314/installer/installaware/Spring.NET-1.1 Modified Files: Spring.NET-1.1.mia Spring.NET-1.1.mia.fld Spring.NET-1.1.mpr Log Message: updated changelog, readme, and installer files. Index: Spring.NET-1.1.mpr =================================================================== RCS file: /cvsroot/springnet/Spring.Net/installer/installaware/Spring.NET-1.1/Spring.NET-1.1.mpr,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Spring.NET-1.1.mpr 8 Dec 2007 00:01:33 -0000 1.4 --- Spring.NET-1.1.mpr 4 Apr 2008 15:24:18 -0000 1.5 *************** *** 456,469 **** L:\projects\Spring.Net\msi SpringSource ! Spring.NET 1.1 ! {A6F4EACA-5A91-4B73-B357-D2A418BA81F5} ! {30BEA7B0-1208-42DC-8C52-828662D99AA6} ! 1.1.0 English ! Spring.NET 1.1 ! Spring.NET 1.1 Installation Spring.NET authors All rights reserved ! {57A66472-FB3D-462C-A8A3-5DD54815BFC7} Spring.NET Spring.NET --- 456,469 ---- L:\projects\Spring.Net\msi SpringSource ! Spring.NET 1.1.1 ! {2C0667AF-1CC4-48E0-8A78-927DAEC14286} ! {2A5C9C45-7813-4875-88C4-2BA37421DC02} ! 1.1.1 English ! Spring.NET 1.1.1 ! Spring.NET 1.1.1 Installation Spring.NET authors All rights reserved ! {53DF211A-F04D-47F8-94DC-E5548518BD26} Spring.NET Spring.NET *************** *** 472,476 **** All rights reserved FALSE ! Spring.NET-1.1 TRUE FALSE --- 472,476 ---- All rights reserved FALSE ! Spring.NET-1.1.1 TRUE FALSE Index: Spring.NET-1.1.mia =================================================================== RCS file: /cvsroot/springnet/Spring.Net/installer/installaware/Spring.NET-1.1/Spring.NET-1.1.mia,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Spring.NET-1.1.mia 6 Dec 2007 07:57:03 -0000 1.2 --- Spring.NET-1.1.mia 4 Apr 2008 15:24:18 -0000 1.3 *************** *** 1289,1303 **** FALSE {A3A8A528-F4F5-4031-8308-7F556B64C129} ! Spring.NET 1.1 TRUE ! Spring.NET 1.1 {5749130C-401B-46B6-A1F3-F227D549C673} ! Spring.NET 1.1 FALSE {EDB251B5-EFEA-4792-B040-60474F526530} ! Spring.NET 1.1 TRUE {830DA74D-7462-48B6-A133-06DA43BA64D6} ! Spring.NET 1.1 SELECTED {16E358DF-D903-48F5-A026-FDC700D1C889} --- 1289,1303 ---- FALSE {A3A8A528-F4F5-4031-8308-7F556B64C129} ! Spring.NET 1.1.1 TRUE ! Spring.NET 1.1.1 {5749130C-401B-46B6-A1F3-F227D549C673} ! Spring.NET 1.1.1 FALSE {EDB251B5-EFEA-4792-B040-60474F526530} ! Spring.NET 1.1.1 TRUE {830DA74D-7462-48B6-A133-06DA43BA64D6} ! Spring.NET 1.1.1 SELECTED {16E358DF-D903-48F5-A026-FDC700D1C889} *************** *** 2853,2857 **** {F3D1B9D2-7A04-44B6-9F91-860D3A2384C0} $UNINSTALLLINK$ ! Uninstall Spring.NET 1.1 $SHORTCUTFOLDER$ Removes this Interface21 product --- 2853,2857 ---- {F3D1B9D2-7A04-44B6-9F91-860D3A2384C0} $UNINSTALLLINK$ ! Uninstall Spring.NET 1.1.1 $SHORTCUTFOLDER$ Removes this Interface21 product *************** *** 3159,3164 **** FALSE {CA8886A7-0940-49AE-8FBF-B6D8857621C3} ! Spring.NET 1.1 ! Spring.NET 1.1.7zip FALSE {1D2C9F3A-3B3F-4046-8FC7-86624108C2B2} --- 3159,3164 ---- FALSE {CA8886A7-0940-49AE-8FBF-B6D8857621C3} ! Spring.NET 1.1.1 ! Spring.NET 1.1.1.7zip FALSE {1D2C9F3A-3B3F-4046-8FC7-86624108C2B2} Index: Spring.NET-1.1.mia.fld =================================================================== RCS file: /cvsroot/springnet/Spring.Net/installer/installaware/Spring.NET-1.1/Spring.NET-1.1.mia.fld,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Spring.NET-1.1.mia.fld 11 Oct 2007 18:06:22 -0000 1.1 --- Spring.NET-1.1.mia.fld 4 Apr 2008 15:24:18 -0000 1.2 *************** *** 5,10 **** Define Setup Globals Setup User Interview - Process (Un)Installation Perform Uninstallation - Perform First Time or Maintenance Installation Finish Setup --- 5,8 ---- |
From: Mark P. <mar...@us...> - 2008-04-04 15:19:09
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9498 Modified Files: Spring.Core.2005.csproj Log Message: remove calling of antlr in pre-build step Index: Spring.Core.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Spring.Core.2005.csproj,v retrieving revision 1.122 retrieving revision 1.123 diff -C2 -d -r1.122 -r1.123 *** Spring.Core.2005.csproj 2 Apr 2008 23:00:38 -0000 1.122 --- Spring.Core.2005.csproj 4 Apr 2008 15:19:00 -0000 1.123 *************** *** 1059,1063 **** <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> ! <PreBuildEvent>$(ProjectDir)\..\..\..\tools\antlr-2.7.6\antlr-2.7.6.exe -o $(ProjectDir)\Expressions\Parser $(ProjectDir)\Expressions\Expression.g </PreBuildEvent> <PostBuildEvent> --- 1059,1063 ---- <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> ! <PreBuildEvent>rem $(ProjectDir)\..\..\..\tools\antlr-2.7.6\antlr-2.7.6.exe -o $(ProjectDir)\Expressions\Parser $(ProjectDir)\Expressions\Expression.g </PreBuildEvent> <PostBuildEvent> |
From: Mark P. <mar...@us...> - 2008-04-04 15:18:27
|
Update of /cvsroot/springnet/Spring.Net/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv9469 Modified Files: aop-aspect-library.xml index.xml Log Message: misc doc improvements Index: index.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/index.xml,v retrieving revision 1.82 retrieving revision 1.83 diff -C2 -d -r1.82 -r1.83 *** index.xml 3 Apr 2008 06:03:10 -0000 1.82 --- index.xml 4 Apr 2008 15:18:18 -0000 1.83 *************** *** 53,58 **** <title>The Spring.NET Framework</title> <subtitle>Reference Documentation</subtitle> ! <releaseinfo>Version 1.1</releaseinfo> ! <pubdate>Last Updated February 25, 2008</pubdate> <authorgroup> <author> --- 53,58 ---- <title>The Spring.NET Framework</title> <subtitle>Reference Documentation</subtitle> ! <releaseinfo>Version 1.1.1</releaseinfo> ! <pubdate>Last Updated April 4, 2008</pubdate> <authorgroup> <author> Index: aop-aspect-library.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/aop-aspect-library.xml,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** aop-aspect-library.xml 4 Apr 2008 14:59:28 -0000 1.13 --- aop-aspect-library.xml 4 Apr 2008 15:18:18 -0000 1.14 *************** *** 665,669 **** </sect1> ! <sect1> <title>Parameter Validation</title> --- 665,669 ---- </sect1> ! <sect1 id="parameter-validation"> <title>Parameter Validation</title> *************** *** 679,683 **** the service layer, in order to be proactive in case non UI-based clients invoke the service layer. Validation rules completely different from those ! used in the UI layer may be used on the server side. </para> <para>To address some of the common needs for validation on the server --- 679,683 ---- the service layer, in order to be proactive in case non UI-based clients invoke the service layer. Validation rules completely different from those ! used in the UI layer may be used on the server side.</para> <para>To address some of the common needs for validation on the server *************** *** 729,733 **** <classname>ValidationException</classname> is thrown and you can retrieve errors information from its property <literal>ValidationErrors</literal>. ! See the SDK documentation for details. </para> </sect1> </chapter> \ No newline at end of file --- 729,733 ---- <classname>ValidationException</classname> is thrown and you can retrieve errors information from its property <literal>ValidationErrors</literal>. ! See the SDK documentation for details.</para> </sect1> </chapter> \ No newline at end of file |
From: Bruno B. <bb...@us...> - 2008-04-04 14:59:51
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Aop.Tests/Aspects/Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv3066 Modified Files: SimpleLoggingAdviceTests.cs Log Message: Added new LogReturnValue property to SimpleLoggingAdvice. Minor fixes in SimpleLoggingAdvice generated messages. Index: SimpleLoggingAdviceTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Aop.Tests/Aspects/Logging/SimpleLoggingAdviceTests.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** SimpleLoggingAdviceTests.cs 6 Dec 2007 17:17:24 -0000 1.3 --- SimpleLoggingAdviceTests.cs 4 Apr 2008 14:59:47 -0000 1.4 *************** *** 59,70 **** Expect.Call(methodInvocation.Method).Return(mi).Repeat.Any(); - Expect.Call(log.IsTraceEnabled).Return(true).Repeat.Any(); log.Trace("Entering ToString"); - Expect.Call(methodInvocation.Proceed()).Return(null); ! log.Trace("Exiting ToString, return="); mocks.ReplayAll(); --- 59,68 ---- Expect.Call(methodInvocation.Method).Return(mi).Repeat.Any(); Expect.Call(log.IsTraceEnabled).Return(true).Repeat.Any(); log.Trace("Entering ToString"); Expect.Call(methodInvocation.Proceed()).Return(null); ! log.Trace("Exiting ToString"); mocks.ReplayAll(); *************** *** 90,98 **** Expect.Call(log.IsDebugEnabled).Return(true).Repeat.Any(); log.Debug("Entering ToString"); - Expect.Call(methodInvocation.Proceed()).Return(null); ! log.Debug("Exiting ToString, return="); mocks.ReplayAll(); --- 88,95 ---- Expect.Call(log.IsDebugEnabled).Return(true).Repeat.Any(); log.Debug("Entering ToString"); Expect.Call(methodInvocation.Proceed()).Return(null); ! log.Debug("Exiting ToString"); mocks.ReplayAll(); *************** *** 118,122 **** Expect.Call(methodInvocation.Method).Return(mi).Repeat.Any(); - Expect.Call(log.IsTraceEnabled).Return(true).Repeat.Any(); log.Trace("Entering..."); --- 115,118 ---- *************** *** 182,186 **** mocks.VerifyAll(); - } } --- 178,181 ---- |
From: Bruno B. <bb...@us...> - 2008-04-04 14:59:42
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv3043 Modified Files: SimpleLoggingAdvice.cs Log Message: Added new LogReturnValue property to SimpleLoggingAdvice. Minor fixes in SimpleLoggingAdvice generated messages. Index: SimpleLoggingAdvice.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Logging/SimpleLoggingAdvice.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** SimpleLoggingAdvice.cs 6 Dec 2007 17:17:19 -0000 1.5 --- SimpleLoggingAdvice.cs 4 Apr 2008 14:59:38 -0000 1.6 *************** *** 55,58 **** --- 55,63 ---- /// <summary> + /// Flag to indicate if the return value should be in the log message. + /// </summary> + private bool _logReturnValue; + + /// <summary> /// The separator string to use for delmiting log message fields. /// </summary> *************** *** 122,125 **** --- 127,140 ---- /// <summary> + /// Gets or sets a value indicating whether log return value. + /// </summary> + /// <value><c>true</c> if log return value; otherwise, <c>false</c>.</value> + public bool LogReturnValue + { + get { return _logReturnValue; } + set { _logReturnValue = value; } + } + + /// <summary> /// Gets or sets the seperator string to use for delmiting log message fields. /// </summary> *************** *** 200,208 **** } } - - } - /// <summary> /// Determines whether the given log is enabled. --- 215,220 ---- *************** *** 288,302 **** sb.Append("Entering "); AppendCommonInformation(sb, invocation, idString); - if (logMethodArguments) { ! sb.Append(GetMethodArgumentAsString(invocation)).Append(Separator); } ! return RemoveLastSeparator(sb, Separator); ! } - /// <summary> /// Gets the exception message. --- 300,311 ---- sb.Append("Entering "); AppendCommonInformation(sb, invocation, idString); if (logMethodArguments) { ! sb.Append(GetMethodArgumentAsString(invocation)); } ! return RemoveLastSeparator(sb.ToString(), Separator); } /// <summary> /// Gets the exception message. *************** *** 311,322 **** StringBuilder sb = new StringBuilder(128); sb.Append("Exception thrown in "); ! sb.Append(invocation.Method.Name); AppendCommonInformation(sb, invocation, idString); if (LogExecutionTime) { ! sb.Append(executionTimeSpan.TotalMilliseconds); ! } ! ! return sb.ToString(); } --- 320,331 ---- StringBuilder sb = new StringBuilder(128); sb.Append("Exception thrown in "); ! sb.Append(invocation.Method.Name).Append(Separator); AppendCommonInformation(sb, invocation, idString); if (LogExecutionTime) { ! sb.Append(executionTimeSpan.TotalMilliseconds).Append(" ms"); ! } ! ! return RemoveLastSeparator(sb.ToString(), Separator); } *************** *** 335,344 **** sb.Append("Exiting "); AppendCommonInformation(sb, invocation, idString); if (LogExecutionTime) { ! sb.Append(executionTimeSpan.TotalMilliseconds).Append(" ms").Append(Separator); } ! sb.Append("return=").Append(returnValue); ! return sb.ToString(); } --- 344,356 ---- sb.Append("Exiting "); AppendCommonInformation(sb, invocation, idString); + if (LogReturnValue && invocation.Method.ReturnType != typeof(void)) + { + sb.Append("return=").Append(returnValue).Append(Separator); + } if (LogExecutionTime) { ! sb.Append(executionTimeSpan.TotalMilliseconds).Append(" ms"); } ! return RemoveLastSeparator(sb.ToString(), Separator); } *************** *** 377,399 **** } ! return RemoveLastSeparator(sb, "; "); ! } - #endregion #region Private Methods ! private string RemoveLastSeparator(StringBuilder sb, string seperator) { ! string s = sb.ToString(); ! if (s.EndsWith(seperator)) { ! return s.Substring(0,s.Length - seperator.Length); } else { ! return s; } } --- 389,408 ---- } ! return RemoveLastSeparator(sb.ToString(), "; "); } #endregion #region Private Methods ! private string RemoveLastSeparator(string str, string separator) { ! if (str.EndsWith(separator)) { ! return str.Substring(0, str.Length - separator.Length); } else { ! return str; } } |
From: Bruno B. <bb...@us...> - 2008-04-04 14:59:33
|
Update of /cvsroot/springnet/Spring.Net/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv3013 Modified Files: aop-aspect-library.xml Log Message: Added new LogReturnValue property to SimpleLoggingAdvice. Minor fixes in SimpleLoggingAdvice generated messages. Index: aop-aspect-library.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/aop-aspect-library.xml,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** aop-aspect-library.xml 2 Apr 2008 22:59:54 -0000 1.12 --- aop-aspect-library.xml 4 Apr 2008 14:59:28 -0000 1.13 *************** *** 457,460 **** --- 457,464 ---- <listitem> + <para>LogReturnValue</para> + </listitem> + + <listitem> <para>Separator</para> </listitem> *************** *** 473,476 **** --- 477,481 ---- <property name="logExecutionTime" value="true"/> <property name="logMethodArguments" value="true"/> + <property name="LogReturnValue" value="true"/> <property name="Separator" value=";"/> *************** *** 482,488 **** </object></programlisting> ! <para>The default values for LogUniqueIdentifier, LogExecutionTime, and ! LogMethodArguments are false. The default separator value is ", " and the ! default log level is Common.Logging's LogLevel.Trace.</para> <para>You can set the name of the logger with the property --- 487,494 ---- </object></programlisting> ! <para> ! The default values for LogUniqueIdentifier, LogExecutionTime, LogMethodArguments and ! LogReturnValue are false. The default separator value is ", " and the ! default log level is Common.Logging's LogLevel.Trace.</para> <para>You can set the name of the logger with the property |
From: Mark P. <mar...@us...> - 2008-04-03 06:52:13
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5716/Spring.Web.Tests Modified Files: Spring.Web.Tests.2003.csproj Log Message: Fix .NET 1.1 project files Index: Spring.Web.Tests.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Web.Tests/Spring.Web.Tests.2003.csproj,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Spring.Web.Tests.2003.csproj 6 Dec 2007 22:19:34 -0000 1.40 --- Spring.Web.Tests.2003.csproj 3 Apr 2008 06:52:09 -0000 1.41 *************** *** 243,246 **** --- 243,251 ---- /> <File + RelPath = "TestSupport\TestWebContextTests.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "TestSupport\VirtualEnvironmentMock.cs" SubType = "Code" *************** *** 248,251 **** --- 253,261 ---- /> <File + RelPath = "TestSupport\VoidDelegate.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Threading\HttpContextStorageTests.cs" SubType = "Code" *************** *** 259,263 **** <File RelPath = "Util\ControlInterceptionTests.cs" ! SubType = "ASPXCodeBehind" BuildAction = "Compile" /> --- 269,273 ---- <File RelPath = "Util\ControlInterceptionTests.cs" ! SubType = "Code" BuildAction = "Compile" /> |
From: Mark P. <mar...@us...> - 2008-04-03 06:52:13
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Core.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5716/Spring.Core.Tests Modified Files: Spring.Core.Tests.2003.csproj Log Message: Fix .NET 1.1 project files 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.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** Spring.Core.Tests.2003.csproj 4 Feb 2008 22:42:49 -0000 1.40 --- Spring.Core.Tests.2003.csproj 3 Apr 2008 06:52:09 -0000 1.41 *************** *** 158,161 **** --- 158,166 ---- /> <File + RelPath = "HookableContextHandler.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Spring.Core.Tests.build" BuildAction = "None" *************** *** 1165,1168 **** --- 1170,1204 ---- /> <File + RelPath = "Objects\Factory\Attributes\MyRequiredAttribute.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredAttributeObjectPostProcessorTests.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredTestObject.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredWithAllRequiredPropertiesProvided.xml" + BuildAction = "Content" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredWithCustomAttribute.xml" + BuildAction = "Content" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredWithOneRequiredPropertyOmitted.xml" + BuildAction = "Content" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredWithThreeRequiredPropertiesOmitted.xml" + BuildAction = "Content" + /> + <File RelPath = "Objects\Factory\Config\AbstractFactoryObjectTests.cs" SubType = "Code" |
From: Mark P. <mar...@us...> - 2008-04-03 06:52:06
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5378/Spring.Core Modified Files: Spring.Core.2003.csproj Log Message: Fix .NET 1.1 project files Index: Spring.Core.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Core/Spring.Core.2003.csproj,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Spring.Core.2003.csproj 4 Feb 2008 22:42:49 -0000 1.54 --- Spring.Core.2003.csproj 3 Apr 2008 06:52:01 -0000 1.55 *************** *** 1137,1140 **** --- 1137,1145 ---- /> <File + RelPath = "Expressions\Processors\ConversionProcessor.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Expressions\Processors\CountAggregator.cs" SubType = "Code" *************** *** 1172,1175 **** --- 1177,1185 ---- /> <File + RelPath = "Expressions\Processors\ReverseProcessor.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Expressions\Processors\SortProcessor.cs" SubType = "Code" *************** *** 1437,1440 **** --- 1447,1460 ---- /> <File + RelPath = "Objects\Factory\Attributes\RequiredAttribute.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File + RelPath = "Objects\Factory\Attributes\RequiredAttributeObjectPostProcessor.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Objects\Factory\Config\AbstractConfigurer.cs" SubType = "Code" *************** *** 1547,1550 **** --- 1567,1575 ---- /> <File + RelPath = "Objects\Factory\Config\InstantiationAwareObjectPostProcessorAdapter.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Objects\Factory\Config\IObjectDefinition.cs" SubType = "Code" *************** *** 1657,1660 **** --- 1682,1690 ---- /> <File + RelPath = "Objects\Factory\Config\SmartInstantiationAwareObjectPostProcessor.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Objects\Factory\Config\SpecialFolderVariableSource.cs" SubType = "Code" *************** *** 2329,2332 **** --- 2359,2367 ---- /> <File + RelPath = "Validation\IValidationErrors.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Validation\IValidator.cs" SubType = "Code" *************** *** 2334,2337 **** --- 2369,2377 ---- /> <File + RelPath = "Validation\ValidatedAttribute.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Validation\ValidationErrors.cs" SubType = "Code" *************** *** 2339,2342 **** --- 2379,2387 ---- /> <File + RelPath = "Validation\ValidationException.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Validation\ValidatorGroup.cs" SubType = "Code" |
From: Mark P. <mar...@us...> - 2008-04-03 06:52:06
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5378/Spring.Aop Modified Files: Spring.Aop.2003.csproj Log Message: Fix .NET 1.1 project files Index: Spring.Aop.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Spring.Aop.2003.csproj,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -d -r1.22 -r1.23 *** Spring.Aop.2003.csproj 11 Oct 2007 16:05:50 -0000 1.22 --- Spring.Aop.2003.csproj 3 Apr 2008 06:52:00 -0000 1.23 *************** *** 797,800 **** --- 797,805 ---- BuildAction = "Compile" /> + <File + RelPath = "Aspects\Validation\ParameterValidationAdvice.cs" + SubType = "Code" + BuildAction = "Compile" + /> </Include> </Files> |
From: Mark P. <mar...@us...> - 2008-04-03 06:52:06
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv5378/Spring.Web Modified Files: Spring.Web.2003.csproj Log Message: Fix .NET 1.1 project files Index: Spring.Web.2003.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Spring.Web.2003.csproj,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** Spring.Web.2003.csproj 28 Nov 2007 23:25:46 -0000 1.24 --- Spring.Web.2003.csproj 3 Apr 2008 06:52:01 -0000 1.25 *************** *** 433,437 **** <File RelPath = "Web\Support\PageHandlerFactory.cs" ! SubType = "ASPXCodeBehind" BuildAction = "Compile" /> --- 433,437 ---- <File RelPath = "Web\Support\PageHandlerFactory.cs" ! SubType = "Code" BuildAction = "Compile" /> *************** *** 487,490 **** --- 487,495 ---- /> <File + RelPath = "Web\UI\IValidationContainer.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Web\UI\MasterPage.cs" SubType = "ASPXCodeBehind" *************** *** 507,510 **** --- 512,520 ---- /> <File + RelPath = "Web\UI\Controls\AbstractValidationControl.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Web\UI\Controls\Calendar.cs" SubType = "Code" *************** *** 572,575 **** --- 582,590 ---- /> <File + RelPath = "Web\UI\Controls\Panel.cs" + SubType = "Code" + BuildAction = "Compile" + /> + <File RelPath = "Web\UI\Controls\RadioButtonGroup.cs" SubType = "Code" |
From: Mark P. <mar...@us...> - 2008-04-03 06:03:14
|
Update of /cvsroot/springnet/Spring.Net/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19615 Modified Files: index.xml orm.xml quickstarts.xml web.xml Log Message: misc doc updates. Index: quickstarts.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/quickstarts.xml,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -d -r1.25 -r1.26 *** quickstarts.xml 16 Jan 2008 19:42:58 -0000 1.25 --- quickstarts.xml 3 Apr 2008 06:03:10 -0000 1.26 *************** *** 1,3 **** ! <!-- /* * Copyright 2002-2005 the original author or authors. --- 1,4 ---- ! <?xml version="1.0" encoding="UTF-8"?> ! <!-- /* * Copyright 2002-2005 the original author or authors. *************** *** 18,75 **** [...1188 lines suppressed...] ! mechanism on the subscriber.</para> ! ! <para>The publisher then fires the event using normal .NET eventing ! semantics and the subscriber is called. The subscriber prints a message ! to the console and sets a state variable to indicate it has been called. ! The program then simply prints the state variable of the two ! subscribers, showing that only one of them (the one that registered with ! the event registry) was called.</para> </sect2> </sect1> ! &pooling-example; <sect1> <title>AOP</title> + <para>Refer to <xref linkend="aop-quickstart" />.</para> + </sect1> + </chapter> \ No newline at end of file Index: index.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/index.xml,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** index.xml 26 Feb 2008 02:04:32 -0000 1.81 --- index.xml 3 Apr 2008 06:03:10 -0000 1.82 *************** *** 46,51 **** <!ENTITY xml-custom SYSTEM "xml-custom.xml"> <!ENTITY misc SYSTEM "misc.xml"> ! <!ENTITY pooling-example ! SYSTEM "pooling-example.xml"> ]> --- 46,50 ---- <!ENTITY xml-custom SYSTEM "xml-custom.xml"> <!ENTITY misc SYSTEM "misc.xml"> ! <!ENTITY pooling-example SYSTEM "pooling-example.xml"> ]> Index: orm.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/orm.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** orm.xml 26 Feb 2008 02:04:32 -0000 1.16 --- orm.xml 3 Apr 2008 06:03:10 -0000 1.17 *************** *** 324,336 **** below and allows you to use Spring's declarative transaction demarcation functionality with the standard NHibernate API (as compared to using ! HibernateTemplate). </para> <para>The property <literal>DbProvider</literal> is used to infer two ! NHibernate configurations options. </para> <itemizedlist> <listitem> <para>Infer the connection string, typically done via the hibernate ! property "hibernate.connection.connection_string". </para> </listitem> --- 324,336 ---- below and allows you to use Spring's declarative transaction demarcation functionality with the standard NHibernate API (as compared to using ! HibernateTemplate).</para> <para>The property <literal>DbProvider</literal> is used to infer two ! NHibernate configurations options.</para> <itemizedlist> <listitem> <para>Infer the connection string, typically done via the hibernate ! property "hibernate.connection.connection_string".</para> </listitem> *************** *** 339,343 **** the NHibernate connection provider instead of listing it via property hibernate.connection.provider via ! <literal>HibernateProperties</literal>. </para> </listitem> </itemizedlist> --- 339,343 ---- the NHibernate connection provider instead of listing it via property hibernate.connection.provider via ! <literal>HibernateProperties</literal>.</para> </listitem> </itemizedlist> *************** *** 352,357 **** linkend="dbprovider-usercredentials">UserCredentialsDbProvider</link> and <link ! linkend="dbprovider-multidelegating">MultiDelegatingDbProvider</link>. ! </para> <note> --- 352,356 ---- linkend="dbprovider-usercredentials">UserCredentialsDbProvider</link> and <link ! linkend="dbprovider-multidelegating">MultiDelegatingDbProvider</link>.</para> <note> Index: web.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/doc/reference/src/web.xml,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** web.xml 26 Feb 2008 02:04:32 -0000 1.37 --- web.xml 3 Apr 2008 06:03:10 -0000 1.38 *************** *** 632,636 **** </sect2> ! <sect2> <title>Customizing control dependency injection</title> --- 632,636 ---- </sect2> ! <sect2 id="web-controlling-di"> <title>Customizing control dependency injection</title> *************** *** 662,665 **** --- 662,684 ---- } }</programlisting> + + <para>There is a Spring server control, Panel, that provides an easier + way to turn of dependency injection for parts of your page. Example use + is shown below</para> + + <programlisting><spring:Panel runat="server" + suppressDependencyInjection="true" + renderContainerTag="false"> + + .. put your heavy controls here - they won't be touched by DI + + </spring:Panel></programlisting> + + <para>By wrapping the performance sensitive parts of your page within + this panel, you can easily turn off DI using the attribute + suppressDependencyInjection. By default <spring:Panel/> won't + render a container tag (<div>, <span>, etc.). You can modify + this behavior by setting the attribute "renderContainerTag" + accordingly.</para> </sect2> </sect1> *************** *** 1486,1490 **** </sect2> ! <sect2> <title>Using DataBindingPanel</title> --- 1505,1509 ---- </sect2> ! <sect2 id="web-databindingpanel"> <title>Using DataBindingPanel</title> *************** *** 2227,2239 **** <programlisting>[<mode>:]<targetPage>[?param1,param2,...,paramN]</programlisting> ! <para>There are two possible values for the <literal>mode</literal> value ! referred to in the above notation snippet; they are:</para> ! <programlisting>redirect</programlisting> ! <programlisting>transfer</programlisting> ! <para>One thing to notice is that a comma is used instead of an ampersand ! to separate parameters; this is done so as to avoid the need for laborious ampersand escaping within an XML object definition. The use of the ampersand character is still supported if required, but one will then have --- 2246,2269 ---- <programlisting>[<mode>:]<targetPage>[?param1,param2,...,paramN]</programlisting> ! <para>There are three possible values for the <literal>mode</literal> ! value referred to in the above notation snippet; they are:</para> ! <itemizedlist> ! <listitem> ! <para>redirect</para> ! </listitem> ! <listitem> ! <para>transfer</para> ! </listitem> ! <listitem> ! <para>TransferNoPreserve</para> ! </listitem> ! </itemizedlist> ! ! <para>They correspond to the values of the ResultMode enumeration. One ! thing to notice is that a comma is used instead of an ampersand to ! separate parameters; this is done so as to avoid the need for laborious ampersand escaping within an XML object definition. The use of the ampersand character is still supported if required, but one will then have *************** *** 2384,2389 **** <title>Spring User Controls</title> ! <para>Spring provides several custom user controls such as those used to ! render errors that occur during databinding.</para> </sect1> </chapter> \ No newline at end of file --- 2414,2466 ---- <title>Spring User Controls</title> ! <para>Spring provides several custom user controls that are located in the ! <literal>Spring.Web.UI.Controls</literal> namespace. This section ! primarily lists the controls and points to other documentation to provide ! additional information. There are a few other controls not documented ! here, please check the SDK docs for their descriptions.</para> ! ! <sect2> ! <title>Validation Controls</title> ! ! <para>The location in the web page where validation errors are to be ! rendered can be specifies by using the ValidationSummary and ! ValidationError controls. There are two controls since they have ! different defaults for how errors are rendered. ValidationSummary is ! used to display potentially multiple errors identified by the validation ! framework. ValidationError is used to display field-level validation ! errors. Please refer to the validation section <link ! linkend="validation-aspnet-usage">ASP.NET usage tips</link> for more ! information.</para> ! </sect2> ! ! <sect2> ! <title>Databinding Controls</title> ! ! <para>Some standard controls are not easy to use with Spring's ! databinding support. Examples are check boxes and ratio button groups. ! In this case you should use the <classname>CheckBoxList</classname> and ! <classname>RadioButtonGroup</classname> controls. Databinding itself can ! be done using the <link ! linkend="web-databindingpanel">DataBindingPanel</link> instead of the ! using the BindingManager API within the code behind page.</para> ! </sect2> ! ! <sect2> ! <title>Calendar Control</title> ! ! <para>A pop-up DHTML calendar control is provided. It is a slightly ! modified version of the <ulink ! url="http://www.dynarch.com/projects/calendar">Dynarch.com DHTML ! Calendar</ulink> control written by Mihai Bazon.</para> ! </sect2> ! ! <sect2> ! <title>Panel Control</title> ! ! <para>You can suppress dependency injection for controls inside your ! ASP.NET by using the Panel control. See the section <link ! linkend="web-panel-control-di">Customizing control dependency ! injection</link> for more information.</para> ! </sect2> </sect1> </chapter> \ No newline at end of file |
From: Mark P. <mar...@us...> - 2008-04-03 06:02:55
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19332 Modified Files: AccountManagerTests.cs Log Message: misc updates. Index: AccountManagerTests.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.TxQuickStart/test/Spring/Spring.TxQuickStart.Tests/TxQuickStart/AccountManagerTests.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** AccountManagerTests.cs 7 Dec 2007 02:36:20 -0000 1.6 --- AccountManagerTests.cs 3 Apr 2008 06:02:49 -0000 1.7 *************** *** 22,25 **** --- 22,26 ---- using System; + using System.Collections; using System.Data; using NUnit.Framework; *************** *** 30,33 **** --- 31,35 ---- using Spring.Data.Config; using Spring.Data.Core; + using Spring.Objects.Factory.Support; using Spring.Objects.Factory.Xml; using Spring.Transaction.Config; *************** *** 53,63 **** NamespaceParserRegistry.RegisterParser(typeof(TxNamespaceParser)); NamespaceParserRegistry.RegisterParser(typeof(AopNamespaceParser)); ! IApplicationContext context = new XmlApplicationContext( ! "assembly://Spring.TxQuickStart.Tests/Spring.TxQuickStart/system-test-local-config.xml" ! ); accountManager = context["accountManager"] as IAccountManager; CleanDb(context); } [Test] public void TransferBelowMaxAmount() --- 55,105 ---- NamespaceParserRegistry.RegisterParser(typeof(TxNamespaceParser)); NamespaceParserRegistry.RegisterParser(typeof(AopNamespaceParser)); ! IApplicationContext context = CreateContextFromXml(); ! IDictionary dict = context.GetObjectsOfType(typeof (IAccountManager)); accountManager = context["accountManager"] as IAccountManager; CleanDb(context); } + private static IApplicationContext CreateContextFromXml() + { + return new XmlApplicationContext( + "assembly://Spring.TxQuickStart.Tests/Spring.TxQuickStart/system-test-local-config.xml" + ); + } + + private static IApplicationContext CreateContextMixXmlAndProgrammatic() + { + GenericApplicationContext ctx = new GenericApplicationContext(); + + IObjectDefinitionReader objectDefinitionReader = new XmlObjectDefinitionReader(ctx); + objectDefinitionReader.LoadObjectDefinitions("assembly://Spring.TxQuickStart/Spring.TxQuickStart/application-config.xml"); + + IObjectDefinitionFactory objectDefinitionFactory = new DefaultObjectDefinitionFactory(); + + ObjectDefinitionBuilder builder = + ObjectDefinitionBuilder.RootObjectDefinition(objectDefinitionFactory, typeof(DbProviderFactoryObject)); + builder.AddPropertyValue("ProviderName", "System.Data.SqlClient") + .AddPropertyValue("ConnectionString", + "Data Source=MARKT60\SQL2005;Initial Catalog=CreditsAndDebits;User ID=springqa; Password=springqa") + + ctx.RegisterObjectDefinition("DebitDbProvider", builder.ObjectDefinition); + ctx.RegisterAlias("DebitDbProvider", "CreditDbProvider"); + + builder = ObjectDefinitionBuilder.RootObjectDefinition(objectDefinitionFactory, typeof(AdoPlatformTransactionManager)); + builder.AddPropertyValue("DbProvider", "DebitDbProvider"); + + ctx.RegisterObjectDefinition("transactionManager", builder.ObjectDefinition); + + TxAttributeDrivenObjectDefinitionBuilder txBuilder = TxAttributeDrivenObjectDefinitionBuilder.CreateBuilder(); + txBuilder.SetTransationManagerName("transationManager").SetProxyTargetType(true).SetOrder(2); + ctx.RegisterObjectDefinitions(txBuilder.ObjectDefinitions); + + + + ctx.Refresh(); + + return ctx; + } + [Test] public void TransferBelowMaxAmount() |
From: Mark P. <mar...@us...> - 2008-04-03 06:02:49
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19311 Modified Files: App.config Log Message: misc updates. Index: App.config =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/App.config,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** App.config 30 Nov 2006 21:00:36 -0000 1.1 --- App.config 3 Apr 2008 06:02:38 -0000 1.2 *************** *** 28,35 **** <context> <!-- using embedded assembly configuration file --> ! <!--<resource uri="assembly://Spring.IocQuickStart.MovieFinder/Spring.IocQuickStart.MovieFinder/AppContext.xml"/>--> <!-- using section in App.config --> <resource uri="config://spring/objects"/> </context> --- 28,38 ---- <context> <!-- using embedded assembly configuration file --> ! <resource uri="assembly://Spring.IocQuickStart.MovieFinder/Spring.IocQuickStart.MovieFinder/AppContext.xml"/> <!-- using section in App.config --> + <!-- <resource uri="config://spring/objects"/> + + --> </context> *************** *** 39,43 **** --- 42,48 ---- <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> + <!-- <property name="movieFinder" ref="AnotherMovieFinder"/> + --> </object> <!-- *************** *** 53,56 **** --- 58,64 ---- <constructor-arg index="0" value="movies.txt"/> </object> + + <object type="Spring.Objects.Factory.Attributes.RequiredAttributeObjectPostProcessor, Spring.Core"/> + </objects> |
From: Mark P. <mar...@us...> - 2008-04-03 06:02:43
|
Update of /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv19311/MovieFinder Modified Files: AppContext.xml MovieLister.cs Program.cs Log Message: misc updates. Index: MovieLister.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder/MovieLister.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** MovieLister.cs 30 Nov 2006 21:00:38 -0000 1.1 --- MovieLister.cs 3 Apr 2008 06:02:38 -0000 1.2 *************** *** 20,23 **** --- 20,24 ---- using System.Collections; + using Spring.Objects.Factory.Attributes; namespace Spring.IocQuickStart.MovieFinder *************** *** 41,46 **** --- 42,52 ---- /// Property MovieFinder (IMovieFinder). /// </summary> + [Required] public IMovieFinder MovieFinder { + get + { + return _movieFinder; + } set { Index: Program.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder/Program.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Program.cs 4 Jan 2008 22:38:58 -0000 1.2 --- Program.cs 3 Apr 2008 06:02:38 -0000 1.3 *************** *** 60,70 **** try { ! IApplicationContext ctx = ! CreateContextMixXmlAndProgrammatic(); ! //CreateContextProgrammatically(); ! //CreateContextFromAppConfig(); ! //CreateContextProgrammaticallyWithAutoWire(); ! MovieLister lister = (MovieLister) ctx.GetObject("MyMovieLister"); Movie[] movies = lister.MoviesDirectedBy("Roberto Benigni"); LOG.Debug("Searching for movie..."); --- 60,72 ---- try { ! IApplicationContext ctx = ContextRegistry.GetContext(); ! #region Advanced: Call alternative ways to create application context ! //CreateContextMixXmlAndProgrammatic(); ! //CreateContextProgrammatically(); ! //CreateContextProgrammaticallyWithAutoWire(); ! #endregion ! ! MovieLister lister = (MovieLister) ctx.GetObject("MyMovieLister"); Movie[] movies = lister.MoviesDirectedBy("Roberto Benigni"); LOG.Debug("Searching for movie..."); *************** *** 89,100 **** } - private static IApplicationContext CreateContextFromAppConfig() - { - // Retrieve context defined in the spring/context section of - // the standard .NET configuration file. - return ContextRegistry.GetContext(); - } ! private static IApplicationContext CreateContextProgrammatically() { InitializeCommonLogging(); --- 91,98 ---- } ! #region Implementation of alternative ways to create application context ! ! private static IApplicationContext CreateContextProgrammatically() { InitializeCommonLogging(); *************** *** 175,178 **** --- 173,179 ---- LogManager.Adapter = new Log4NetLoggerFactoryAdapter(properties); } + #endregion + + } } \ No newline at end of file Index: AppContext.xml =================================================================== RCS file: /cvsroot/springnet/Spring.Net/examples/Spring/Spring.IocQuickStart.MovieFinder/src/MovieFinder/AppContext.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** AppContext.xml 4 Jan 2008 22:38:58 -0000 1.2 --- AppContext.xml 3 Apr 2008 06:02:38 -0000 1.3 *************** *** 5,9 **** --- 5,11 ---- <object id="MyMovieLister" type="Spring.IocQuickStart.MovieFinder.MovieLister, Spring.IocQuickStart.MovieFinder"> + <!-- <property name="movieFinder" ref="AnotherMovieFinder"/> + --> </object> *************** *** 23,25 **** --- 25,29 ---- </object> + <object type="Spring.Objects.Factory.Attributes.RequiredAttributeObjectPostProcessor, Spring.Core"/> + </objects> |
From: Mark P. <mar...@us...> - 2008-04-03 05:41:50
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10813/Spring.Data.NHibernate.Integration.Tests Modified Files: Spring.Data.NHibernate.Integration.Tests.2005.csproj Log Message: misc updates Index: Spring.Data.NHibernate.Integration.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.NHibernate.Integration.Tests/Spring.Data.NHibernate.Integration.Tests.2005.csproj,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Spring.Data.NHibernate.Integration.Tests.2005.csproj 29 Jan 2008 20:27:32 -0000 1.8 --- Spring.Data.NHibernate.Integration.Tests.2005.csproj 3 Apr 2008 05:41:46 -0000 1.9 *************** *** 29,35 **** </PropertyGroup> <ItemGroup> ! <Reference Include="Castle.DynamicProxy, Version=1.1.5.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate10\net\2.0\Castle.DynamicProxy.dll</HintPath> </Reference> <Reference Include="Common.Logging, Version=1.0.2.0, Culture=neutral, PublicKeyToken=af08829b84f0328e"> --- 29,35 ---- </PropertyGroup> <ItemGroup> ! <Reference Include="Castle.DynamicProxy, Version=1.1.5.0, Culture=neutral, PublicKeyToken=407dd0808d44fbdc, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate12\net\2.0\Castle.DynamicProxy.dll</HintPath> </Reference> <Reference Include="Common.Logging, Version=1.0.2.0, Culture=neutral, PublicKeyToken=af08829b84f0328e"> *************** *** 37,51 **** <HintPath>..\..\..\lib\Net\2.0\Common.Logging.dll</HintPath> </Reference> ! <Reference Include="Iesi.Collections, Version=1.0.0.1, Culture=neutral, PublicKeyToken=154fdcb44c4484fc"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate10\net\2.0\Iesi.Collections.dll</HintPath> </Reference> ! <Reference Include="log4net, Version=1.2.9.0, Culture=neutral, PublicKeyToken=b32731d11ce58905"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate10\net\2.0\log4net.dll</HintPath> </Reference> ! <Reference Include="NHibernate, Version=1.0.4.0, Culture=neutral, PublicKeyToken=154fdcb44c4484fc"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate10\net\2.0\NHibernate.dll</HintPath> </Reference> <Reference Include="nunit.framework, Version=2.4.1.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77"> --- 37,51 ---- <HintPath>..\..\..\lib\Net\2.0\Common.Logging.dll</HintPath> </Reference> ! <Reference Include="Iesi.Collections, Version=1.0.0.3, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate12\net\2.0\Iesi.Collections.dll</HintPath> </Reference> ! <Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate12\net\2.0\log4net.dll</HintPath> </Reference> ! <Reference Include="NHibernate, Version=1.2.1.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL"> <SpecificVersion>False</SpecificVersion> ! <HintPath>..\..\..\lib\NHibernate12\net\2.0\NHibernate.dll</HintPath> </Reference> <Reference Include="nunit.framework, Version=2.4.1.0, Culture=neutral, PublicKeyToken=96d09a1eb7f44a77"> *************** *** 102,108 **** <Name>Spring.Core.2005</Name> </ProjectReference> ! <ProjectReference Include="..\..\..\src\Spring\Spring.Data.NHibernate\Spring.Data.NHibernate.2005.csproj"> ! <Project>{130E1609-45A7-4F65-B112-105F2DD3E2CE}</Project> ! <Name>Spring.Data.NHibernate.2005</Name> </ProjectReference> <ProjectReference Include="..\..\..\src\Spring\Spring.Data\Spring.Data.2005.csproj"> --- 102,108 ---- <Name>Spring.Core.2005</Name> </ProjectReference> ! <ProjectReference Include="..\..\..\src\Spring\Spring.Data.NHibernate12\Spring.Data.NHibernate12.2005.csproj"> ! <Project>{90F2D070-6F98-4926-A626-BD7A6071D6D9}</Project> ! <Name>Spring.Data.NHibernate12.2005</Name> </ProjectReference> <ProjectReference Include="..\..\..\src\Spring\Spring.Data\Spring.Data.2005.csproj"> |
From: Mark P. <mar...@us...> - 2008-04-03 05:41:50
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10813/Spring.Data.Integration.Tests Modified Files: Spring.Data.Integration.Tests.2005.csproj Log Message: misc updates Index: Spring.Data.Integration.Tests.2005.csproj =================================================================== RCS file: /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Spring.Data.Integration.Tests.2005.csproj,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** Spring.Data.Integration.Tests.2005.csproj 14 Mar 2008 12:02:45 -0000 1.26 --- Spring.Data.Integration.Tests.2005.csproj 3 Apr 2008 05:41:46 -0000 1.27 *************** *** 127,130 **** --- 127,131 ---- <Compile Include="Data\CallCreateTestObject.cs" /> <Compile Include="Data\ConsoleLoggingAroundAdvice.cs" /> + <Compile Include="Data\TestTxIsolationLevelTests.cs" /> <Compile Include="Data\Generic\GenericAdoTemplateTests.cs" /> <Compile Include="Data\Generic\ITestObjectDao.cs" /> *************** *** 181,184 **** --- 182,188 ---- </None> </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Data\TestTxIsolationLevel.xml" /> + </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <PropertyGroup> |
From: Mark P. <mar...@us...> - 2008-04-03 05:41:50
|
Update of /cvsroot/springnet/Spring.Net/test/Spring/Spring.Data.Integration.Tests/Data In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv10813/Spring.Data.Integration.Tests/Data Added Files: TestTxIsolationLevel.xml TestTxIsolationLevelTests.cs Log Message: misc updates --- NEW FILE: TestTxIsolationLevel.xml --- (This appears to be a binary file; contents omitted.) --- NEW FILE: TestTxIsolationLevelTests.cs --- (This appears to be a binary file; contents omitted.) |