springnet-commits Mailing List for Spring Framework .NET (Page 39)
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...> - 2007-10-02 21:57:01
|
Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv27574 Modified Files: AbstractExceptionHandler.cs ExceptionHandlerAdvice.cs IExceptionHandler.cs LogExceptionHandler.cs ReturnValueExceptionHandler.cs SwallowExceptionHandler.cs TranslationExceptionHandler.cs Log Message: SPRNET-742 - Exception handling aspect supports using SpEL expression as filtering condition as alternative to use of exception name. Index: ReturnValueExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/ReturnValueExceptionHandler.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ReturnValueExceptionHandler.cs 8 Aug 2007 07:28:07 -0000 1.1 --- ReturnValueExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.2 *************** *** 31,34 **** --- 31,52 ---- public class ReturnValueExceptionHandler : AbstractExceptionHandler { + + /// <summary> + /// Initializes a new instance of the <see cref="ReturnValueExceptionHandler"/> class. + /// </summary> + public ReturnValueExceptionHandler() + { + } + + /// <summary> + /// Initializes a new instance of the <see cref="ReturnValueExceptionHandler"/> class. + /// </summary> + /// <param name="exceptionNames">The exception names.</param> + public ReturnValueExceptionHandler(string[] exceptionNames) : base(exceptionNames) + { + } + + + /// <summary> /// Returns the result of evaluating the translation expression. *************** *** 37,41 **** public override object HandleException(IDictionary callContextDictionary) { ! IExpression expression = Expression.Parse(ExpressionText); return expression.GetValue(null, callContextDictionary); } --- 55,59 ---- public override object HandleException(IDictionary callContextDictionary) { ! IExpression expression = Expression.Parse(ActionExpressionText); return expression.GetValue(null, callContextDictionary); } Index: TranslationExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/TranslationExceptionHandler.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** TranslationExceptionHandler.cs 8 Aug 2007 07:28:07 -0000 1.1 --- TranslationExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.2 *************** *** 33,36 **** --- 33,53 ---- { /// <summary> + /// Initializes a new instance of the <see cref="TranslationExceptionHandler"/> class. + /// </summary> + public TranslationExceptionHandler() + { + } + + /// <summary> + /// Initializes a new instance of the <see cref="TranslationExceptionHandler"/> class. + /// </summary> + /// <param name="exceptionNames">The exception names.</param> + public TranslationExceptionHandler(string[] exceptionNames) : base(exceptionNames) + { + } + + + + /// <summary> /// Handles the exception. /// </summary> *************** *** 38,42 **** public override object HandleException(IDictionary callContextDictionary) { ! IExpression expression = Expression.Parse(ExpressionText); object o = expression.GetValue(null, callContextDictionary); Exception translatedException = o as Exception; --- 55,59 ---- public override object HandleException(IDictionary callContextDictionary) { ! IExpression expression = Expression.Parse(ActionExpressionText); object o = expression.GetValue(null, callContextDictionary); Exception translatedException = o as Exception; Index: SwallowExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/SwallowExceptionHandler.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** SwallowExceptionHandler.cs 8 Aug 2007 07:28:07 -0000 1.1 --- SwallowExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.2 *************** *** 31,34 **** --- 31,51 ---- { /// <summary> + /// Initializes a new instance of the <see cref="SwallowExceptionHandler"/> class. + /// </summary> + public SwallowExceptionHandler() + { + } + + /// <summary> + /// Initializes a new instance of the <see cref="SwallowExceptionHandler"/> class. + /// </summary> + /// <param name="exceptionNames">The exception names.</param> + public SwallowExceptionHandler(string[] exceptionNames) : base(exceptionNames) + { + } + + + + /// <summary> /// Handles the exception. /// </summary> Index: ExceptionHandlerAdvice.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/ExceptionHandlerAdvice.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ExceptionHandlerAdvice.cs 9 Aug 2007 04:03:02 -0000 1.4 --- ExceptionHandlerAdvice.cs 2 Oct 2007 21:56:53 -0000 1.5 *************** *** 22,25 **** --- 22,26 ---- using System.Collections; using System.Reflection; + using System.Text.RegularExpressions; using AopAlliance.Intercept; using Common.Logging; *************** *** 233,254 **** foreach (IExceptionHandler handler in exceptionHandlers) { ! bool match = false; ! foreach (string exceptionName in handler.SourceExceptionNames) ! { ! if (ex.GetType().Name.IndexOf(exceptionName) >= 0) ! { ! match = true; ! break; ! } ! } ! if (match) { ! retValue = handler.HandleException(callContextDictionary); ! if (!handler.ContinueProcessing) { ! return retValue; } } - } return retValue; --- 234,248 ---- foreach (IExceptionHandler handler in exceptionHandlers) { ! if (handler != null) { ! if (handler.CanHandleException(ex, callContextDictionary)) { ! retValue = handler.HandleException(callContextDictionary); ! if (!handler.ContinueProcessing) ! { ! return retValue; ! } } } } return retValue; *************** *** 262,324 **** protected virtual IExceptionHandler Parse(string handlerString) { ! string[] parts = StringUtils.DelimitedListToStringArray(handlerString, " "); ! string[] exceptionNames = StringUtils.CommaDelimitedListToStringArray(parts[1]); ! string handlerType = parts[2]; ! //TODO refactor calls to handler.SourceExceptionNames.Add ! if (handlerType.IndexOf("log") >= 0) { ! //TODO support user selection of level, log.Debug , log.Info etc. ! LogExceptionHandler handler = new LogExceptionHandler(); ! foreach (string exceptionName in exceptionNames) { ! handler.SourceExceptionNames.Add(exceptionName); } ! string expressionTextPart = handlerString.Substring(handlerString.IndexOf("log") + "log".Length).Trim(); ! handler.ExpressionText = "#log.Debug(" + expressionTextPart + ")"; return handler; } ! else if (handlerType.IndexOf("translate") >= 0) { ! TranslationExceptionHandler handler = CreateTranslationExceptionHandler(exceptionNames); ! string expressionTextPart = ! handlerString.Substring(handlerString.IndexOf("translate") + "translate".Length); ! handler.ExpressionText = expressionTextPart; return handler; } ! else if (handlerType.IndexOf("wrap") >= 0) { ! ! TranslationExceptionHandler handler = CreateTranslationExceptionHandler(exceptionNames); ! handler.ExpressionText = ParseWrappedExceptionExpression("wrap", handlerString); return handler; } ! else if (handlerType.IndexOf("replace") >= 0) { ! TranslationExceptionHandler handler = CreateTranslationExceptionHandler(exceptionNames); ! handler.ExpressionText = ParseWrappedExceptionExpression("replace", handlerString); return handler; } ! else if (handlerType.IndexOf("swallow") >= 0) { ! SwallowExceptionHandler handler = new SwallowExceptionHandler(); ! foreach (string exceptionName in exceptionNames) ! { ! handler.SourceExceptionNames.Add(exceptionName); ! } return handler; } ! else if (handlerType.IndexOf("return") >= 0) { ! ReturnValueExceptionHandler handler = new ReturnValueExceptionHandler(); ! ! foreach (string exceptionName in exceptionNames) ! { ! handler.SourceExceptionNames.Add(exceptionName); ! } ! ! int endOfReturnIndex = handlerString.IndexOf("return") + "return".Length; ! string returnExpression = handlerString.Substring(endOfReturnIndex).Trim(); ! handler.ExpressionText = returnExpression; return handler; } --- 256,343 ---- protected virtual IExceptionHandler Parse(string handlerString) { ! // parts to parse out of string ! string[] exceptionNames = new string[0]; ! string constraintExpression = null; ! string actionExpressionText = null; ! string actionText = null; ! // is string of expected format? ! bool success = false; ! ! Match match = GetMatchUsingExceptionNames(handlerString); ! if (match.Success) { ! success = true; ! //using exception names for exception filter ! exceptionNames = StringUtils.CommaDelimitedListToStringArray(match.Groups[2].Value.Trim()); ! actionText = match.Groups[3].Value.Trim(); ! actionExpressionText = match.Groups[4].Value.Trim(); ! } ! else ! { ! match = GetMatchUsingExceptionConstraintExpression(handlerString); ! if (match.Success) { ! success = true; ! //using constratin expression for exception filter ! constraintExpression = match.Groups[2].Value.Trim().Remove(0, 1); ! constraintExpression = constraintExpression.Substring(0, constraintExpression.Length - 1); ! actionText = match.Groups[3].Value.Trim(); ! actionExpressionText = match.Groups[4].Value.Trim(); } ! } ! ! if (!success) ! { ! log.Warn("Could not parse exception hander statement " + handlerString); ! return null; ! } ! ! ! return CreateExceptionHandler(handlerString, exceptionNames, constraintExpression, actionText, actionExpressionText); ! } ! ! private static IExceptionHandler CreateExceptionHandler(string handlerString, string[] exceptionNames, string constraintExpression, string actionText, string actionExpressionText) ! { ! if (actionText.IndexOf("log") >= 0) ! { ! //TODO support user selection of level, log.Debug , log.Info etc. ! LogExceptionHandler handler = new LogExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; ! handler.ActionExpressionText = "#log.Debug(" + actionExpressionText + ")"; return handler; } ! else if (actionText.IndexOf("translate") >= 0) { ! TranslationExceptionHandler handler = new TranslationExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; ! handler.ActionExpressionText = actionExpressionText; return handler; } ! else if (actionText.IndexOf("wrap") >= 0) { ! TranslationExceptionHandler handler = new TranslationExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; ! handler.ActionExpressionText = ParseWrappedExceptionExpression("wrap", handlerString); return handler; } ! else if (actionText.IndexOf("replace") >= 0) { ! TranslationExceptionHandler handler = new TranslationExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; ! handler.ActionExpressionText = ParseWrappedExceptionExpression("replace", handlerString); return handler; } ! else if (actionText.IndexOf("swallow") >= 0) { ! SwallowExceptionHandler handler = new SwallowExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; return handler; } ! else if (actionText.IndexOf("return") >= 0) { ! ReturnValueExceptionHandler handler = new ReturnValueExceptionHandler(exceptionNames); ! handler.ConstraintExpressionText = constraintExpression; ! handler.ActionExpressionText = actionExpressionText; return handler; } *************** *** 365,376 **** } ! private static TranslationExceptionHandler CreateTranslationExceptionHandler(string[] exceptionNames) { ! TranslationExceptionHandler handler = new TranslationExceptionHandler(); ! foreach (string exceptionName in exceptionNames) ! { ! handler.SourceExceptionNames.Add(exceptionName); ! } ! return handler; } --- 384,401 ---- } ! private Match GetMatchUsingExceptionNames(string handlerString) { ! string regex = @"^(on\s+exception\s+name)\s+(.*?)\s+(log|translate|wrap|replace|return|swallow)\s*(.*?)$"; ! RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase); ! Regex reg = new Regex(regex, options); ! return reg.Match(handlerString); ! } ! ! private Match GetMatchUsingExceptionConstraintExpression(string handlerString) ! { ! string regex = @"^(on\s+exception\s+)(\(.*?\))\s+(log|translate|wrap|replace|return|swallow)\s*(.*?)$"; ! RegexOptions options = ((RegexOptions.IgnorePatternWhitespace | RegexOptions.Multiline) | RegexOptions.IgnoreCase); ! Regex reg = new Regex(regex, options); ! return reg.Match(handlerString); } Index: AbstractExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/AbstractExceptionHandler.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** AbstractExceptionHandler.cs 8 Aug 2007 07:28:07 -0000 1.1 --- AbstractExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.2 *************** *** 19,23 **** --- 19,25 ---- #endregion + using System; using System.Collections; + using Spring.Expressions; namespace Spring.Aspects.Exceptions *************** *** 34,39 **** private IList sourceExceptionNames = new ArrayList(); private IList sourceExceptionTypes = new ArrayList(); ! private string expressionText; private bool continueProcessing = false; #endregion --- 36,42 ---- private IList sourceExceptionNames = new ArrayList(); private IList sourceExceptionTypes = new ArrayList(); ! private string actionExpressionText; private bool continueProcessing = false; + private string constraintExpressionText; #endregion *************** *** 49,54 **** --- 52,71 ---- } + /// <summary> + /// Initializes a new instance of the <see cref="AbstractExceptionHandler"/> class. + /// </summary> + /// <param name="exceptionNames">The exception names.</param> + public AbstractExceptionHandler(string[] exceptionNames) + { + foreach (string exceptionName in exceptionNames) + { + SourceExceptionNames.Add(exceptionName); + } + } + #endregion + #region Implementation of IExceptionHandler + #region Properties *************** *** 74,84 **** /// <summary> ! /// Gets the translation expression text /// </summary> ! /// <value>The translation expression.</value> ! public string ExpressionText { ! get { return expressionText; } ! set { expressionText = value; } } --- 91,112 ---- /// <summary> ! /// Gets the action translation expression text /// </summary> ! /// <value>The action translation expression.</value> ! public string ActionExpressionText { ! get { return actionExpressionText; } ! set { actionExpressionText = value; } ! } ! ! ! /// <summary> ! /// Gets or sets the constraint expression text. ! /// </summary> ! /// <value>The constraint expression text.</value> ! public string ConstraintExpressionText ! { ! get { return constraintExpressionText; } ! set { constraintExpressionText = value; } } *************** *** 96,100 **** ! #region Implementation of IExceptionHandler /// <summary> --- 124,164 ---- ! ! /// <summary> ! /// Determines whether this instance can handle the exception the specified exception. ! /// </summary> ! /// <param name="ex">The exception.</param> ! /// <param name="callContextDictionary">The call context dictionary.</param> ! /// <returns> ! /// <c>true</c> if this instance can handle the specified exception; otherwise, <c>false</c>. ! /// </returns> ! public bool CanHandleException(Exception ex, IDictionary callContextDictionary) ! { ! if (SourceExceptionNames != null) ! { ! foreach (string exceptionName in SourceExceptionNames) ! { ! if (ex.GetType().Name.IndexOf(exceptionName) >= 0) ! { ! return true; ! } ! } ! } ! if (ConstraintExpressionText != null) ! { ! IExpression expression = Expression.Parse(ConstraintExpressionText); ! bool canProcess; ! try ! { ! canProcess = (bool) expression.GetValue(null, callContextDictionary); ! } catch (InvalidCastException) ! { ! return false; ! } ! return canProcess; ! } ! ! return false; ! } /// <summary> Index: IExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/IExceptionHandler.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IExceptionHandler.cs 8 Aug 2007 07:28:07 -0000 1.2 --- IExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.3 *************** *** 19,22 **** --- 19,23 ---- #endregion + using System; using System.Collections; *************** *** 31,34 **** --- 32,45 ---- { /// <summary> + /// Determines whether this instance can handle the exception the specified exception. + /// </summary> + /// <param name="ex">The exception.</param> + /// <param name="callContextDictionary">The call context dictionary.</param> + /// <returns> + /// <c>true</c> if this instance can handle the specified exception; otherwise, <c>false</c>. + /// </returns> + bool CanHandleException(Exception ex, IDictionary callContextDictionary); + + /// <summary> /// Handles the exception. /// </summary> *************** *** 61,65 **** /// </summary> /// <value>The translation expression text</value> ! string ExpressionText { get; set; --- 72,85 ---- /// </summary> /// <value>The translation expression text</value> ! string ActionExpressionText ! { ! get; set; ! } ! ! /// <summary> ! /// Gets or sets the constraint expression text. ! /// </summary> ! /// <value>The constraint expression text.</value> ! string ConstraintExpressionText { get; set; Index: LogExceptionHandler.cs =================================================================== RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Aop/Aspects/Exceptions/LogExceptionHandler.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LogExceptionHandler.cs 9 Aug 2007 04:03:02 -0000 1.3 --- LogExceptionHandler.cs 2 Oct 2007 21:56:53 -0000 1.4 *************** *** 36,39 **** --- 36,56 ---- /// <summary> + /// Initializes a new instance of the <see cref="LogExceptionHandler"/> class. + /// </summary> + public LogExceptionHandler() + { + } + + /// <summary> + /// Initializes a new instance of the <see cref="LogExceptionHandler"/> class. + /// </summary> + /// <param name="exceptionNames">The exception names.</param> + public LogExceptionHandler(string[] exceptionNames) : base(exceptionNames) + { + } + + + + /// <summary> /// Gets or sets the name of the log. /// </summary> *************** *** 56,60 **** ILog log = LogManager.GetLogger(logName); callContextDictionary.Add("log", log); ! IExpression expression = Expression.Parse(ExpressionText); expression.GetValue(null, callContextDictionary); --- 73,77 ---- ILog log = LogManager.GetLogger(logName); callContextDictionary.Add("log", log); ! IExpression expression = Expression.Parse(ActionExpressionText); expression.GetValue(null, callContextDictionary); |
From: Mark P. <mar...@us...> - 2007-10-02 04:58:10
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/test/Spring/Common.Logging.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14772/Common.Logging.Tests Removed Files: .cvsignore AssemblyInfo.cs Class1.cs Common.Logging.Tests.2003.csproj Common.Logging.Tests.2005.csproj Common.Logging.Tests.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Tests.2005.csproj DELETED --- --- Common.Logging.Tests.2003.csproj DELETED --- --- AssemblyInfo.cs DELETED --- --- Common.Logging.Tests.build DELETED --- --- Class1.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:58:03
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/test/Spring/Common.Logging.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14772/Common.Logging.Integration.Tests Removed Files: .cvsignore AssemblyInfo.cs Class1.cs Common.Logging.Integration.Tests.2003.csproj Common.Logging.Integration.Tests.2005.csproj Common.Logging.Integration.Tests.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Integration.Tests.2003.csproj DELETED --- --- Common.Logging.Integration.Tests.2005.csproj DELETED --- --- AssemblyInfo.cs DELETED --- --- Common.Logging.Integration.Tests.build DELETED --- --- Class1.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:55
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/src/Spring In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14738 Removed Files: CommonAssemblyInfo.cs Log Message: remove old source code for common logging that is now in seperate sourceforge project --- CommonAssemblyInfo.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:55
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/src/Spring/Common.Logging/Logging/Simple In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14738/Common.Logging/Logging/Simple Removed Files: ConsoleOutLogger.cs ConsoleOutLoggerFactoryAdapter.cs NoOpLogger.cs NoOpLoggerFactoryAdapter.cs TraceLogger.cs TraceLoggerFactoryAdapter.cs Log Message: remove old source code for common logging that is now in seperate sourceforge project --- NoOpLogger.cs DELETED --- --- ConsoleOutLoggerFactoryAdapter.cs DELETED --- --- TraceLoggerFactoryAdapter.cs DELETED --- --- NoOpLoggerFactoryAdapter.cs DELETED --- --- ConsoleOutLogger.cs DELETED --- --- TraceLogger.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:55
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/src/Spring/Common.Logging/Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14738/Common.Logging/Logging Removed Files: ConfigurationSectionHandler.cs ILog.cs ILoggerFactoryAdapter.cs LogManager.cs LogSetting.cs LoggingException.cs Log Message: remove old source code for common logging that is now in seperate sourceforge project --- ConfigurationSectionHandler.cs DELETED --- --- ILoggerFactoryAdapter.cs DELETED --- --- LoggingException.cs DELETED --- --- ILog.cs DELETED --- --- LogSetting.cs DELETED --- --- LogManager.cs DELETED --- |
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/src/Spring/Common.Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14738/Common.Logging Removed Files: .cvsignore Common.Logging.2003.csproj Common.Logging.2005.csproj Common.Logging.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.2003.csproj DELETED --- --- Common.Logging.2005.csproj DELETED --- --- Common.Logging.build DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:49
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/lib/net/1.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14557/1.0 Removed Files: .cvsignore Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:49
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/lib/net/2.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14557/2.0 Removed Files: .cvsignore Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:49
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/lib/net/1.1 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14557/1.1 Removed Files: .cvsignore Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:43
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/examples/Spring/Common.Logging.Example In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14545 Removed Files: Common.Logging.Example.sln Log Message: remove old source code for common logging that is now in seperate sourceforge project --- Common.Logging.Example.sln DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:38
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/doc In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14520 Removed Files: build.xml project.properties Log Message: remove old source code for common logging that is now in seperate sourceforge project --- project.properties DELETED --- --- build.xml DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:37
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14520/reference/src Removed Files: index.xml overview.xml quickstarts.xml Log Message: remove old source code for common logging that is now in seperate sourceforge project --- quickstarts.xml DELETED --- --- overview.xml DELETED --- --- index.xml DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:29
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/test/Spring/Common.Logging.Log4Net.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14496/Common.Logging.Log4Net.Tests Removed Files: .cvsignore AssemblyInfo.cs Class1.cs Common.Logging.Log4Net.Tests.2003.csproj Common.Logging.Log4Net.Tests.2005.csproj Common.Logging.Log4Net.Tests.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Log4Net.Tests.2005.csproj DELETED --- --- Common.Logging.Log4Net.Tests.2003.csproj DELETED --- --- AssemblyInfo.cs DELETED --- --- Common.Logging.Log4Net.Tests.build DELETED --- --- Class1.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:29
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/test/Spring/Common.Logging.Log4Net.Integration.Tests In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14496/Common.Logging.Log4Net.Integration.Tests Removed Files: .cvsignore AssemblyInfo.cs Class1.cs Common.Logging.Log4Net.Integration.Tests.2003.csproj Common.Logging.Log4Net.Integration.Tests.2005.csproj Common.Logging.Log4Net.Integration.Tests.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Log4Net.Integration.Tests.2005.csproj DELETED --- --- AssemblyInfo.cs DELETED --- --- Common.Logging.Log4Net.Integration.Tests.build DELETED --- --- Common.Logging.Log4Net.Integration.Tests.2003.csproj DELETED --- --- Class1.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:24
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/src/Spring/Common.Logging.Log4Net/Logging/Log4Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14474/Common.Logging.Log4Net/Logging/Log4Net Removed Files: Log4NetLogger.cs Log4NetLoggerFactoryAdapter.cs Log Message: remove old source code for common logging that is now in seperate sourceforge project --- Log4NetLoggerFactoryAdapter.cs DELETED --- --- Log4NetLogger.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:24
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/src/Spring/Common.Logging.Log4Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14474/Common.Logging.Log4Net Removed Files: .cvsignore Common.Logging.Log4Net.2003.csproj Common.Logging.Log4Net.2005.csproj Common.Logging.Log4Net.build Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Log4Net.build DELETED --- --- Common.Logging.Log4Net.2003.csproj DELETED --- --- Common.Logging.Log4Net.2005.csproj DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:24
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/src/Spring In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14474 Removed Files: CommonAssemblyInfo.cs Log Message: remove old source code for common logging that is now in seperate sourceforge project --- CommonAssemblyInfo.cs DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:16
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/lib/net/2.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14442/2.0 Removed Files: .cvsignore Common.Logging.dll log4net.dll Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.dll DELETED --- --- log4net.dll DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:16
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/lib/net/1.1 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14442/1.1 Removed Files: .cvsignore Common.Logging.dll log4net.dll Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.dll DELETED --- --- log4net.dll DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:15
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/lib/net/1.0 In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14442/1.0 Removed Files: .cvsignore Common.Logging.dll log4net.dll Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.dll DELETED --- --- log4net.dll DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:08
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/examples/Spring/Common.Logging.Log4Net.Example In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14338 Removed Files: Common.Logging.Log4Net.Example.sln Log Message: remove old source code for common logging that is now in seperate sourceforge project --- Common.Logging.Log4Net.Example.sln DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:03
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net/doc/reference/src In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv14072 Removed Files: index.xml overview.xml quickstarts.xml Log Message: remove old source code for common logging that is now in seperate sourceforge project --- quickstarts.xml DELETED --- --- overview.xml DELETED --- --- index.xml DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:57:01
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging.Log4Net In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13998/Common.Logging.Log4Net Removed Files: .cvsignore Common.Logging.Log4Net.2003.sln Common.Logging.Log4Net.2005.sln Common.Logging.Log4Net.build CruiseControl.xml changelog.txt license.txt readme.txt Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.Log4Net.2003.sln DELETED --- --- changelog.txt DELETED --- --- CruiseControl.xml DELETED --- --- Common.Logging.Log4Net.build DELETED --- --- Common.Logging.Log4Net.2005.sln DELETED --- --- license.txt DELETED --- --- readme.txt DELETED --- |
From: Mark P. <mar...@us...> - 2007-10-02 04:56:57
|
Update of /cvsroot/springnet/Spring.Net.Integration/projects/Common.Logging In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv13998/Common.Logging Removed Files: .cvsignore Common.Logging.2003.sln Common.Logging.2005.sln Common.Logging.build CruiseControl.xml changelog.txt license.txt readme.txt Log Message: remove old source code for common logging that is now in seperate sourceforge project --- .cvsignore DELETED --- --- Common.Logging.2005.sln DELETED --- --- changelog.txt DELETED --- --- Common.Logging.2003.sln DELETED --- --- CruiseControl.xml DELETED --- --- Common.Logging.build DELETED --- --- license.txt DELETED --- --- readme.txt DELETED --- |