ChangeLog 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. 2002-04-30 Sergey Chaban <[email protected]>
  2. * BinaryReader.cs: Allocate buffer before its first use.
  3. Handle end of stream properly. Methods to read native types
  4. (ReadInt* etc.) are little-endian (see Compact Framework docs).
  5. * BinaryWriter.cs: Store data in little-endian format.
  6. Use internal buffer for conversions.
  7. 2002-03-31 Dick Porter <[email protected]>
  8. * Directory.cs: Strip out "." and ".." from returned list
  9. * FileAttributes.cs: Get the right enum values
  10. 2002-03-28 Dietmar Maurer <[email protected]>
  11. * TextWriter.cs (write): added check for null
  12. 2002-03-28 Dan Lewis <[email protected]>
  13. * Directory.cs: Throws DirectoryNotFoundException.
  14. * MonoIO.cs: Fixed to work around enum problem.
  15. 2002-03-27 Dan Lewis <[email protected]>
  16. * StreamReader.cs: Implemented ReadLine() and ReadEnd().
  17. 2002-03-27 Dan Lewis <[email protected]>
  18. * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
  19. DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
  20. wrapper and PAL classes.
  21. * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
  22. 2002-03-25 Mike Kestner <[email protected]>
  23. * MemoryStream.cs (Read): Fixed bug in exception throw.
  24. 2002-03-24 Mike Kestner <[email protected]>
  25. * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
  26. 2002-03-23 Martin Baulig <[email protected]>
  27. * StreamReader.cs: Always do buffered reading, use 4k blocks.
  28. (Read (char[], int, int)): Implemented.
  29. (DiscardBufferedData): Implemented.
  30. 2002-03-21 Mike Kestner <[email protected]>
  31. * StreamReader.cs : Fill out, add buffering, and use encoding.
  32. 2002-03-19 Martin Baulig <[email protected]>
  33. * StreamWriter.cs (StreamWriter (string)): The default is to override
  34. the file, not to append to it.
  35. (StreamWriter (string path, bool append)): When appending, seek to the
  36. end of the file, otherwise truncate the file to zero length.
  37. (Dispose (bool)): Close the internalStream.
  38. (Flush): Flush the interalStream.
  39. (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
  40. 2002-03-19 Dan Lewis <[email protected]>
  41. * FileStream.cs: Flush buffer before FileSetLength.
  42. 2002-02-28 Miguel de Icaza <[email protected]>
  43. * Stream.cs (NullStream): Do not track position, this beast does
  44. nothing in practice.
  45. 2002-03-15 Dan Lewis <[email protected]>
  46. * SearchPattern.cs: New class. Glob matching code for Directory.
  47. * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
  48. 2002/03/15 Nick Drochak <[email protected]>
  49. * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
  50. This code seemed to be copied from somewhere, and it was close,
  51. but didn't match the docs. This was the last bit needed to get
  52. NAnt to compile with our class libs.
  53. 2002-03-12 Duncan Mak <[email protected]>
  54. * EndOfStreamException.cs:
  55. * FileLoadException.cs:
  56. * FileNotFoundException.cs:
  57. * PathTooLongException.cs: Changed the base classes to IOException
  58. instead of SystemException.
  59. * IOException.cs: Added missing constructors.
  60. 2002-03-07 Nick Drochak <[email protected]>
  61. * FileMode.cs: Docs don't say this should be explicitly derived from
  62. int, so just make it a normal Enum.
  63. 2002-03-02 Jason Diamond <[email protected]>
  64. * StringReader.cs: Fixed off-by-one error in Peek() and Read().
  65. 2002-02-12 Nick Drochak <[email protected]>
  66. * PathTooLongException.cs: put it in the correct namespace
  67. * EndOfStreamException.cs: put it in the correct namespace
  68. Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <[email protected]>
  69. * Directory.cs: handle opendir() return NULL and absolute filenames.
  70. 2002-01-31 Duncan Mak <[email protected]>
  71. * FileLoadException.cs:
  72. * FileNotFoundException: Added missing bits for serialization.
  73. Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <[email protected]>
  74. * Directory.cs: allow directories in GetFiles() mask.
  75. 2002-01-23 Miguel de Icaza <[email protected]>
  76. * FileInfo.c (CopyTo, MoveTo): Implement.
  77. * FileStream.cs: Add argument checking to the constructor.
  78. * File.cs: Rewrote most of the file. Implement Copy, Open, Create,
  79. OpenText, OpenWrite, Move. Made pending methods flagged as MonoTODO.
  80. * Directory.cs (Delete): reimplement without using DirectoryInfo.
  81. (Delete): Implement the recursive version.
  82. (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
  83. (Move): Reimplement.
  84. (getNames): dead code removal.
  85. * Path.cs: define an internal DirectorySeparatorStr that we use in
  86. a few spots.
  87. * Wrapper.cs: Updated to new version.
  88. * DirectoryInfo (Delete): Implement using the Directory API.
  89. * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
  90. Delete, Create, Parent, Exists, MoveTo): Implement.
  91. * Directory.cs (GetListing): implement new utility function.
  92. (GetDirectories): Implement.
  93. (GetFileSystemEntries): Implement.
  94. (GetFiles): Implement.
  95. * CheckArgument.cs (Path): Do not allow null by default.
  96. Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <[email protected]>
  97. * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
  98. assembly in corlib.
  99. 2002-01-20 Nick Drochak <[email protected]>
  100. * SeekOrigin.cs: Added Serializable attribute.
  101. 2002-01-19 Duncan Mak <[email protected]>
  102. * PathTooLongException.cs:
  103. * EndOfStreamException.cs: Added to CVS.
  104. Thu Jan 10 12:06:46 MST 2002 Matt Kimball <[email protected]>
  105. * BufferedStream.cs: Initial implemenation. The synchronous
  106. methods for both reading and writing are implemented. I'll do the
  107. asynchronous methods in a bit.
  108. Wed Jan 9 16:04:39 MST 2002 Matt Kimball <[email protected]>
  109. * BinaryWriter.cs: Initial implementation. And it's all there.
  110. * BinaryReader.cs: The constructor now uses the passed in encoding,
  111. not UTF8 always.
  112. Wed Jan 9 13:54:28 MST 2002 Matt Kimball <[email protected]>
  113. * BinaryReader.cs: Initial implementation. I think it's complete.
  114. 2002-01-04 Ravi Pratap <[email protected]>
  115. * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
  116. attribute decorations.
  117. * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
  118. Path.cs, TextReader.cs, TextWriter.cs : Ditto.
  119. * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs:
  120. Ditto.
  121. 2001-12-11 Dick Porter <[email protected]>
  122. * FileStream.cs: Use handles rather than casting file descriptors.
  123. Added Handle property.
  124. Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <[email protected]>
  125. * CheckPermission.cs: disable ModeAccess() code: it's wrong.
  126. * FileStream.cs: only trow an exception if the read failed in ReadByte().
  127. * StreamReader.cs: implement Peek and Read.
  128. * TextWriter.cs: CLSCompliant updates.
  129. 2001-11-10 Sean MacIsaac <[email protected]>
  130. * FileNotFoundException.cs: Added some constructors
  131. * Path.cs (GetFullPath): Fixed implementation
  132. Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <[email protected]>
  133. * DirectoryNotFoundException.cs: implemented.
  134. Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
  135. * File.cs: fix signatures of the Open() and OpenRead() functions
  136. (they are static).
  137. Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <[email protected]>
  138. * FileLoadException.cs, FileNotFoundException.cs: added.
  139. 2001-08-28 Dietmar Maurer <[email protected]>
  140. * TextReader.cs: implemented the Read method
  141. * StreamReader.cs: impl. stubs
  142. * StreamWriter.cs: impl.
  143. * TextWriter.cs: implemented Write and WriteLine methods
  144. Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <[email protected]>
  145. * FileAccess.cs, FileMode.cs: change values to be compatible with
  146. the ms ones.
  147. Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <[email protected]>
  148. * IOException.cs: Implemented System.IO.Exception.
  149. 2001-07-18 Michael Lambert <[email protected]>
  150. *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
  151. 2001-07-19 Marcin Szczepanski <[email protected]>
  152. * System.IO.MemoryStream.cs: Added. Had quite a few cases of
  153. "LAMESPEC", but the tests work against the MS implementation so
  154. the major functions are right (ie. Read/Write/Seek). Some more
  155. tests required for the various constructors and exceptions.
  156. 2001-07-16 Marcin Szczepanski <[email protected]>
  157. * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
  158. New class implemenations.
  159. * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.