ChangeLog 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. 2002-12-12 Gonzalo Paniagua Javier <[email protected]>
  2. * Encoding.cs: g_get_encoding () returns "ASCII". In Default, when the
  3. encoding is not found, default to UTF8Unmarked. Removed comment in
  4. UnixConsoleEncoding, because it's now Default, which gets the
  5. encoding internally using g_get_encoding ().
  6. 2002-12-01 Gonzalo Paniagua Javier <[email protected]>
  7. * StringBuilder.cs: fixed constructor. Thanks to marcusU for reporting.
  8. Tue Nov 19 13:03:27 CET 2002 Paolo Molaro <[email protected]>
  9. * UTF8Encoding.cs: fix GetByteCount (), too.
  10. 2002-11-19 Miguel de Icaza <[email protected]>
  11. * UnicodeEncoding.cs: the bytemark should only be used to return
  12. information in GetPreamble, not to actually encode the information
  13. on the stream. That is taken care of by the Stream classes.
  14. * UTF8Encoding.cs: ditto.
  15. 2002-11-13 Gonzalo Paniagua Javier <[email protected]>
  16. * StringBuilder.cs: only move the remaining chars in Remove.
  17. 2002-11-05 Gonzalo Paniagua Javier <[email protected]>
  18. * Encoding.cs: unixConsoleEncoding is now the same as Default. Avoid
  19. locking whenever possible.
  20. 2002-10-30 Miguel de Icaza <[email protected]>
  21. * Encoding.cs (UTF8Unmarked): New static property, used to return
  22. a no-markers UTf8 encoder, used in a few places in the class library.
  23. 2002-09-06 Miguel de Icaza <[email protected]>
  24. * Encoding.cs (UTF8, Unicode): Create with a preamble, that is
  25. what the Microsoft version does.
  26. (UnixConsoleEncoding): New internal method, used to get the
  27. encoding, in the future, this should pull the locale, map to
  28. charset and then code page.
  29. Wed Sep 4 14:01:25 CEST 2002 Paolo Molaro <[email protected]>
  30. * Encoding.cs: use icall to get default codepage.
  31. * DefaultEncoding.cs: remove useless class.
  32. Mon Aug 26 16:44:54 CEST 2002 Paolo Molaro <[email protected]>
  33. * *.cs: change to conform to mono coding style.
  34. 2002-08-24 Gonzalo Paniagua Javier <[email protected]>
  35. * ASCIIEncoding.cs:
  36. * Decoder.cs:
  37. * Encoder.cs:
  38. * Encoding.cs:
  39. * UTF7Encoding.cs:
  40. * UTF8Encoding.cs:
  41. * UnicodeEncoding.cs: added Serializable attribute.
  42. 2002-08-24 Gonzalo Paniagua Javier <[email protected]>
  43. * StringBuilder.cs: improved performace by using String.InternalCopyTo
  44. instead of using ToCharArray all over the place (more that 50% of
  45. speed improvement when using Append).
  46. Wed Aug 21 20:02:04 CEST 2002 Paolo Molaro <[email protected]>
  47. * *.cs: imported the code donated by Rhys Weatherley
  48. <[email protected]>.
  49. 2002-08-18 Dick Porter <[email protected]>
  50. * Encoding.cs: Make GetString() return a useful representation of
  51. the bytes, rather than "System.Char[]"
  52. 2002-08-03 Gonzalo Paniagua Javier <[email protected]>
  53. * StringBuilder.cs: added IndexerName to indexer.
  54. 2002-08-01 Jason Diamond <[email protected]>
  55. * Encoding.cs: Use GetByteCount instead of GetMaxByteCount when
  56. converting chars to bytes.
  57. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  58. * StringBuilder.cs: updated comments. MaxCapacity always returns
  59. Int32.MaxValue.
  60. 2002-06-21 Gonzalo Paniagua Javier <[email protected]>
  61. * StringBuilder.cs: implemented AppendFormat methods using
  62. String.Format. Thanks Paolo!
  63. This makes xsp generate correct C# output in linux :-). I still need
  64. to do more testing, though.
  65. Mon Jun 3 12:58:40 CEST 2002 Paolo Molaro <[email protected]>
  66. * ASCIIEncoding.cs: fixed handling of 0 bytecount.
  67. 2002-05-19 Martin Baulig <[email protected]>
  68. * Encoder.cs (IConvEncoder.GetByteCount, IConvEncoder.GetBytes):
  69. Added exception handling.
  70. * Decoder.cs (IConvDecoder.GetCharCount, IConvDecoder.GetChars):
  71. Added exception handling.
  72. 2002/04/02 Nick Drochak <[email protected]>
  73. * StringBuilder.cs (Append): Removed obsolete overload.
  74. 2002-03-21 Mike Kestner <[email protected]>
  75. * ASCIIEncoding.cs : Fix off by one error in Get(Char|Byte)Count.
  76. Thu Mar 21 17:38:19 CET 2002 Paolo Molaro <[email protected]>
  77. * StringBuilder.cs: no need to intern the string returned by ToString().
  78. 2002-03-17 Mike Kestner <[email protected]>
  79. * ASCIIEncoding.cs: Implement all the overridden methods. No longer
  80. dependent on iconv icalls.
  81. * Encoding.cs: Fix count bugs in GetBytes and GetChars. Add virtual
  82. to GetBytes.
  83. Wed Mar 13 00:26:29 CET 2002 Paolo Molaro <[email protected]>
  84. * StringBuilder.cs: make ToString() return a interned string, this
  85. seems to be required to make switch on string work.
  86. Fri Mar 8 17:29:58 CET 2002 Paolo Molaro <[email protected]>
  87. * StringBuilder.cs: make Append(char) do the smart thing.
  88. 2002-01-05 Ravi Pratap <[email protected]>
  89. * ASCIIEncoding.cs, Encoding.cs, UTF7Encoding.cs,
  90. UnicodeEncoding.cs: MonoTODO attribute marking.
  91. * StringBuilder.cs : Ditto.
  92. Wed Nov 14 17:05:22 CET 2001 Paolo Molaro <[email protected]>
  93. * Encoding.cs: renamed some fields.
  94. * StringBuilder.cs: CLSCompliant updates.
  95. 2001-10-29 Nick Drochak <[email protected]>
  96. * StringBuilder.cs: Throw exceptions when constructor paramter(s) are
  97. invalid. Just like MS does (as best as I can tell).
  98. Tests for these exceptions are now added to the unit tests as well.
  99. 2001-10-25 Nick Drochak <[email protected]>
  100. * StringBuilder.cs: Throw exception if they try to make a StringBuilder
  101. whose capacity is greater than the MaxCapacity.
  102. I added some tests for the constructors and the above exception. More
  103. coming soon.
  104. 2001-10-23 Nick Drochak <[email protected]>
  105. * StringBuilder.cs: Refactored constructor code into just one
  106. constructor. All the other construtors call it. Also supplied missing
  107. constructors so the class has all those in the spec.
  108. Added the MaxCapacity property as well, however this needs to be
  109. completed to return a value is related to the available system memory.
  110. 2001-10-07 Miguel de Icaza <[email protected]>
  111. * Encoding.cs, UTF8Encoding.cs, UTF7Encoding.cs, ASCIIEncoding.cs,
  112. UnicodeEncoding.cs: Corrected API.
  113. * UTF8Encoding.cs: Checked in changes from Rafael.
  114. 2001-08-28 Dietmar Maurer <[email protected]>
  115. * UTF8Encoding.cs: impl. clumsy GetBytes
  116. 2001-07-16 Marcin Szczepanski <[email protected]>
  117. * StringBuilder.cs (Text): Fixed.
  118. * StringBuilderTest.cs: Implement Test suite.
  119. 2001-07-12 Marcin Szczepanski <[email protected]>
  120. * StringBuilder.cs: Implemented.
  121. The only methods left unimplemented are the AppendFormat( ... )
  122. ones just because it's probably better to wait until some of the
  123. Format related classes are implemented. I've put that as a TODO
  124. comment at the top and created the methods with a "nop" body.
  125. 2001-06-26 Sean MacIsaac <[email protected]>
  126. * UnicodeEncoding.cs: Members added so that a clean compile is
  127. possible.
  128. * ASCIIEncoding.cs: Members added so that a clean compile is
  129. possible.
  130. * UTF7Encoding.cs: Members added so that a clean compile is
  131. possible.
  132. * UTF8Encoding.cs: Members added so that a clean compile is
  133. possible.
  134. * Encoding.cs: All public members included. Most members
  135. unimplemented.