| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367 |
- 2010-05-31 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorage.cs:
- * IsolatedStorageFile.cs: Implement AvailableFreeSpace, Quota,
- UsedSize and IncreaseQuotaTo.
- 2010-05-27 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFile.cs: Implement CopyFile.
- 2010-05-27 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFile.cs: Implement GetCreationTime, GetLastAccessTime
- and GetLastWriteTime, as well as creating a single method to check for
- the closed/disposed fields.
- 2010-05-26 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFile.cs: Remove should call Close, just as .Net seems
- to do.
- 2010-05-24 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFileStream.cs: When creating the instance, we should check
- for diposed first, and for closed on second place.
- * IsolatedStorageFile.cs: Add Obsolete to CurrentSize and MaximumSize,
- as part of 4.0.
- 2010-05-24 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFileStream.cs: When creating our instance check that
- the IsolatedStorageFile is not closed/disposed.
- * IsolatedStorageFile.cs: Expose closed/disposed info as internal
- properties, as well as implement 4.0 MoveDirectory/MoveFile, CreateFile
- and OpenFile methods.
- 2010-05-23 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFile.cs: Implement FileExists and DirectoryExists, as
- well as adding fields to detect that Close/Dispose have been called
- and fire the proper exceptions.
- 2010-05-21 Carlos Alberto Cortez <[email protected]>
- 4.0 Updates.
- * IsolatedStorage.cs: Add ObsoleteAttribute to CurrentSize and
- MaximumSize.
- * IsolatedStorageSecurityState.cs: New, stubbed.
- * IsolatedStorageSecurityOptions.cs: New file.
- 2010-05-20 Carlos Alberto Cortez <[email protected]>
- * IsolatedStorageFile.cs: Add the new 4.0 overloads for
- GetDirectoryNames and GetFileNames.
- 2010-03-16 Jb Evain <[email protected]>
- * IsolatedStorageFileEnumerator.cs
- * MoonIsolatedStorageFileStream.cs
- * MoonIsolatedStorageFile.cs
- * MoonIsolatedStorage.cs
- * IsolatedStorageScope.cs
- * IsolatedStorageFileStream.cs
- * IsolatedStorage.cs
- * IsolatedStorageFile.cs:
- use MOONLIGHT symbol to disambiguate MonoTouch and Moonlight code.
- 2009-11-01 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Add new CheckSearchPattern
- validation method. Fix GetDirectoryNames to behave like
- GetFileNames wrt searchPattern
- 2009-08-30 Jb Evain <[email protected]>
- * IsolatedStorageFileEnumerator.cs
- * MoonIsolatedStorageFileStream.cs
- * MoonIsolatedStorageFile.cs
- * MoonIsolatedStorage.cs
- * IsolatedStorageScope.cs
- * IsolatedStorageFileStream.cs
- * IsolatedStorage.cs
- * IsolatedStorageFile.cs:
- Use the traditional net_2_0 version of isolated storage
- for MonoTouch.
- 2009-05-27 Jackson Harper <[email protected]>
- * MoonIsolatedStorageFile.cs: Allow paths in search patterns.
- 2009-04-16 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorage.cs: New. Manage the shared (location, quota)
- information about Moonlight isolated storage.
- * MoonIsolatedStorageFile.cs: Adjust with new MoonIsolatedStorage.
- Implement IncreaseQuotaTo UI.
- * MoonIsolatedStorageFileStream.cs: Adjust with MoonIsolatedStorage.
- 2009-04-16 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Fix thread-safety issue at creation time.
- [Fix bug #431039]
- * IsolatedStorageFileStream.cs: Fix missing path check in Verify.
- [Fix bug #487659]
- 2008-12-23 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Use Url as the default evidence type when
- null is supplied.
- [Fix bug #430932]
- 2008-09-11 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Add application and iste specific
- initialization. Add rumenditary quota support (not thread or cross
- process safe). Add a bunch of TODO & FIXME.
- * MoonIsolatedStorageFileStream.cs: Add quota checks (delegated
- into MoonIsolatedStorageFile).
- 2008-09-05 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Add calls to PreCheck inside EndRead
- and EndWrite methods.
- * MoonIsolatedStorageFileStream.cs: Throw an IsolatedStorageException
- when DeleteFile is called on an unexisting file.
- 2008-08-22 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Implement Remove. Add a bunch of FIXME
- mostly related to quota.
- * MoonIsolatedStorageFileStream.cs: Add a call to the container's
- PreCheck method in most methods. Add FIXME for quota.
- 2008-08-21 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Split Application and Site storage.
- Start looking at quota.
- * MoonIsolatedStorageFileStream.cs: Added more validation to
- ctors. Removed IsAsync (not in beta2). (SetLength) Start using some
- quota checks
- 2008-08-20 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: More fixes to match unit tests.
- 2008-08-20 Sebastien Pouliot <[email protected]>
- * MoonIsolatedStorageFile.cs: Fix API to match SL2 beta2. Start
- implementing new feature (while writing unit tests).
- * MoonIsolatedStorageFileStream.cs: Add new async methods [Begin|
- End][Read|Write] present in b2. Fix endless recursion in WriteByte.
- 2008-04-18 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Fix CreateDirectory to accept multiple
- subdirectories. Avoid leaking full path in DeleteDirectory. Fix
- GetDirectoryNames to work with path (and the search pattern).
- [Fix bug #376188]
- 2008-03-28 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Don't show the full path on exception if a
- directory can't be created (fix bug #354539). Also fix path/patterns when
- looking for files (it behave differently than DirectoryInfo does).
- 2008-01-17 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Fix bug #354539
- 2007-12-18 Stephane Delcroix <[email protected]>
- * IsolatedStorageFileEnumerator.cs: Ifdef'ing out too. Fixes the build.
- 2007-12-18 Miguel de Icaza <[email protected]>
- * Ifdef out the large bodies of code that will just not work with
- Silverlight, ran into this problem again trying to run
- http://fluxtools.net/emailphotos
- Its not worth trying to alter this implementation of
- IsolatedStorage to work in both the regular and the Moonlight
- profiles, instead am going to write a simple implementation while
- we wait for the real 2.0 API to come out.
- 2007-11-06 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFileStream.cs: Handle rooted paths. Patch by Jay
- Miller to fix bug #324983.
- 2006-04-07 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Loading/saving the identities used to
- isolate the storage requires the permission to [de]serialize them too.
- 2005-11-09 Sebastien Pouliot <[email protected]>
- * IsolatedStorageScope.cs: Added missing [Serializable] in 2.0 profile
- 2005-10-04 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Add a call to GC.SuppressFinalize in Dispose
- (even if we're not disposing anything).
- 2005-06-22 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Only assembly evidences are considered to
- resolve policy. Changed resolve method used (instead of changing it's
- code).
- 2005-06-14 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFileStream.cs: Remove Close method from NET_2_0.
- * IsolatedStorageFile.cs: Implemented missing MaximumSize property
- and GetPermission method.
- 2005-06-05 Gonzalo Paniagua Javier <[email protected]>
- * IsolatedStorageFileStream.cs: check the FileMode here as FileStream
- throws a different exception.
- 2005-04-25 Sebastien Pouliot <[email protected]>
- * INormalizeForIsolatedStorage.cs: Added [ComVisible(true)] for 2.0.
- * IsolatedStorage.cs: Added [ComVisible(true)] for 2.0 except for new
- property ApplicationIdentity.
- * IsolatedStorageException.cs: Added [ComVisible(true)] for 2.0.
- * IsolatedStorageFile.cs: Now calls UnprotectedGetEvidence to get the
- assembly evidences. Added [ComVisible(true)] for 2.0.
- * IsolatedStorageFileStream.cs: Added [ComVisible(true)] for 2.0.
- * IsolatedStorageScope.cs: Added [ComVisible(true)] for 2.0.
- 2005-03-24 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Added an assert for unrestricted file access
- to the class. This is "ok" as the user cannot control the base path
- for isolated storage but will be updated to be more "precise" when
- imperative assert are supported in the runtime.
- * IsolatedStorageFileStream.cs: Changed constructors so the assert
- for unrestricted file access is limited to constructors (not the whole
- class). Added LinkDemand for UnmanagedCode to get Handle and
- SafeFileHandle (2.0) properties.
- 2005-03-17 Sebastien Pouliot <[email protected]>
- * IsolatedStorageScope.cs: Add missing BOOTSTRAP_NET_2_0 to new enum
- values. Fix #73046.
- * IsolatedStorageFile.cs: Remove commented security attributes.
- 2005-03-15 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Added CAS demands (imperative when possible)
- for IsolatedStoragePermission. The security attributes for NET_2_0 are
- commented until #73046 is fixed.
- * IsolatedStorageFileStream.cs: Now use StackFrame(2) to find which
- assembly is really calling the IsolatedStorageFileStream when no
- default is supplied. Throw DirectoryNotFoundException when a directory
- inside the isolated storage is missing.
- 2005-01-31 Sebastien Pouliot <[email protected]>
- * IsolatedStorage.cs: Added checks to get identities.
- * IsolatedStorageFile.cs: Added support for identities (assembly,
- domain and, for 2.0, application).
- * IsolatedStorageFileEnumerator.cs: New. Internal enumerator for
- IsolatedStorageFile.
- * IsolatedStorageFileStream.cs: Now use the new FileStream
- constructor to ensure filestream name stays [Unknown].
- * IsolatedStorageInfo.cs: Removed (no more required).
- * IsolatedStorageScope.cs: Added new 2.0 scopes: Application and
- Machine.
- 2004-07-11 Gonzalo Paniagua Javier <[email protected]>
- * IsolatedStorageInfo.cs: useGetFolderPath instead of getting "HOME".
- 2004-06-13 Gert Driesen <[email protected]>
- * IsolatedStorage.cs: really mark the storage_scope field private
- 2004-06-09 Gert Dresen <[email protected]>
- * IsolatedStorage.cs: use private variable for holding scope,
- set scope in InitStore method, removed need for extra protected
- member (public API fix)
- * IsolatedStorageFile.cs: use InitStore to initialize scope
- 2004-05-12 Sebastien Pouliot <[email protected]>
- * IsolatedStorage.cs: More details on MonoTODO. Throw exceptions on
- AssemblyIdentity and DomainIdentity properties.
- * IsolatedStorageFile.cs: More details on MonoTODO.
- * IsolatedStorageFileStream.cs: Removed MonoTODO on class. Now use
- Path.Combine to build filenames (constructor) and throw an exception
- when we try to get the handle (as documented).
- 2003-07-30 Duncan Mak <[email protected]>
- * IsolatedStorageInfo.cs (CreateAssemblyFilename):
- (CreateDomainFilename): Replace String.Format with Path.Combine.
-
- * IsolatedStorageFile.cs:
- (GetStore): Update storage_scope accordingly.
- (GetUseStoreForAssembly): Include IsolatedStorageScope.User.
- (GetUseStoreForDomain): Include IsolatedStorageScope.User and
- IsolatedStorageScope.Assembly.
-
- * IsolatedStorage.cs:
- (CurrentSize):
- (MaximumSize): throw InvalidOperationExceptions. This is a
- subclass responsibility.
- (Scope): Implemented using a static field, storage_scope.
- (SeparatorInternal)
- (SeparatorExternal): Implemented. Use Path.DirectorySeparatorChar
- for SeparatorExternal.
- 2003-02-18 Jonathan Pryor <[email protected]>
- * IsolatedStorageFile.cs: Fix spelling error (GetUseStoreForDomain -->
- GetUserStoreFor Domain). Reported by
- Torsten Rendelmann <[email protected]>.
- 2003-01-19 Sebastien Pouliot <[email protected]>
- * IsolatedStorageFile.cs: Added missing [CLSCompliant(false)]
- to CurrentSize and MaximumSize to fix compilation (at least
- under Windows/csc).
- 2003-01-18 Jonathan Pryor <[email protected]>
- - General: Get a simple implementation working. Simple, not-all-there, but
- sufficient to get "Programming C#" example 21-17 working under Mono. This
- doesn't say much, as it's not a stress-test by any means.
- * INormalizeForIsolatedStorage.cs: re-indent to fit mono code style
- * IsolatedStorage.cs: match mono coding guidelines
- * IsolatedStorageFileStream.cs: Add members that "C# In A Nutshell" claims
- the class should override. Most of these members just delegate to the
- base class, though. CreateIsolatedPath is used to get the actual filename
- for the IsolatedStorageFileStream.
- * IsolatedStorageScope.cs: Documentation goes in monodoc, so there's no
- point in having C# doc-tags. Add "Roaming" member, which "C# In A
- Nutshell" lists.
- * IsolatedStorageFile.cs: Public class documented in "C# In A Nutshell".
- Simple implementation. Will probably need work to conform with .NET,
- address security concerns.
- * IsolatedStorageInfo.cs: Abstract IsolatedStorage information used by other
- classes, such as the directory isolated storage is located under, how to
- calculate the size of isolated storage, etc.
- 2002-02-19 Duncan Mak <[email protected]>
- * IsolatedStorageFileStream.cs: Added MonoTODO here. This class
- is completely stubbed out (over the summer) and didn't get
- properly MonoTODO'd.
- 2002-02-08 Duncan Mak <[email protected]>
- * IsolatedStorage.cs: Looked at MemberInfo.cs, another fellow
- abstract class. Oh, that's what it means! Removed unnesscessary
- MonoTODO attributes.
- 2002-02-07 Duncan Mak <[email protected]>
- * IsolatedStorage.cs: Added to CVS, stubbed out the API.
- * IsolatedStorageException.cs: Implemented.
- 2002-01-07 Duco Fijma <[email protected]>
- * Created INormalizeForIsolatedStorage
|