| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055 |
- 2003-07-10 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs: fixed bug #46060. Thanks to Carlos Barcenilla.
- 2003-06-30 Zoltan Varga <[email protected]>
- * FileStream.cs (Dispose): Flush the buffer even if we don't own the
- handle.
- * FileStream.cs: Add a new constructor parameter to turn off buffering.
- This is used by the Console.OpenStandard...() methods. Also fix
- argument checking in InitBuffer(), so a zero buffer size is also
- rejected.
- 2003-06-27 Dietmar Maurer <[email protected]>
- * Stream.cs: use async.delegate invoke
- 2003-06-18 Nick Drochak <[email protected]>
- * FileSystemInfo.cs: Refresh cache when changeing file times.
- 2003-06-11 Zoltan Varga <[email protected]>
- * FileStream.cs: Fix errors in previous checkins:
- (Write): Only take the shortcut route if the data is longer than the
- buffer length.
- (Write): Flush the buffer before writing out the new data
- (Write): Flush the buffer after writing out a segment since otherwise
- we will go into an infinite loop.
- (FlushBuffer): Remove my last change since it was clearly wrong.
- (Seek): Run FlushBuffer () after the in-buffer seek optimization.
- (Seek): Only use the in-buffer optimization if the buffer is not
- empty.
- (Length): Call FlushBuffer () since buffer data might change the size
- of the stream.
- 2003-06-09 Ville Palo <[email protected]>
- * FileStream.cs:
- - removed unusefull bugfix (DirectoryNotFoundException)
- - Flush before seek.
-
- 2003-06-09 Ville Palo <[email protected]>
- * FileStream.cs: Check buffer size before append/read -exceptios
-
- 2003-06-09 Ville Palo <[email protected]>
- * FileStream.cs: Check DirectoryNotFound before FileNotFound.
-
- 2003-06-09 Ville Palo <[email protected]>
- * FileStream.cs: Does not anymore flush while writing
-
- 2003-06-02 Nick Drochak <[email protected]>
- * FileInfo.cs (MoveTo): Throw exceptions when dest exists, and check
- for null too.
- 2003-05-27 Lluis Sanchez Gual <[email protected]>
- * BinaryReader.cs: Stream don't need to be seekable to use PeekChar.
- 2003-05-23 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: fixed bug #42631.
- 2003-05-22 Zoltan Varga <[email protected]>
- * File.cs (Move): Allow moving of directories.
- Fix 'destination is a directory' test.
- 2003-05-21 Ben Maurer <[email protected]>
- * StringWriter.cs: Fixed bug #43431: "StringWriter
- .ctor(CultureInfo) does not create a new StringBuilder ()"
- 2003-05-11 Zoltan Varga <[email protected]>
- * FileStream.cs (FlushBuffer): After a flush, the buffer is
- advanced by buf_offset bytes, not buf_length bytes.
- 2003-05-16 Dick Porter <[email protected]>
- * MonoIO.cs: Implement GetTempPath
- 2003-05-14 Gonzalo Paniagua Javier <[email protected]>
- * DirectoryInfo.cs: fixed bug #42991.
- * Path.cs:
- (CanonicalizePath): store the value of the trimmed input string. Make it
- work with paths such as "/home/xxx/.".
- 2003-05-08 Ben Maurer <[email protected]>
- * Path.cs
- (CanonicalizePath) Fixed bug #42631, which duplicated the
- root part of the path under Windows.
- 2003-05-08 Ville Palo <[email protected]>
- * FileSystemInfo.cs: Added 1.1 properties LastAccessTimeUtc,
- LastWriteTimeUtc and CreationTimeUtc
-
- 2003-05-07 Ben Maurer <[email protected]>
- * Path.cs
- (GetPathRoot) Added support for UNC paths.
- (CanonicalizePath) Added optimizations per Miguel's requests.
- 2003-05-06 Ville Palo <[email protected]>
- * BufferedStream.cs:
- - Removed unusefull code.
- - Added ObjectDisposedException to Position
- - Dont flush if stream is allready closed.
- - Flush throws also ObjectDisposedException.
- * Directory.cs:
- - GetFileSystemEtries: ArgumentNullException if pattern is null
- * DirectoryInfo.cs: Fixed little MoveTo () bug.
- * FileInfo.cs:
- - Exists: If file does not exists when instance is created the
- value of the Exists property does not change even if file is created
- afterwards.
- - Delete: If path is a directory UnauthorizedException is thrown.
- - CopyTo: Now we can overwrite file if wanted.
- * Path.cs:
- - GetFullPath: Now throws exception when path is " ".
-
- 2003-05-04 Ben Maurer <[email protected]>
- * Directory.cs (GetLogicalDrives) Marked as MonoTODO
- because we need to implement the method on Windows.
- * Path.cs
- (CanonicalizePath) Added new function to get
- rid of . and .. in path names. Need to figure out what
- other functions should call this.
- (GetFullPath) Added call to the above function.
-
- 2003-05-04 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs:
- (.ctor): fixed parameters passed to FileNotFoundException.
- 2003-04-25 Dietmar Maurer <[email protected]>
- * BinaryReader.cs (Read): make sure the buffer is big enough (fix
- bug # 40702)
- 2003-04-24 Pedro Martínez Juliá <[email protected]>
- * BufferedStream.cs: Test if it's possible to seek in a Stream
- before access to Position. This prevents the exception thrown when
- the stream is System.Net.Sockets.NetworkStream.
- 2003-04-22 Ville Palo <[email protected]>
- * Directory.cs: clean up --> performance improvment. Some exceptions
- are now checked in File.cs.
- * File.cs: Implemented Get/SetXXXTimeUtc () methods. Some bugfixes.
-
- 2003-04-21 Ville Palo <[email protected]>
- * Directory.cs: lots of fixes.
- - Added GetXXXtimeUtc () (v1.1) methods.
- - Added SetXXXtimeUtc () (v1.1) methods.
-
- 2003-04-20 Igor Nosyryev <[email protected]>
- * StringReader.cs (Read): Increment nextChar by charsToRead
- instead of count, that will guarantee that the next time the
- method is called, it will return 0 on an empty string rather than
- throwing an exception
- 2003-04-19 Ville Palo <[email protected]>
- * BufferedStream.cs: Some fixes, mostly throwing exceptions.
- * MemoryStream.cs: Changed the order of exception checking
- * StringReader.cs: little clean up
-
- 2003-04-14 Ville Palo <[email protected]>
- * BinaryWriter.cs: Fixed decimal writing and lots of
- ObjectDisposedExceptions added.
-
- 2003-04-13 Ville Palo <[email protected]>
- * BinaryReader.cs: Fix to ReadDecimal() method.
-
- 2003-04-13 Ville Palo <[email protected]>
- * StringReader.cs: Added some ObjectDisposedExceptions.
- * StringWriter.cs: Added some ObjectDisposedExceptions.
- * BinaryReader.cs: Added some ObjectDisposedExceptions.
-
- 2003-04-13 Gonzalo Paniagua Javier <[email protected]>
- * FileStream.cs: fixed the windows build. This is an mcs bug. I'll
- fill a bug report.
- 2003-04-12 Gonzalo Paniagua Javier <[email protected]>
- * FileStream.cs: fixed bug #40182 and made more unit test pass.
- 2003-04-11 Ville Palo <[email protected]>
- * FileStream.cs: Added new methods Lock () and Unlock ()
-
- 2003-04-11 Ville Palo <[email protected]>
- * StringReader.cs: Throws exceptions if constructor parameter is null.
-
- 2003-04-11 Ville Palo <[email protected]>
- * StringWriter.cs: Now throws an exception if StringBuilder parameter
- is null
-
- 2003-04-05 Miguel de Icaza <[email protected]>
- * TextWriter.cs: Implemented Synchronized method.
- * TextReader.cs: Implemented Synchronized method.
- 2003-04-04 Miguel de Icaza <[email protected]>
- * FileStream.cs (Read, ReadByte, Seek): throw
- ObjectDisposedException if the handle has been released.
-
- (Read): Throw exceptions specified in the spec.
- (Read, Write, ReadSegment, WriteSegment): There is no requirement for any
- instance methods of FileStream to be thread safe, so remove all
- the calls to lock on the object
- 2003-03-31 Nick Drochak <[email protected]>
- * Path.cs (GetDirectoryName): Throw proper execption when path is empty.
- 2003-03-20 Lluis Sanchez Gual <[email protected]>
- * FileNotFoundException.cs: fixed serialization bug.
- 2003-03-18 Atsushi Enomoto <[email protected]>
- * StringWriter.cs : don't release internalString on Dispose().
- 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs: fixed bug #39280.
- 2003-03-07 Gonzalo Paniagua Javier <[email protected]>
- * Directory.cs: readded mkdir -p behavior. Thanks to kiwnix for
- pointing it out.
- 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs: general fixes and reformatted. Passes all tests in
- the new MemoryStreamTest.
- 2003-03-05 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs: undo my bogus fix in ToArray. Allow GetBuffer and
- ToArray even after closing the stream.
- 2003-03-03 Gonzalo Paniagua Javier <[email protected]>
- * Directory.cs:
- (Move): don't use File.Move.
- * DirectoryInfo.cs: fixed Name property.
-
- Fixes bug #37755.
- 2003-03-02 Gonzalo Paniagua Javier <[email protected]>
- * DirectoryInfo.cs: changed ToString to match MS behavior.
- * Path.cs: further fixes to GetDirectoryName to return null in the
- same cases that MS does.
- Fixes bug #38387.
- 2003-03-02 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: fixed a couple of bugs reported in #35906.
- 2003-03-01 Gonzalo Paniagua Javier <[email protected]>
- * Directory.cs: fixed bugs #38939 and #38940. No need for separate
- unix/windows/unc shares code paths.
- 2003-02-27 Gonzalo Paniagua Javier <[email protected]>
- * File.cs: fix by Elan Feingold <[email protected]> for
- SetCreationTime, SetLastAccessTime and SetLastWriteTime.
- 2003-02-26 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs:
- (ToArray): return only the portion of the buffer that contains
- data, not the whole buffer. (note: this makes XmlDocument.Load work
- again with documents that have a <?xml without the 'encoding'
- attribute, which makes gtk-sharp generator work again).
- 2003-02-25 Nick Drochak <[email protected]>
- * File.cs (GetCreationTime): Throw proper execption when path is not
- found.
- Tue Feb 25 11:55:35 CET 2003 Paolo Molaro <[email protected]>
- * MemoryStream.cs: make it behave sanely when the stream is
- incrementally expanded.
- 2003-02-21 Dick Porter <[email protected]>
- * FileStream.cs: Use locks around buffer manipulations. Fixes bug
- 32344
- 2003-02-18 Dick Porter <[email protected]>
- * FileStream.cs: Make FileMode.Append work, and check for Seeking
- back over old data (undocumented ms behaviour, throws an exception
- if you try). Fixes bug 35975.
- 2003-02-17 Dick Porter <[email protected]>
- * FileStream.cs: Don't close the handle if the stream doesn't own
- it. Patch from Raymond Penners ([email protected]), bug
- 35623.
- 2003-02-14 Zoltan Varga <[email protected]>
- * FileStream.cs (Write): flush after writing the last segment as well.
- 2003-02-11 Gonzalo Paniagua Javier <[email protected]>
- * StringReader.cs:
- (ReadLine): fixed the case when the string ends with a '\n'.
- 2003-02-03 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs: create the buffer of the specified capacity.
- 2003-01-31 Patrik Torstensson
- * MemoryStream.cs: use BlockCopyInternal instead of Array.Copy, this is
- the same way as MS does it (performance improvement)
- 2003-01-29 Zoltan Varga <[email protected]>
- * Directory.cs (GetFileSystemEntries): moved error handling to the
- correct instance of GetFileSystemEntries so all callers can enjoy it.
- 2003-01-28 Zoltan Varga <[email protected]>
- * File.cs: add error handling to Get...Time methods.
- 2003-01-26 Zoltan Varga <[email protected]>
- * Directory.cs: fix GetParent so it actually works.
- 2003-01-24 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: fixlet to ChangeExtension for the case when the path is
- empty.
- 2003-01-23 Gonzalo Paniagua Javier <[email protected]>
- * BufferedStream.cs: don't try to write a 0 sized array on when
- flushing the stream.
-
- Fixes bug #37045.
- 2003-01-18 Jonathan Pryor <[email protected]>
- * FileStream.cs: Add IsAsync property. (Documented in "C# In A Nutshell".)
- 2003-01-06 Gonzalo Paniagua Javier <[email protected]>
- * MemoryStream.cs: fixed bug #36319.
- 2002-12-16 Eduardo Garcia Cebollero <[email protected]>
-
- * Directory.cs: Some fixes to SMB shares handling, and not compiling
- with csc, mcs compiles it correctly (mcs bug 35652)
- 2002-12-14 Eduardo Garcia Cebollero <[email protected]>
- * Directory.cs: Some fixes related to correct some exceptions thrown
- 2002-12-11 Eduardo Garcia Cebollero <[email protected]>
- * Directory.cs: Some Exceptions added, fixed GetParent(),
- CreateDirectory() should work with unix, native windows and
- windows samba shares. Converted end-lines from dos-mode to unix-mode
- 2002-12-08 Eduardo Garcia Cebollero <[email protected]>
- * Directory.cs: CreateDirectory works now with Absolute paths
- too, not only with relative ones.
- 2002-12-07 Peter Williams <[email protected]>
- * Directory.cs: Don't use the uninitialized pathsumm here.
- Don't try and create "" if we're using an absolute path.
- 2002-12-07 Eduardo Garcia Cebollero <[email protected]>
- * Directory.cs: Now the creation of a new directory works recursively
- it will make parents as needed.
- 2002-11-21 Gonzalo Paniagua Javier <[email protected]>
- * BufferedStream.cs: applied patch from <[email protected]> that
- fixes Flush ().
- Tue Nov 19 13:01:22 CET 2002 Paolo Molaro <[email protected]>
- * StreamWriter.cs: output the encoding preamble at the start of a
- stream if needed.
- 2002-11-07 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
- 2002-11-06 Miguel de Icaza <[email protected]>
- * StreamWriter.cs: Changed all Encoding.UTF8 to Encoding.UTF8Unmarked.
- 2002-10-31 Dick Porter <[email protected]>
- * FileStream.cs: Fix buffering properly this time. Also kludge
- around broken pipe errors, treating them as EOF instead of
- throwing an IO exception.
- * MonoIO.cs: Return the error status in a parameter, as the
- GetLastError() value has long since been blown away if we try and
- look it up in a subsequent internal call invocation.
- * FileSystemInfo.cs:
- * FileInfo.cs:
- * File.cs:
- * Directory.cs: MonoIO methods now have an error parameter
- 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
- * TextReader.cs: implemented ReadBlock ().
- 2002-10-30 Miguel de Icaza <[email protected]>
- * StreamWriter.cs: Ditto for Null stream.
- * BinaryReader.cs: Use Unmarked here too.
- * BinaryWriter.cs: Use the UTF8Unmarker encoding by default, this
- is what .NET does.
- 2002-10-23 Dick Porter <[email protected]>
- * FileStream.cs: Implemented CanSeek, and used it around all the
- calls to MonoIO.Seek. Fixed buffering in Read() so that it
- doesn't block forever on short reads.
- * MonoFileType.cs: New enum for GetFileType
-
- * MonoIO.cs: Added GetFileType
- 2002-10-21 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs: ReadLine now treats a \r not followed by a \n as a
- \n (this is what MS does).
- 2002-10-18 Dick Porter <[email protected]>
- * FileStream.cs: SeekOrigin.End still calculates the offset from
- the end of the file with positive values extending the length.
- Fixes bug 32471.
- 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: some cleanup. Thanks to Martin Aliger.
- 2002-10-03 Gonzalo Paniagua Javier <[email protected]>
- * FileStream.cs: throw an exception if trying to open a directory.
- Thanks to Martin Aliger.
- 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: fixes bug #28046.
- 2002-09-27 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs: give more information when wrong parameters passed.
- 2002-09-21 Miguel de Icaza <[email protected]>
- * FileStream.cs: Do not call FSync on the file.
- 2002-09-16 Miguel de Icaza <[email protected]>
- * TextWriter.cs (Null): The Null field should be an instance of a
- TextWriter class that does nothing, so it is an instance of the
- NullTextWriter class.
- 2002-09-16 Nick Drochak <[email protected]>
- * MemoryStream.cs (Close): Don't throw an exception if the stream
- is already closed.
- 2002-09-15 Miguel de Icaza <[email protected]>
- * FileStream.cs (Dispose): Call FlushBuffer(), and not Flush, as
- Flush calls fsync().
- The API docs show no explicit mention that Flush() should even do
- an fsync, I am thinking that we should drop that from the
- runtime.
- 2002-09-09 Miguel de Icaza <[email protected]>
- * StreamWriter.cs: When no encoding is provided, create an
- encoding without markers, this is what MS does.
- 2002-09-06 Miguel de Icaza <[email protected]>
- * StreamReader.cs: Implement detection of byte marks and skipping
- of byte marks at the beginning of the stream.
- (ReadToEnd): Use buffered read instead of char-by-char
- processing.
- Correct the default arguments for creating the StreamReader.
- 2002-08-29 Gonzalo Paniagua Javier <[email protected]>
- * CheckArgument.cs: fixed check for empty string.
- * Path.cs: various fixes. It passes all the tests in new PathTest.
- 2002-08-29 Duncan Mak <[email protected]>
- * StreamWriter.cs: Set DisposedAlready after calling flush. Fixes
- the build for gtk#.
- 2002-08-27 Gonzalo Paniagua Javier <[email protected]>
- * BinaryReader.cs:
- * BinaryWriter.cs:
- * MemoryStream.cs:
- * StreamReader.cs:
- * StreamWriter.cs:
- * StringReader.cs:
- * StringWriter.cs:
- * TextWriter.cs: IDisposable fixes.
- 2002-08-24 Miguel de Icaza <[email protected]>
- * StreamReader.cs: Removed TODOs, as the code seems to be
- complete.
- * Path.cs (GetTempFileName): Make this routine atomic by not
- testing and then creating, but using the create call to ensure
- that we own the filename.
- 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
- * FileLoadException.cs: implemented ToString.
- * StreamWriter.cs: added Null field and implemented Write (char) and
- Write (char []).
- 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs: implemented NullStreamReader.
- 2002-08-21 Miguel de Icaza <[email protected]>
- * Path.cs (GetDirectoryName): Fix for filenames with size = 1
- * File.cs: Removed all references that threw exceptions when the
- paths contains a colon, as this is a valid part of an identifier
- on Unix.
- Everywhere: The String.Empty return from GetDirectoryName means
- that there is no directory information about the path.
- 2002-08-20 Gonzalo Paniagua Javier <[email protected]>
- * FileNotFoundException.cs: use Message and InnerException from base
- class. Changed Message and ToString ().
- 2002-08-19 Dick Porter <[email protected]>
- * BinaryWriter.cs: The length of a string is counted in bytes, not
- chars
- 2002-08-18 Dick Porter <[email protected]>
- * BinaryReader.cs: Fixed buffering
- 2002-08-09 Nick Drochak <[email protected]>
- * BinaryReader.cs: added virtual to Dispose(bool).
- 2002-08-03 Jason Diamond <[email protected]>
- * StringWriter.cs: Return UnicodeEncoding for Encoding property.
- 2002-08-03 Jason Diamond <[email protected]>
- * StreamWriter.cs: Use GetByteCount() to get exact length instead
- of GetMaxByteCount when converting chars to bytes.
- 2002-07-31 Duncan Mak <[email protected]>
- * StreamReader.cs:
- (Dispose): Added and implmented.
- * StreamWriter.cs:
- (Dispose): Fixed visibility.
- (Initialize): Fixed visibility, made internal.
- * BinaryReader.cs:
- (Dispose): Fixed visibility.
- 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
- * File.cs:
- (Create): allow file names without path.
- Fri Jul 26 15:45:04 CEST 2002 Paolo Molaro <[email protected]>
- * FileStream.cs: patch from [email protected] to add
- Name property support.
- 2002-07-20 Dick Porter <[email protected]>
- * MonoIO.cs: Added icall to CreatePipe
- 2002-07-18 Gonzalo Paniagua Javier <[email protected]>
- * FileInfo.cs: fixes buglet #27940
- 2002-07-17 Gonzalo Paniagua Javier <[email protected]>
- * Path.cs: removed unneeded line from GetExtension.
- 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
- * FileStream.cs:
- (.ctor): call MonoIO.GetException with the file name.
- 2002-07-02 Mike Kestner <[email protected]>
- * StreamReader.cs: Guard against ^\n lines as pointed out by Gonzalo.
- 2002-07-02 Mike Kestner <[email protected]>
- * StreamReader.cs: Revert the last Peek change and fix the ReadLine
- end of line detection code instead.
- 2002-07-02 Gonzalo Paniagua Javier <[email protected]>
- * StreamReader.cs:
- (Peek): no need to have seek capabilitites.
- 2002-06-17 Dietmar Maurer <[email protected]>
- * Path.cs (ChangeExtension): handle some special cases (fixes bug #25319)
- * File.cs (Delete): only call Directory.Exists() if DirName != ""
- 2002-06-12 Gonzalo Paniagua Javier <[email protected]>
- * Directory.cs: fixed bug #26133 and also test if the directory exist
- before performing the search.
- 2002-06-12 Nick Drochak <[email protected]>
- * StringReader.cs (ReadLine): Return null when we get to end of the
- string.
- 2002-05-22 Lawrence Pit <[email protected]>
- * StreamWriter.cs: added ability to write null value
-
- 2002-05-19 Lawrence Pit <[email protected]>
- * Stream.cs: NullStream.ReadByte now returns -1 instead of 0 to
- prevent endless loops.
- 2002-05-17 Dan Lewis <[email protected]>
- * FileStream.cs: Enforce lower bound on buffer size.
- 2002-05-16 Piers Haken <[email protected]>
- * Stream.cs: Implement synchronous {Begin|End}{Read|Write}() methods.
- 2002-05-17 Nick Drochak <[email protected]>
- * StreamWriter.cs: Implement buffering. Also implemented dispose
- pattern as recommended by the MS docs. Must call Close() now
- to ensure the buffer is flushed.
- 2002-05-15 Nick Drochak <[email protected]>
- * Path.cs (GetDirectoryName): Return String.Empty if there is no
- directory
- * StreamReader.cs: Add some parameter checking on file names.
- * StreamWriter.cs: Add some parameter checking on file names.
- 2002-05-14 Nick Drochak <[email protected]>
- * File.cs: Add parameter checks to most methods. Not completely done,
- but all current unit tests pass.
- * Path.cs: Implement GetTempFileName().
- 2002-05-10 Nick Drochak <[email protected]>
- * StreamWriter.cs (Flush): Throw proper exception if internal stream
- has already been closed when we try to flush.
- 2002/05/10 Nick Drochak <[email protected]>
- * FileNotFoundException.cs (ToString): Don't try to use the inner
- exception, because it might be null. Use the message instead.
- 2002-05-09 Nick Drochak <[email protected]>
- * File.cs (Delete): Do not throw an exception if the file does not
- exist.
- 2002-05-08 Mike Gray <[email protected]>
- * File.cs: According to ECMA spec and MS docs Copy(src, dest)
- should not overwrite dest by default.
- 2002-05-08 Nick Drochak <[email protected]>
- * StreamWriter.cs: Add paramter check to constructors and throw
- exceptions where appropriate.
- Tue May 7 11:47:46 CEST 2002 Paolo Molaro <[email protected]>
- * StreamReader.cs: return the number of chars read even if we diddn't
- fill the whole buffer (makes Sergey's ilasm work with mono).
- 2002-05-07 Mike Gray <[email protected]>
- * FileInfo.cs (Create): Implement missing method.
- 2002-05-07 Mike Gray <[email protected]>
- * File.cs: Implemented CreateText method, and fixed dst compares
- to compare against "" instead of null twice.
- 2002-05-05 Nick Drochak <[email protected]>
- * StreamReader.cs: Throw exceptions where needed. Changed Null field to
- use new internal class since null cannot be passed to constructor
- anymore. Also, fix a coule of small bugs.
- 2002-05-03 Nick Drochak <[email protected]>
- * MemoryStream.cs: Refrain from allocating array until the space is
- really needed. This fixes a bug in the Length property when the
- constructor without the byte array is used.
- 2002-05-01 Duncan Mak <[email protected]>
- * DirectoryNotFoundException.cs (constructor): Added missing
- serialization constructor.
- 2002-04-30 Duncan Mak <[email protected]>
- * FileLoadException.cs (constructors): Added missing (string,
- string) ctor, as well as (string, string, Exception) ctor.
- (Message): Added more info to the error message
- (ToString): Added. We'll need to add the StackTrace stuff when
- that works.
- * FileShare.cs: Add a missing field, Inheritable.
-
- * TextReader.cs: Renamed Synchronised method to Synchronized.
- * TextWriter.cs: Renamed Synchronised method to Synchronized.
- Renamed protected member coreNewLine to CoreNewLine.
- 2002-04-30 Sergey Chaban <[email protected]>
- * BinaryReader.cs: Allocate buffer before its first use.
- Handle end of stream properly. Methods to read native types
- (ReadInt* etc.) are little-endian (see Compact Framework docs).
- * BinaryWriter.cs: Store data in little-endian format.
- Use internal buffer for conversions.
- 2002-03-31 Dick Porter <[email protected]>
- * Directory.cs: Strip out "." and ".." from returned list
- * FileAttributes.cs: Get the right enum values
- 2002-03-28 Dietmar Maurer <[email protected]>
- * TextWriter.cs (write): added check for null
- 2002-03-28 Dan Lewis <[email protected]>
- * Directory.cs: Throws DirectoryNotFoundException.
- * MonoIO.cs: Fixed to work around enum problem.
- 2002-03-27 Dan Lewis <[email protected]>
- * StreamReader.cs: Implemented ReadLine() and ReadEnd().
- 2002-03-27 Dan Lewis <[email protected]>
- * Directory.cs, File.cs, FileSystemInfo.cs, FileInfo.cs,
- DirectoryInfo.cs, Path.cs: Modified to use MonoIO class instead of
- wrapper and PAL classes.
- * MonoIO.cs, MonoIOStat.cs, MonoIOError.cs: Added.
- 2002-03-25 Mike Kestner <[email protected]>
- * MemoryStream.cs (Read): Fixed bug in exception throw.
- 2002-03-24 Mike Kestner <[email protected]>
- * StreamReader.cs (ReadBuffer): Fix buffer merging bugs.
- 2002-03-23 Martin Baulig <[email protected]>
- * StreamReader.cs: Always do buffered reading, use 4k blocks.
- (Read (char[], int, int)): Implemented.
- (DiscardBufferedData): Implemented.
- 2002-03-21 Mike Kestner <[email protected]>
- * StreamReader.cs : Fill out, add buffering, and use encoding.
- 2002-03-19 Martin Baulig <[email protected]>
- * StreamWriter.cs (StreamWriter (string)): The default is to override
- the file, not to append to it.
- (StreamWriter (string path, bool append)): When appending, seek to the
- end of the file, otherwise truncate the file to zero length.
- (Dispose (bool)): Close the internalStream.
- (Flush): Flush the interalStream.
- (Write (char[], int, int)): Flush the internalStream in auto-flush-mode.
- 2002-03-19 Dan Lewis <[email protected]>
- * FileStream.cs: Flush buffer before FileSetLength.
- 2002-02-28 Miguel de Icaza <[email protected]>
- * Stream.cs (NullStream): Do not track position, this beast does
- nothing in practice.
- 2002-03-15 Dan Lewis <[email protected]>
- * SearchPattern.cs: New class. Glob matching code for Directory.
- * Directory.cs: Changed to use SearchPattern instead of mono_glob_*()
- 2002/03/15 Nick Drochak <[email protected]>
- * DirectoryInfo.cs: Fixed the overloaded GetDirectories and GetFiles.
- This code seemed to be copied from somewhere, and it was close,
- but didn't match the docs. This was the last bit needed to get
- NAnt to compile with our class libs.
- 2002-03-12 Duncan Mak <[email protected]>
- * EndOfStreamException.cs:
- * FileLoadException.cs:
- * FileNotFoundException.cs:
- * PathTooLongException.cs: Changed the base classes to IOException
- instead of SystemException.
- * IOException.cs: Added missing constructors.
-
- 2002-03-07 Nick Drochak <[email protected]>
- * FileMode.cs: Docs don't say this should be explicitly derived from
- int, so just make it a normal Enum.
- 2002-03-02 Jason Diamond <[email protected]>
- * StringReader.cs: Fixed off-by-one error in Peek() and Read().
- 2002-02-12 Nick Drochak <[email protected]>
- * PathTooLongException.cs: put it in the correct namespace
- * EndOfStreamException.cs: put it in the correct namespace
- Thu Jan 31 17:32:32 CET 2002 Paolo Molaro <[email protected]>
- * Directory.cs: handle opendir() return NULL and absolute filenames.
- 2002-01-31 Duncan Mak <[email protected]>
- * FileLoadException.cs:
- * FileNotFoundException: Added missing bits for serialization.
- Thu Jan 24 17:42:54 CET 2002 Paolo Molaro <[email protected]>
- * Directory.cs: allow directories in GetFiles() mask.
- 2002-01-23 Miguel de Icaza <[email protected]>
- * FileInfo.c (CopyTo, MoveTo): Implement.
- * FileStream.cs: Add argument checking to the constructor.
- * File.cs: Rewrote most of the file. Implement Copy, Open, Create,
- OpenText, OpenWrite, Move. Made pending methods flagged as MonoTODO.
-
- * Directory.cs (Delete): reimplement without using DirectoryInfo.
- (Delete): Implement the recursive version.
- (GetCreationTime, GetLastWriteTime, GetLastAccessTime): Implement.
- (Move): Reimplement.
- (getNames): dead code removal.
- * Path.cs: define an internal DirectorySeparatorStr that we use in
- a few spots.
- * Wrapper.cs: Updated to new version.
-
- * DirectoryInfo (Delete): Implement using the Directory API.
- * DirectoryInfo.cs (GetFiles, GetDirectories, GetFileSystemInfos,
- Delete, Create, Parent, Exists, MoveTo): Implement.
- * Directory.cs (GetListing): implement new utility function.
- (GetDirectories): Implement.
- (GetFileSystemEntries): Implement.
- (GetFiles): Implement.
- * CheckArgument.cs (Path): Do not allow null by default.
- Tue Jan 22 22:53:23 CET 2002 Paolo Molaro <[email protected]>
- * DirectoryInfo.cs, FileInfo.cs: do not use Debug from the system
- assembly in corlib.
- 2002-01-20 Nick Drochak <[email protected]>
- * SeekOrigin.cs: Added Serializable attribute.
- 2002-01-19 Duncan Mak <[email protected]>
- * PathTooLongException.cs:
- * EndOfStreamException.cs: Added to CVS.
- Thu Jan 10 12:06:46 MST 2002 Matt Kimball <[email protected]>
- * BufferedStream.cs: Initial implemenation. The synchronous
- methods for both reading and writing are implemented. I'll do the
- asynchronous methods in a bit.
-
- Wed Jan 9 16:04:39 MST 2002 Matt Kimball <[email protected]>
- * BinaryWriter.cs: Initial implementation. And it's all there.
- * BinaryReader.cs: The constructor now uses the passed in encoding,
- not UTF8 always.
- Wed Jan 9 13:54:28 MST 2002 Matt Kimball <[email protected]>
- * BinaryReader.cs: Initial implementation. I think it's complete.
- 2002-01-04 Ravi Pratap <[email protected]>
- * CheckArgument.cs, CheckPermission.cs, Directory.cs: MonoTODO
- attribute decorations.
- * DirectoryInfo.cs, File.cs, FileInfo.cs, FileSystemInfo.cs,
- Path.cs, TextReader.cs, TextWriter.cs : Ditto.
- * FileLoadException.cs, FileNotFoundException.cs, StreamReader.cs:
- Ditto.
- 2001-12-11 Dick Porter <[email protected]>
- * FileStream.cs: Use handles rather than casting file descriptors.
- Added Handle property.
- Wed Nov 14 16:47:47 CET 2001 Paolo Molaro <[email protected]>
- * CheckPermission.cs: disable ModeAccess() code: it's wrong.
- * FileStream.cs: only trow an exception if the read failed in ReadByte().
- * StreamReader.cs: implement Peek and Read.
- * TextWriter.cs: CLSCompliant updates.
- 2001-11-10 Sean MacIsaac <[email protected]>
- * FileNotFoundException.cs: Added some constructors
- * Path.cs (GetFullPath): Fixed implementation
- Fri Nov 2 18:27:58 CET 2001 Paolo Molaro <[email protected]>
- * DirectoryNotFoundException.cs: implemented.
- Tue Sep 25 18:54:06 CEST 2001 Paolo Molaro <[email protected]>
- * File.cs: fix signatures of the Open() and OpenRead() functions
- (they are static).
- Thu Sep 13 18:04:23 CEST 2001 Paolo Molaro <[email protected]>
- * FileLoadException.cs, FileNotFoundException.cs: added.
- 2001-08-28 Dietmar Maurer <[email protected]>
- * TextReader.cs: implemented the Read method
- * StreamReader.cs: impl. stubs
- * StreamWriter.cs: impl.
- * TextWriter.cs: implemented Write and WriteLine methods
- Sun Aug 26 23:01:41 CEST 2001 Paolo Molaro <[email protected]>
- * FileAccess.cs, FileMode.cs: change values to be compatible with
- the ms ones.
-
- Sun Aug 26 11:47:56 CEST 2001 Paolo Molaro <[email protected]>
- * IOException.cs: Implemented System.IO.Exception.
- 2001-07-18 Michael Lambert <[email protected]>
- *SeekOrigin.cs.cs, FileShare.cs, FileMode.cs, FileAccess.cs: Add.
- 2001-07-19 Marcin Szczepanski <[email protected]>
- * System.IO.MemoryStream.cs: Added. Had quite a few cases of
- "LAMESPEC", but the tests work against the MS implementation so
- the major functions are right (ie. Read/Write/Seek). Some more
- tests required for the various constructors and exceptions.
- 2001-07-16 Marcin Szczepanski <[email protected]>
- * StringReader.cs, StringWriter.cs, TextReader.cs, TextWriter.cs:
- New class implemenations.
- * StringReaderTest.cs, StringWriterTest.cs: Test suite for the above.
|