Update of /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Objects/Factory/Support
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv23425/src/Spring/Spring.Web/Objects/Factory/Support
Modified Files:
WebObjectUtils.cs
Log Message:
nant build script's variable ${nowarn.numbers.test} renamed to ${nowarn.numbers.test.default}
DataBindingPanel -> added design-time support (SPRNET-774)
DataBindingPanel -> added examples to SpringWebQuickstart "EasyEmplyeeInfo" (SPRNET-787)
integrated NUnitAspEx (SPRNET-788)
added PageHandlerFactory tests w.r.t. Server.Transfer() (SPRNET-763)
Index: WebObjectUtils.cs
===================================================================
RCS file: /cvsroot/springnet/Spring.Net/src/Spring/Spring.Web/Objects/Factory/Support/WebObjectUtils.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WebObjectUtils.cs 1 Aug 2007 23:10:46 -0000 1.1
--- WebObjectUtils.cs 3 Dec 2007 16:11:31 -0000 1.2
***************
*** 102,107 ****
#if NET_1_1
HttpContext context = HttpContext.Current;
! page = PageParser.GetCompiledPageInstance(pageUrl,
! context.Server.MapPath(pageUrl), context);
#else
HttpContext ctx = HttpContext.Current;
--- 102,108 ----
#if NET_1_1
HttpContext context = HttpContext.Current;
! string physicalPath = context.Server.MapPath(pageUrl);
! s_log.Debug(string.Format("constructing page virtual path '{0}' from physical file '{1}'", pageUrl, physicalPath));
! page = PageParser.GetCompiledPageInstance(pageUrl, physicalPath, context);
#else
HttpContext ctx = HttpContext.Current;
|