ChangeLog 5.8 KB

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