In .:
[mono-project.git] / mcs / class / corlib / System.IO.IsolatedStorage / ChangeLog
blobd69ec4098871070441d888dfe2b61f4cab9a6440
1 2009-04-16  Sebastien Pouliot  <sebastien@ximian.com> 
3         * MoonIsolatedStorage.cs: New. Manage the shared (location, quota)
4         information about Moonlight isolated storage.
5         * MoonIsolatedStorageFile.cs: Adjust with new MoonIsolatedStorage.
6         Implement IncreaseQuotaTo UI.
7         * MoonIsolatedStorageFileStream.cs: Adjust with MoonIsolatedStorage.
9 2009-04-16  Sebastien Pouliot  <sebastien@ximian.com>
11         * IsolatedStorageFile.cs: Fix thread-safety issue at creation time.
12         [Fix bug #431039]
13         * IsolatedStorageFileStream.cs: Fix missing path check in Verify.
14         [Fix bug #487659]
16 2008-12-23  Sebastien Pouliot  <sebastien@ximian.com>
18         * IsolatedStorageFile.cs: Use Url as the default evidence type when
19         null is supplied.
20         [Fix bug #430932]
22 2008-09-11  Sebastien Pouliot  <sebastien@ximian.com>
24         * MoonIsolatedStorageFile.cs: Add application and iste specific 
25         initialization. Add rumenditary quota support (not thread or cross 
26         process safe). Add a bunch of TODO & FIXME.
27         * MoonIsolatedStorageFileStream.cs: Add quota checks (delegated 
28         into MoonIsolatedStorageFile).
30 2008-09-05  Sebastien Pouliot  <sebastien@ximian.com>
32         * MoonIsolatedStorageFile.cs: Add calls to PreCheck inside EndRead
33         and EndWrite methods.
34         * MoonIsolatedStorageFileStream.cs: Throw an IsolatedStorageException
35         when DeleteFile is called on an unexisting file.
37 2008-08-22  Sebastien Pouliot  <sebastien@ximian.com> 
39         * MoonIsolatedStorageFile.cs: Implement Remove. Add a bunch of FIXME 
40         mostly related to quota.
41         * MoonIsolatedStorageFileStream.cs: Add a call to the container's
42         PreCheck method in most methods. Add FIXME for quota.
44 2008-08-21  Sebastien Pouliot  <sebastien@ximian.com> 
46         * MoonIsolatedStorageFile.cs: Split Application and Site storage.
47         Start looking at quota.
48         * MoonIsolatedStorageFileStream.cs: Added more validation to 
49         ctors. Removed IsAsync (not in beta2). (SetLength) Start using some 
50         quota checks 
52 2008-08-20  Sebastien Pouliot  <sebastien@ximian.com> 
54         * MoonIsolatedStorageFile.cs: More fixes to match unit tests.
56 2008-08-20  Sebastien Pouliot  <sebastien@ximian.com>
58         * MoonIsolatedStorageFile.cs: Fix API to match SL2 beta2. Start
59         implementing new feature (while writing unit tests).
60         * MoonIsolatedStorageFileStream.cs: Add new async methods [Begin|
61         End][Read|Write] present in b2. Fix endless recursion in WriteByte.
63 2008-04-18  Sebastien Pouliot  <sebastien@ximian.com>
65         * IsolatedStorageFile.cs: Fix CreateDirectory to accept multiple 
66         subdirectories. Avoid leaking full path in DeleteDirectory. Fix 
67         GetDirectoryNames to work with path (and the search pattern).
68         [Fix bug #376188]
70 2008-03-28  Sebastien Pouliot  <sebastien@ximian.com>
72         * IsolatedStorageFile.cs: Don't show the full path on exception if a 
73         directory can't be created (fix bug #354539). Also fix path/patterns when
74         looking for files (it behave differently than DirectoryInfo does).
76 2008-01-17  Sebastien Pouliot  <sebastien@ximian.com>
78         * IsolatedStorageFile.cs: Fix bug #354539
80 2007-12-18  Stephane Delcroix  <sdelcroix@novell.com>
82         * IsolatedStorageFileEnumerator.cs: Ifdef'ing out too. Fixes the build.
84 2007-12-18  Miguel de Icaza  <miguel@novell.com>
86         * Ifdef out the large bodies of code that will just not work with
87         Silverlight, ran into this problem again trying to run
88         http://fluxtools.net/emailphotos
90         Its not worth trying to alter this implementation of
91         IsolatedStorage to work in both the regular and the Moonlight
92         profiles, instead am going to write a simple implementation while
93         we wait for the real 2.0 API to come out.
95 2007-11-06  Sebastien Pouliot  <sebastien@ximian.com>
97         * IsolatedStorageFileStream.cs: Handle rooted paths. Patch by Jay
98         Miller to fix bug #324983.
100 2006-04-07  Sebastien Pouliot  <sebastien@ximian.com>
102         * IsolatedStorageFile.cs: Loading/saving the identities used to 
103         isolate the storage requires the permission to [de]serialize them too.
105 2005-11-09  Sebastien Pouliot  <sebastien@ximian.com>
107         * IsolatedStorageScope.cs: Added missing [Serializable] in 2.0 profile
109 2005-10-04  Sebastien Pouliot  <sebastien@ximian.com>
111         * IsolatedStorageFile.cs: Add a call to GC.SuppressFinalize in Dispose
112         (even if we're not disposing anything).
114 2005-06-22  Sebastien Pouliot  <sebastien@ximian.com>
116         * IsolatedStorageFile.cs: Only assembly evidences are considered to
117         resolve policy. Changed resolve method used (instead of changing it's
118         code).
120 2005-06-14  Sebastien Pouliot  <sebastien@ximian.com>
122         * IsolatedStorageFileStream.cs: Remove Close method from NET_2_0.
123         * IsolatedStorageFile.cs: Implemented missing MaximumSize property
124         and GetPermission method.
126 2005-06-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
128         * IsolatedStorageFileStream.cs: check the FileMode here as FileStream
129         throws a different exception.
131 2005-04-25  Sebastien Pouliot  <sebastien@ximian.com>
133         * INormalizeForIsolatedStorage.cs: Added [ComVisible(true)] for 2.0.
134         * IsolatedStorage.cs: Added [ComVisible(true)] for 2.0 except for new
135         property ApplicationIdentity.
136         * IsolatedStorageException.cs: Added [ComVisible(true)] for 2.0.
137         * IsolatedStorageFile.cs: Now calls UnprotectedGetEvidence to get the 
138         assembly evidences. Added [ComVisible(true)] for 2.0.
139         * IsolatedStorageFileStream.cs: Added [ComVisible(true)] for 2.0.
140         * IsolatedStorageScope.cs: Added [ComVisible(true)] for 2.0.
142 2005-03-24  Sebastien Pouliot  <sebastien@ximian.com>
144         * IsolatedStorageFile.cs: Added an assert for unrestricted file access
145         to the class. This is "ok" as the user cannot control the base path 
146         for isolated storage but will be updated to be more "precise" when
147         imperative assert are supported in the runtime.
148         * IsolatedStorageFileStream.cs: Changed constructors so the assert
149         for unrestricted file access is limited to constructors (not the whole
150         class). Added LinkDemand for UnmanagedCode to get Handle and 
151         SafeFileHandle (2.0) properties.
153 2005-03-17  Sebastien Pouliot  <sebastien@ximian.com>
155         * IsolatedStorageScope.cs: Add missing BOOTSTRAP_NET_2_0 to new enum 
156         values. Fix #73046.
157         * IsolatedStorageFile.cs: Remove commented security attributes.
159 2005-03-15  Sebastien Pouliot  <sebastien@ximian.com>
161         * IsolatedStorageFile.cs: Added CAS demands (imperative when possible)
162         for IsolatedStoragePermission. The security attributes for NET_2_0 are
163         commented until #73046 is fixed.
164         * IsolatedStorageFileStream.cs: Now use StackFrame(2) to find which
165         assembly is really calling the IsolatedStorageFileStream when no 
166         default is supplied. Throw DirectoryNotFoundException when a directory
167         inside the isolated storage is missing.
169 2005-01-31  Sebastien Pouliot  <sebastien@ximian.com>
171         * IsolatedStorage.cs: Added checks to get identities.
172         * IsolatedStorageFile.cs: Added support for identities (assembly, 
173         domain and, for 2.0, application).
174         * IsolatedStorageFileEnumerator.cs: New. Internal enumerator for 
175         IsolatedStorageFile.
176         * IsolatedStorageFileStream.cs: Now use the new FileStream
177         constructor to ensure filestream name stays [Unknown].
178         * IsolatedStorageInfo.cs: Removed (no more required).
179         * IsolatedStorageScope.cs: Added new 2.0 scopes: Application and
180         Machine.
182 2004-07-11 Gonzalo Paniagua Javier <gonzalo@ximian.com>
184         * IsolatedStorageInfo.cs: useGetFolderPath instead of getting "HOME".
186 2004-06-13  Gert Driesen <drieseng@users.sourceforge.net>
188         * IsolatedStorage.cs: really mark the storage_scope field private
190 2004-06-09  Gert Dresen <drieseng@users.sourceforge.net>
192         * IsolatedStorage.cs: use private variable for holding scope,
193         set scope in InitStore method, removed need for extra protected 
194         member (public API fix)
195         * IsolatedStorageFile.cs: use InitStore to initialize scope
197 2004-05-12  Sebastien Pouliot  <sebastien@ximian.com>
199         * IsolatedStorage.cs: More details on MonoTODO. Throw exceptions on
200         AssemblyIdentity and DomainIdentity properties.
201         * IsolatedStorageFile.cs: More details on MonoTODO.
202         * IsolatedStorageFileStream.cs: Removed MonoTODO on class. Now use 
203         Path.Combine to build filenames (constructor) and throw an exception 
204         when we try to get the handle (as documented).
206 2003-07-30  Duncan Mak  <duncan@ximian.com>
208         * IsolatedStorageInfo.cs (CreateAssemblyFilename):
209         (CreateDomainFilename): Replace String.Format with Path.Combine.
210         
211         * IsolatedStorageFile.cs:
212         (GetStore): Update storage_scope accordingly.
213         (GetUseStoreForAssembly): Include IsolatedStorageScope.User.
214         (GetUseStoreForDomain): Include IsolatedStorageScope.User and
215         IsolatedStorageScope.Assembly.
216         
217         * IsolatedStorage.cs:
218         (CurrentSize):
219         (MaximumSize): throw InvalidOperationExceptions. This is a
220         subclass responsibility.
221         (Scope): Implemented using a static field, storage_scope.
222         (SeparatorInternal)
223         (SeparatorExternal): Implemented. Use Path.DirectorySeparatorChar
224         for SeparatorExternal.
226 2003-02-18  Jonathan Pryor <jonpryor@vt.edu>
227         * IsolatedStorageFile.cs: Fix spelling error (GetUseStoreForDomain -->
228           GetUserStoreFor Domain).  Reported by 
229           Torsten Rendelmann <torsten.rendelmann@procos.com>.
231 2003-01-19  Sebastien Pouliot  <spouliot@videotron.ca>
233         * IsolatedStorageFile.cs: Added missing [CLSCompliant(false)]
234         to CurrentSize and MaximumSize to fix compilation (at least 
235         under Windows/csc).
237 2003-01-18  Jonathan Pryor <jonpryor@vt.edu>
239         - General: Get a simple implementation working.  Simple, not-all-there, but
240           sufficient to get "Programming C#" example 21-17 working under Mono.  This
241           doesn't say much, as it's not a stress-test by any means.
242         * INormalizeForIsolatedStorage.cs: re-indent to fit mono code style
243         * IsolatedStorage.cs: match mono coding guidelines
244         * IsolatedStorageFileStream.cs: Add members that "C# In A Nutshell" claims
245           the class should override.  Most of these members just delegate to the
246           base class, though.  CreateIsolatedPath is used to get the actual filename
247           for the IsolatedStorageFileStream.
248         * IsolatedStorageScope.cs: Documentation goes in monodoc, so there's no
249           point in having C# doc-tags.  Add "Roaming" member, which "C# In A
250           Nutshell" lists.
251         * IsolatedStorageFile.cs: Public class documented in "C# In A Nutshell".
252           Simple implementation.  Will probably need work to conform with .NET,
253           address security concerns.
254         * IsolatedStorageInfo.cs: Abstract IsolatedStorage information used by other
255           classes, such as the directory isolated storage is located under, how to
256           calculate the size of isolated storage, etc.
258 2002-02-19  Duncan Mak  <duncan@ximian.com>
260         * IsolatedStorageFileStream.cs: Added MonoTODO here. This class
261         is completely stubbed out (over the summer) and didn't get
262         properly MonoTODO'd.
264 2002-02-08  Duncan Mak  <duncan@ximian.com>
266         * IsolatedStorage.cs: Looked at MemberInfo.cs, another fellow
267         abstract class. Oh, that's what it means! Removed unnesscessary
268         MonoTODO attributes.
270 2002-02-07  Duncan Mak  <duncan@ximian.com>
272         * IsolatedStorage.cs: Added to CVS, stubbed out the API.
273         * IsolatedStorageException.cs: Implemented.
275 2002-01-07  Duco Fijma <duco@lorentz.xs4all.nl>
276         * Created INormalizeForIsolatedStorage