ChangeLog 7.8 KB

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