2007-06-20 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI / Control.jvm.cs
1 //\r
2 // System.Web.UI.ControlS.jvm.cs\r
3 //\r
4 // Authors:\r
5 //   Eyal Alaluf (eyala@mainsoft.com)\r
6 //\r
7 // (C) 2006 Mainsoft Co. (http://www.mainsoft.com)\r
8 //\r
9 \r
10 //\r
11 // Permission is hereby granted, free of charge, to any person obtaining\r
12 // a copy of this software and associated documentation files (the\r
13 // "Software"), to deal in the Software without restriction, including\r
14 // without limitation the rights to use, copy, modify, merge, publish,\r
15 // distribute, sublicense, and/or sell copies of the Software, and to\r
16 // permit persons to whom the Software is furnished to do so, subject to\r
17 // the following conditions:\r
18 // \r
19 // The above copyright notice and this permission notice shall be\r
20 // included in all copies or substantial portions of the Software.\r
21 // \r
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,\r
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\r
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\r
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\r
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\r
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\r
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\r
29 //\r
30 \r
31 using vmw.@internal.j2ee;\r
32 using System.Web.Hosting;\r
33 \r
34 namespace System.Web.UI\r
35 {\r
36         public partial class Control\r
37         {\r
38                 private string _templateSourceDir;\r
39 \r
40                 public virtual string TemplateSourceDirectory\r
41                 {\r
42                         get\r
43                         {\r
44                                 int location = 0;\r
45                                 if (_templateSourceDir == null) {\r
46                                         string tempSrcDir = AppRelativeTemplateSourceDirectory;\r
47                                         if (tempSrcDir == null && Parent != null)\r
48                                                 tempSrcDir = Parent.TemplateSourceDirectory;\r
49                                         if (tempSrcDir != null && tempSrcDir.Length > 1) {\r
50                                                 location = tempSrcDir.IndexOf ('/', 1);\r
51                                                 if (location != -1)\r
52                                                         tempSrcDir = tempSrcDir.Substring (location + 1);\r
53                                                 else\r
54                                                         tempSrcDir = string.Empty;\r
55                                         }\r
56                                         string answer = HttpRuntime.AppDomainAppVirtualPath;\r
57                                         if (tempSrcDir == null)\r
58                                                 tempSrcDir = "";\r
59 \r
60                                         if (tempSrcDir.Length > 0 && tempSrcDir [tempSrcDir.Length - 1] == '/')\r
61                                                 tempSrcDir = tempSrcDir.Substring (0, tempSrcDir.Length - 1);\r
62 \r
63                                         if (tempSrcDir.StartsWith ("/") || tempSrcDir.Length == 0)\r
64                                                 _templateSourceDir = answer + tempSrcDir;\r
65                                         else\r
66                                                 _templateSourceDir = answer + "/" + tempSrcDir;\r
67                                 }\r
68                                 return _templateSourceDir;\r
69                         }\r
70                 }\r
71 \r
72 \r
73                 // Add a variant for specifying use of portlet resolveRenderUrl\r
74                 internal string ResolveUrl (string relativeUrl, bool usePortletRenderResolve)\r
75                 {\r
76                         relativeUrl = ResolveUrl (relativeUrl);\r
77                         if (usePortletRenderResolve && Page != null)\r
78                                 relativeUrl = Page.CreateRenderUrl (relativeUrl);\r
79                         return relativeUrl;\r
80                 }\r
81 \r
82                 internal string ResolveClientUrl (string relativeUrl, bool usePortletRenderResolve)\r
83                 {\r
84                         relativeUrl = ResolveClientUrl (relativeUrl);\r
85                         if (usePortletRenderResolve && Page != null)\r
86                                 relativeUrl = Page.CreateRenderUrl (relativeUrl);\r
87                         return relativeUrl;\r
88                 }\r
89         }\r
90 }\r