2007-03-16 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.Util / ChangeLog
1 2007-03-16  Marek Habersack  <mhabersack@novell.com>
2
3         * UrlUtils.cs: make sure the trailing slash is present.
4
5 2007-03-05  Marek Habersack  <mhabersack@novell.com>
6
7         * UrlUtils.cs: Make sure GetDirectory returns a directory with the
8         trailing slash.
9
10 2007-01-30  Adar Wesley <adarw@mainsoft.com>
11
12         * UrlUtils.cs: fixed GetFile to throw right exception
13
14 2007-01-20  Miguel de Icaza  <miguel@novell.com>
15
16         * FileUtils.cs (CreateTemporaryFile): Remove unused variable.
17
18 2006-11-26 Igor Zelmanovich <igorz@mainsoft.com>
19
20         * StrUtils.cs: added new helper method EscapeQuotesAndBackslashes
21
22 2006-11-13  Marek Habersack  <grendello@gmail.com>
23
24         * FileUtils.cs: Added a utility class for temporary file creation
25         (and possibly other future common file operations)
26
27 2006-03-15  Vladimir Krasnov  <vladimirk@mainsoft.com>
28
29         * DataSourceResolver.cs: corrected exceptions type in 
30         ResolveDataSource
31
32 2006-02-01  Chris Toshok  <toshok@ximian.com>
33
34         * WebEncoding.cs: CONFIGURATION_2_0 => NET_2_0, and use GetSection
35         instead of GetWebApplicationSection.
36
37 2006-01-31 Gonzalo Paniagua Javier <gonzalo@ximian.com>
38
39         * UrlUtils.cs: more than one consecutive slash are turned into one.
40
41 2006-01-26  Chris Toshok  <toshok@ximian.com>
42
43         * WebEncoding.cs: rework this so we cache the section, and so we
44         swallow exceptions based on a broken configuration.
45
46 2006-01-09  Konstantin Triger <kostat@mainsoft.com>
47
48         AltSerialization.cs: under TARGET_JVM: merging /main/4
49
50 2005-11-28  Chris Toshok  <toshok@ximian.com>
51
52         * WebEncoding.cs (FileEncoding, ResponseEncoding,
53         RequestEncoding): CONFIGURATION_2_0 work.
54
55 2005-09-22 Gonzalo Paniagua Javier <gonzalo@ximian.com>
56
57         * UrlUtils.cs: fix GetFile to work with '/blah'.
58
59 2005-09-11  Sebastien Pouliot  <sebastien@ximian.com>
60
61         * IWebObjectFactory.cs: New. 2.0 interface.
62         * IWebPropertyAccessor.cs: New. 2.0 interface.
63         * Transactions.cs: Added [Link|Inheritance]Demand for Minimal.
64         * WorkItem.cs: Added [Link|Inheritance]Demand for Minimal. Added 
65         Demand for UnmanagedCode on the static Post method,
66
67 2005-08-28 Gonzalo Paniagua Javier <gonzalo@ximian.com>
68
69         * UrlUtils.cs: removed 2 unused methods. IsRelativeUrl returns false if
70         there's a colon in the string, assuming it's the beginning of the ://
71         after the schema.
72
73 2005-07-15  Ben Maurer  <bmaurer@ximian.com>
74
75         * DataSourceHelper.cs: Obsolete
76
77         * DataSourceResolver.cs: Moved from DataSourceHelper.
78
79 2005-07-14  Ben Maurer  <bmaurer@ximian.com>
80
81         * DataSourceHelper.cs: Helper method used for data binding.
82
83 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
84
85         * UrlUtils.cs: (Combine) if the base path is "~", expand it.
86
87 2005-06-26 Gonzalo Paniagua Javier <gonzalo@ximian.com>
88
89         * StrUtils.cs: new string utilities.
90
91 2005-05-09  Ben Maurer  <bmaurer@ximian.com>
92
93         * UrlUtils.cs (Reduce): a more efficient impl that avoids an
94         arraylist, making an arraylist into an array, and a replace
95         operation.
96
97 2004-11-30 Gonzalo Paniagua Javier <gonzalo@ximian.com>
98
99         * UrlUtils.cs: made (Insert|Get|Remove)SessionId use the appRoot +
100         SessionID + vpath format.
101
102 2004-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>
103
104         * UrlUtils.cs: don't pass double slash when the path begins with a
105         tilde. Fixes bug #61654.
106
107 2004-05-26  Gonzalo Paniagua Javier <gonzalo@ximian.com>
108
109         * UrlUtils.cs:
110         (GetFile): not public, and fixed to really return just the file name.
111         (InsertSessionId): ensure that the directory ends with a "/". This
112         fixes cookieless sessions.
113         (RemoveSessionId): don't return "/" twice.
114
115         Fixed bug #59051.
116
117 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
118
119         * UrlUtils.cs: respect trailing slashes. Fixes bug #56802.
120
121 2004-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
122
123         * UrlUtils.cs: no more ^Ms.
124
125 2004-04-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
126
127         * UrlUtils.cs: MakeRelative was returning null for virtual paths without
128         directory.
129
130 2004-04-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
131
132         * FileAction.cs:
133         * FileChangeEventHandler.cs:
134         * FileChangedEventArgs.cs:
135         * FileChangesMonitor.cs:
136         * FilePathParser.cs: removed unused/obsolete files.
137
138 2004-04-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
139
140         * UrlUtils.cs: fixed MakeRelative. nGallery goes one step further.
141
142 2004-03-19  Gonzalo Paniagua Javier <gonzalo@ximian.com>
143
144         * UrlUtils.cs: small fix from George Kodinov for Combine when ~ is used. 
145
146 2004-02-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
147
148         * UrlUtils.cs: ~ is not always /. Fixed.
149
150 2004-02-17  Gonzalo Paniagua Javier <gonzalo@ximian.com>
151
152         * UrlUtils.cs:
153         (Combine): handle subdirectories and tilde. Fixes bug 54231.
154
155 2004-02-01  Alon Gazit <along@mainsoft.com>
156
157         * UrlUtils.cs: little fix in GetDirectory ().
158
159 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
160
161         * TransactedCallback.cs:
162         * WorkItemCallback.cs:
163         * WorkItem.cs:
164         * Transactions.cs: Added and stubbed/ implemented
165
166 2004-01-11  Andreas Nahr <ClassDevelopment@A-SoftTech.com>
167
168         * WebEqualComparer.cs:
169         * WebHashCodeProvider.cs:
170         * FileAction.cs:
171         * FileChangeEventHandler.cs:
172         * NativeFileChangeEventHandler.cs: Monostyled header, internalized
173
174 2004-01-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
175
176         * UrlUtils.cs: make reduce not to throw an exception for '../'. Fixes
177         bug #52599.
178
179 2003-12-03  Jackson Harper <jackson@ximian.com>
180
181         * UrlUtils.cs: Some methods for working with session ids in urls.
182         
183 2003-12-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
184
185         * WebEncoding.cs: use the Default encoding when the globalization
186         configuration is not available.
187
188 2003-12-01  Gonzalo Paniagua Javier <gonzalo@ximian.com>
189
190         * UrlUtils.cs: don't forget basePath when relative path is not rooted.
191         Fixes bug #51522.
192
193 2003-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
194
195         * UrlUtils.cs: fix bug introduced with last change that makes relative
196         paths fail. Closes bug #51448.
197
198 2003-11-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
199
200         * UrlUtils.cs: fixed Combine() handling of ~.
201
202 2003-11-25  Jackson Harper <jackson@ximian.com>
203
204         * AltSerialization.cs: Utility methods for optimized serializing.
205         
206 2003-11-13  Jackson Harper  <jackson@ximian.com>
207
208         * TimeUtil.cs: Utility methods for dealing with time.
209         
210 2003-11-08 Ben Maurer  <bmaurer@users.sourceforge.net>
211
212         * UrlUtils.cs: new function to do the app mapping, but make
213         it return a physical path.
214
215 2003-11-07 Ben Maurer  <bmaurer@users.sourceforge.net>
216
217         * UrlUtils.cs: add a new function for mapping app absolute
218         paths to virual paths (ie, ~/blah/ to /application/root/blah/)
219
220 2003-11-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
221
222         * WebEncoding.cs: added properties to access configuration files
223         encoding.
224
225 2003-08-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
226
227         * ICalls.cs: holds a couple of icalls.
228
229 2003-08-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
230
231         * UrlUtils.cs: made Reduce work when a "/" is passed.
232
233 2003-05-14  Gonzalo Paniagua Javier <gonzalo@ximian.com>
234
235         * UrlUtils.cs: fixed Combine and reworked Reduce.
236
237 2003-03-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
238
239         * UrlUtils.cs: another little fix in Combine ().
240
241 2003-01-29  Gonzalo Paniagua Javier <gonzalo@ximian.com>
242
243         * UrlUtils.cs: fixed Combine ().
244
245 2002-12-20  Gonzalo Paniagua Javier <gonzalo@ximian.com>
246
247         * UrlUtils.cs: fixed IsRelativeUrl and IsRootUrl.
248
249 2002-12-18  Gonzalo Paniagua Javier <gonzalo@ximian.com>
250
251         * PathUtil.cs: removed.
252         * UrlUtils.cs: fixed Combine to handle '~'.
253
254 2002-12-12  Gonzalo Paniagua Javier <gonzalo@ximian.com>
255
256         * PathUtil.cs: some path handling methods that are not available in
257         System.IO.Path.
258
259 2002-10-28      Gaurav Vaish <gvaish_mono@lycos.com>
260
261         * DataSourceHelper.cs       : Fresh implementation. Moved from
262                               System.Web.UI.WebControls.DataGrid
263                               ::ResolveData(object, string).
264
265 2002-10-27  Gonzalo Paniagua Javier <gonzalo@ximian.com>
266
267         * WebTrace.cs: fixed namespace.
268
269         * WebEncoding.cs: new class that holds the default encoding for
270         System.Web.
271
272 2002-01-03  Nick Drochak  <ndrochak@gol.com>
273
274         * FileChangesMonitor.cs: remove redundant using statement; use int
275         for MAXLEN; capitalize correctly 'WebHashCodeProvider';
276         fix typo rsLock -> rwLock; Change IsRooted to IsPathRooted;
277         set out parameter value where needed
278         * FilePathParser.cs: qualify method GetPathRoot() with 'Path.'
279         * IISVersionInfo.cs: initialize static member to avoid compile error.
280         * WebEqualComparer.cs: static member defC shouldn't be readonly;
281         the string comparer had some typos (fixed)
282         * WebHashCodeProvider.cs: needed System.Globalization; static member
283         defHcp shouldn't be readonly; remove double equal typo.
284
285 2002-01-02  Nick Drochak  <ndrochak@gol.com>
286
287         * FileAction.cs: Use 0x7FFFFFFF as enum value for error.  0xFFFFFFFF
288         is too big for Int32.
289         * FileChangeEventHandler.cs: put missing 'void' return type on delegate
290         FileChangeEventHandler()
291         * FileChangedEventArgs.cs: ditto for FileChangedEvent()
292         * NativeFileChangeEventHandler.cs: ditto for NativeFileChangeEventHandler()
293         * FileChangesMonitor.cs: add needed namespaces and comment out imcomplete
294         code.
295
296 2001-12-21      Gaurav Vaish <gvaish@iitk.ac.in>
297
298         * ApacheVersionInfo.cs     - Dummy class, for later use.
299         * FileAction.cs:
300         * FileChangeEventHandler.cs:
301         * FileChangeEventArgs.cs:
302         * FileChangesMonitor.cs:
303         * NativeFileChangeEventHandler.cs
304                                    - To be used in System.Web/Http* classes.
305                                      Initially needed for HttpRuntime
306         * IISVersionInfo.cs        - Some useful methods
307
308
309 2001-12-17      Gaurav Vaish <gvaish@iitk.ac.in>
310
311         * UrlUtils.cs              - Added functions Combine and Reduce
312
313 2001-12-16  Miguel de Icaza  <miguel@ximian.com>
314
315         * DataSourceHelper.cs, UrlUtils.cs: Set the correct namespace. 
316
317 2001-11-30
318                 Gaurav Vaish <gvaish@iitk.ac.in>
319         * DataSourceHelper.cs      - Resolving DataSource objects
320
321 2001-11-09
322                 Gaurav Vaish <gvaish@iitk.ac.in>
323         * UrlUtil.cs               - Some basic functions
324
325 2001-11-08
326                 Gaurav Vaish <gvaish@iitk.ac.in>
327         * Namespace    - Created the namespace for commonly used,
328                            otherwise not available functions