ChangeLog 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052
  1. 2006-04-26 Miguel de Icaza <[email protected]>
  2. * ReflectionPropertyDescriptor.cs (CanResetvalue): Do not
  3. dereference a null value, avoids crash in property grid.
  4. Code formatting police.
  5. 2006-04-25 Miguel de Icaza <[email protected]>
  6. * TypeConverter.cs (ConvertFrom): Do not crash if we are passed a
  7. null value.
  8. 2006-04-25 Atsushi Enomoto <[email protected]>
  9. * BaseNumberConverter.cs : (ConvertTo) regardless of InnerType,
  10. it converts the argument value to InnerType using supplied format.
  11. (It might be not limited to NET_2_0 but it's too cosmetic to dig
  12. into the problem. At least this is for run-test-ondotnet fixes.)
  13. 2006-04-17 Atsushi Enomoto <[email protected]>
  14. * BackgroundWorker.cs, RunWorkerCompletedEventArgs.cs :
  15. cosmetic attribute fixes.
  16. 2006-04-17 Atsushi Enomoto <[email protected]>
  17. * AsyncOperation.cs,
  18. AsyncOperationManager.cs
  19. BackgroundWorker.cs
  20. DoWorkEventArgs.cs
  21. DoWorkEventHandler.cs
  22. RunWorkerCompletedEventArgs.cs
  23. RunWorkerCompletedEventHandler.cs :
  24. Initial implementation of AsyncOperation and BackgroundWorker.
  25. (However I think it does not work as expected - it depends on
  26. SynchronizationContext.Post() and I doubt it works fine - the
  27. callback should run synchronously while it does not look so.)
  28. 2006-03-30 Atsushi Enomoto <[email protected]>
  29. * AsyncCompletedEventArgs.cs : constructor did not initialize fields.
  30. 2006-03-28 Atsushi Enomoto <[email protected]>
  31. * ProgressChangedEventHandler.cs ProgressChangedEventArgs.cs :
  32. added 2.0 types.
  33. 2006-02-26 Pedro Martinez Julia <[email protected]>
  34. * HandledEventHandler.cs: Resolving a "Replaced" SVN flag.
  35. 2006-02-23 Andrew Skiba <[email protected]>
  36. * TypeDescriptor.cs: performance improvement for GetAttributes,
  37. GetProperties and GetEvents. See the standalone test for the use case.
  38. 2006-01-31 Gonzalo Paniagua Javier <[email protected]>
  39. * Container.cs: patch by Brian Crowell that fixes GetService().
  40. 2006-01-22 Chris Toshok <[email protected]>
  41. * DesignerSerializationVisibilityAttribute.cs: in the 2.0 case,
  42. this attribute is valid on fields and events as well.
  43. 2005-11-19 Zoltan Varga <[email protected]>
  44. * TypeDescriptor.cs: Small changes to make this more compliant with
  45. MSDN docs and actual MS behaviour.
  46. 2005-11-07 Pedro Martinez Julia <[email protected]>
  47. * IBindingListView.cs Initial implementation
  48. * HandledEventArgs.cs Initial implementation
  49. * HandledEventHandler.cs Initial implementation
  50. * ListSortDescription.cs: Initial implementation
  51. * ListSortDescriptionCollection.cs: Initial implementation
  52. 2005-10-31 Dick Porter <[email protected]>
  53. * Win32Exception.cs: Add another error code.
  54. 2005-09-20 Chris Toshok <[email protected]>
  55. * INotifyPropertyChanged.cs: new interface.
  56. 2005-09-19 Gert Driesen <[email protected]>
  57. * TypeDescriptor.cs: Remove usage of removed internal
  58. PropertyDescriptorCollection ctor. Return read-only collection.
  59. * PropertyDescriptorCollection.cs: Removed internal ctor taking
  60. ArrayList. Add ctor for making read-only collection. Added
  61. read-only checks. Implemented IsReadOnly and IsFixedSize. Empty now
  62. returns read-only collection to match MS.NET.
  63. 2005-09-12 Gert Driesen <[email protected]>
  64. * TypeConverter.cs: Only return browsable properties in GetProperties.
  65. 2005-08-28 Gert Driesen <[email protected]>
  66. * DateTimeConverter.cs: ConvertTo must return zero-length string
  67. for DateTime.MinValue. Use CultureInfo.GetFormat to obtain
  68. DateTimeFormatInfo to match MS.NET.
  69. 2005-08-27 Gonzalo Paniagua Javier <[email protected]>
  70. * TypeDescriptor.cs: remove double lock in DefaultConverter.
  71. 2005-08-26 Gert Driesen <[email protected]>
  72. * BaseNumberConverter.cs: Use CultureInfo.GetFormat to obtain
  73. NumberFormatInfo to match MS.NET. Added ConvertToString abstract
  74. method for conversion to string.
  75. * ByteConverter.cs: Implemented ConvertToString.
  76. * DecimalConverter.cs: Implemented ConvertToString.
  77. * DoubleConverter.cs: Implemented ConvertToString.
  78. * Int16Converter.cs: Implemented ConvertToString.
  79. * Int32Converter.cs: Implemented ConvertToString.
  80. * Int64Converter.cs: Implemented ConvertToString.
  81. * SByteConverter.cs: Implemented ConvertToString.
  82. * SingleConverter.cs: Implemented ConvertToString.
  83. * UInt16Converter.cs: Implemented ConvertToString.
  84. * UInt32Converter.cs: Implemented ConvertToString.
  85. * UInt64Converter.cs: Implemented ConvertToString.
  86. 2005-08-19 Gert Driesen <[email protected]>
  87. * SingleConverter.cs: Implement conversion from string to match MS.NET.
  88. Set eol-style to native.
  89. * TypeConverter.cs: Always support conversion from InstanceDescriptor.
  90. Set eol-style to native.
  91. * UInt16Converter.cs: Implement conversion from string to match MS.NET.
  92. Added support for converting string containing hex prefix. Set
  93. eol-style to native.
  94. * SByteConverter.cs: Implement conversion from string to match MS.NET.
  95. Added support for converting string containing hex prefix. Set
  96. eol-style to native.
  97. * Int16Converter.cs: Implement conversion from string to match MS.NET.
  98. Added support for converting string containing hex prefix. Set
  99. eol-style to native.
  100. * UInt64Converter.cs: Implement conversion from string to match MS.NET.
  101. Added support for converting string containing hex prefix. Set
  102. eol-style to native.
  103. * DecimalConverter.cs: Implement conversion from string to match MS.NET.
  104. Set eol-style to native.
  105. * Int64Converter.cs: Implement conversion from string to match MS.NET.
  106. Added support for converting string containing hex prefix. Set
  107. eol-style to native.
  108. * UInt32Converter.cs: Implement conversion from string to match MS.NET.
  109. Added support for converting string containing hex prefix. Set
  110. eol-style to native.
  111. * Int32Converter.cs: Implement conversion from string to match MS.NET.
  112. Added support for converting string containing hex prefix. Set
  113. eol-style to native.
  114. * DoubleConverter.cs: Implement conversion from string to match MS.NET.
  115. Set eol-style to native.
  116. * BaseNumberConverter.cs: Support conversion from string containing
  117. hex prefixes. Set eol-style to native.
  118. * ByteConverter.cs: Implement conversion from string to match MS.NET.
  119. Added support for converting string containing hex prefix. Set
  120. eol-style to native.
  121. 2005-08-18 Gert Driesen <[email protected]>
  122. * EditorBrowsableState.cs: Changed line ending from CRLF to LF to
  123. match other sources. Set eol-style to native.
  124. * ExtenderProvidedPropertyAttribute.cs: Changed line ending from CRLF
  125. to LF to match other sources. Set eol-style to native.
  126. * RefreshEventHandler.cs: Changed line ending from CRLF to LF to match
  127. other sources. Set eol-style to native.
  128. * TypeDescriptor.cs: Changed line ending from CRLF to LF to match
  129. other sources. Set eol-style to native.
  130. 2005-08-16 Gert Driesen <[email protected]>
  131. * BaseNumberConverter.cs: In ConvertFrom, wrap all exceptions that
  132. are thrown while converting from string in an Exception.
  133. 2005-08-16 Gert Driesen <[email protected]>
  134. * ToolboxItemAttribute.cs: Fixed GetHashCode to correspond with MS.NET.
  135. Fixed initialization order. Throw ArgumentException if item type
  136. cannot be loaded.
  137. 2005-08-09 Michael Hutchinson <[email protected]>
  138. * ToolboxItemAttribute.cs: Fixed typo
  139. 2005-08-09 Gert Driesen <[email protected]>
  140. * IComponent.cs: Fixed Designer attribute to match MS.NET.
  141. * DesignerAttribute.cs: DesignerBaseTypeName defaults to fullname of
  142. IDesigner to match MS.NET.
  143. 2005-08-07 Michael Hutchinson <[email protected]>
  144. Patch from Michael Hutchinson to make the aspnet editor work.
  145. * ReflectionPropertyDescriptor.cs: Create transactions and raise
  146. component change events for all IComponents, not just base
  147. implementation 'Component' derivatives.
  148. * MemberDescriptor.cs: Make members 'Browsable' by default, as per
  149. MS spec.
  150. * PropertyDescriptor.cs: Changed default
  151. DesignerSerializationVisibility value to Visible rather than
  152. Hidden, as per MS spec.
  153. 2005-07-21 Gonzalo Paniagua Javier <[email protected]>
  154. * TypeDescriptor.cs: (GetProperties) throw exception if 'component' is
  155. null.
  156. 2005-06-30 Sebastien Pouliot <[email protected]>
  157. * Win32Exception.cs: Added some declarative security (permission from
  158. corlib) as an initial test (outside corlib). Added new constructors
  159. for NET_2_0.
  160. 2005-06-27 LLuis Sanchez Gual <[email protected]>
  161. * CultureInfoConverter.cs: Correctly look for verbose name of
  162. the culture being converted.
  163. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  164. * ToolboxItemAttribute.cs: fix the fix that was fixed before.
  165. 2005-06-08 Zoltan Varga <[email protected]>
  166. * ToolboxItemAttribute.cs: Revert last change as it breaks the build.
  167. 2005-06-08 Gonzalo Paniagua Javier <[email protected]>
  168. * ToolboxItemAttribute.cs: fix default type name.
  169. 2005-06-04 Gert Driesen <[email protected]>
  170. * Win32Exception.cs: improve error message for error 10047.
  171. 2005-06-04 Gert Driesen <[email protected]>
  172. * TypeDescriptor.cs: in .NET 2.0, GetComponentName returns null if
  173. object is not an IComponent or has no Site.
  174. In .NET 2.0, GetDefaultEvent does not fallback to first defined event
  175. if the default event is filtered out. GetDefaultProperty did not
  176. take filtering into account. Fixes bug #75152.
  177. 2005-05-31 Gonzalo Paniagua Javier <[email protected]>
  178. * Win32Exception.cs: add 10049 WSAEADDRNOTAVAIL. Fixes bug #75106.
  179. 2005-05-15 Andreas Nahr <[email protected]>
  180. * IComponent.cs: Fix attributes
  181. 2005-04-28 Gonzalo Paniagua Javier <[email protected]>
  182. * TypeDescriptor.cs: implemented GetEditor. Patch by Jonathan Chambers.
  183. 2005-04-25 Gonzalo Paniagua Javier <[email protected]>
  184. * DefaultValueAttribute.cs: fixed the .ctor that takes a type and a
  185. string. Previous implementation caused *lots* of exceptions being thrown
  186. when processing WebControl types.
  187. 2005-04-22 LLuis Sanchez Gual <[email protected]>
  188. * AttributeCollection.cs: When checking if the list contains an
  189. attribute, always return true if that attribute is the default
  190. attribute for that kind of attributes.
  191. 2005-04-13 LLuis Sanchez Gual <[email protected]>
  192. * TypeDescriptor.cs: When creating a converter, use a constructor that
  193. takes a Type parameter if exists.
  194. * PropertyDescriptor.cs: In the Converter property, check for a
  195. TypeConverterAttribute in the property.
  196. 2005-03-02 Jackson Harper <[email protected]>
  197. * ReflectionEventDescriptor.cs: Bind handlers to the actual event so that
  198. the delegates get invoked when the methods are.
  199. 2005-03-02 Jackson Harper <[email protected]>
  200. * EventDescriptorCollection.cs: Handle null in the constructor properly.
  201. 2005-02-12 Geoff Norton <[email protected]>
  202. * CharConverter.cs: Implement the ability to convert from "".
  203. 2005-02-10 Geoff Norton <[email protected]>
  204. * CultureInfoConverter.cs: Implement converting from the
  205. string "(default)" that MS will put in .resx files.
  206. 2005-02-10 Lluis Sanchez Gual <[email protected]>
  207. * BindableAttribute.cs: Implemented 2.0 api.
  208. 2005-02-05 Gonzalo Paniagua Javier <[email protected]>
  209. * TypeDescriptor.cs: fixed bug #71601. GetConverter should handle
  210. TypeConverter derived classes that take a Type argument.
  211. 2005-01-27 LLuis Sanchez Gual <[email protected]>
  212. * DateTimeConverter.cs, CultureInfoConverter.cs, DecimalConverter.cs,
  213. TimeSpanConverter.cs, GuidConverter.cs, EnumConverter.cs:
  214. Implemented support for InstanceDescriptor.
  215. 2005-01-25 LLuis Sanchez Gual <[email protected]>
  216. * Win32Exception.cs: Set the correct name for the serialized
  217. NativeErrorCode. This fixes bug #71572. Fix by Aleksandar Dezelin.
  218. 2005-01-24 Joerg Rosenkranz <[email protected]>
  219. * TypeDescriptor.cs: Changed handling of interfaces and objects in
  220. GetConverter to reflect the behaviour of .NET. This fixes bug #71444.
  221. 2005-01-19 Jonathan Pryor <[email protected]>
  222. * TypeDescriptor.cs: Fix Info.GetDefaultEvent() so that it filters events
  223. properly. This matches .NET 1.1 and fixes a test case.
  224. 2005-01-19 Jonathan Pryor <[email protected]>
  225. * TypeDescriptor.cs: Fix GetComponentName() so that it returns the type
  226. name if no Site is present. This matches .NET 1.1 and fixes a test case.
  227. 2005-01-12 Gonzalo Paniagua Javier <[email protected]>
  228. * BaseNumberConverter.cs: when the culture we get is null, set it to the
  229. default. Fixes bug #67033. Thanks to Sander Rijken.
  230. 2005-01-10 LLuis Sanchez Gual <[email protected]>
  231. * BindingDirection.cs: New enum.
  232. 2004-12-09 Dick Porter <[email protected]>
  233. * Win32Exception.cs: Add another socket error, fix the message of
  234. some old ones.
  235. 2004-10-01 Gonzalo Paniagua Javier <[email protected]>
  236. * AttributeCollection.cs: support attributes inherited from the one
  237. we want. Fixes bug #67088. Thanks to Sander Rijken.
  238. 2004-08-14 Jackson Harper <[email protected]>
  239. * Container.cs: Release all when we are supposed to release all.
  240. 2004-07-14 Atsushi Enomoto <[email protected]>
  241. * Added IChangeTracking.cs and IRevertibleChangeTracking.cs.
  242. 2004-07-09 LLuis Sanchez Gual <[email protected]>
  243. * AsyncCompletedEventArgs.cs: Implemented.
  244. * AsyncCompletedEventHandler.cs: Implemented.
  245. 2004-06-12 Gonzalo Paniagua Javier <[email protected]>
  246. * TypeDescriptor.cs: when a component in componentTable is Disposed,
  247. remove it from the table.
  248. Fri Jun 11 11:58:22 CEST 2004 Paolo Molaro <[email protected]>
  249. * LocalizableAttribute.cs, DesignerSerializationVisibilityAttribute.cs,
  250. DesignOnlyAttribute.cs: fix targets for attributes.
  251. 2004-05-05 Lluis Sanchez Gual <[email protected]>
  252. * BooleanConverter.cs: Improved ConverFrom method.
  253. 2004-04-28 Lluis Sanchez Gual <[email protected]>
  254. * TypeDescriptor.cs: Do not return attributes that have the same TypeID.
  255. This fixes bug #57655.
  256. 2004-04-24 Gonzalo Paniagua Javier <[email protected]>
  257. * TypeDescriptor.cs: fixed ComponentInfo.GetAttributes(). Now it returns
  258. all the attributes, not just DesignerAttribute instances. nGallery
  259. complained.
  260. 2004-04-21 Lluis Sanchez Gual <[email protected]>
  261. * BooleanConverter.cs: GetStandardValues must return an array of
  262. booleans, not an array of strings.
  263. 2004-04-16 Lluis Sanchez Gual <[email protected]>
  264. * ReflectionPropertyDescriptor.cs: Access internal PropertyInfo
  265. through GetPropertyInfo(). Take into account that a component may not
  266. be sited or not have some services.
  267. * TypeDescriptor.cs: GetTypeFromName(): Added null check for Site
  268. property. Other minor fixes.
  269. 2004-04-16 Joerg Rosenkranz <[email protected]>
  270. * TypeDescriptor.cs: Fixed implementation of GetConverter.
  271. This fixes #57137.
  272. 2004-04-14 Lluis Sanchez Gual <[email protected]>
  273. * AttributeCollection.cs: Added new internal constructor.
  274. * DesignerAttribute.cs: Fixed property TypeId.
  275. * EventDescriptorCollection.cs: Added internal constructor. Added new
  276. method Filter that removes events that do not have the specified
  277. attributes.
  278. * MemberDescriptor.cs: Minor fixes.
  279. * PropertyDescriptor.cs: Implemented some missing methods.
  280. * PropertyDescriptorCollection.cs: Added internal constructor. Implemented
  281. Sort methods.
  282. * ReferenceConverter.cs: Removed some TODOs.
  283. * SyntaxCheck.cs: Implemented CheckMachineName and CheckPath.
  284. * TypeDescriptor.cs: Implemented most of missing methods.
  285. 2004-04-08 Lluis Sanchez Gual <[email protected]>
  286. * AmbientValueAttribute.cs, EnumConverter.cs, ListChangedEventArgs.cs:
  287. Removed unneded TODOs.
  288. * ComponentResourceManager.cs: Implemented ApplyResources.
  289. * EventDescriptorCollection.cs: Implemented several missing methods.
  290. * LicFileLicenseProvider.cs: Implemented.
  291. * MemberDescriptor.cs: Implemented some missing methods. Handle correctly
  292. the creation of the Attribute list.
  293. * TypeConverter.cs: Use null as default value for attribute array parameter.
  294. 2004-04-08 Gonzalo Paniagua Javier <[email protected]>
  295. * Win32Exception.cs: added 10024 (WSAEMFILE).
  296. 2004-04-05 Lluis Sanchez Gual <[email protected]>
  297. * AttributeCollection.cs: Don't try to create a default attribute if the
  298. attribute type does not have a default constructor. Fix by Jon Wagner.
  299. This fixes #53898.
  300. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  301. * Win32Exception.cs: added ERROR_PATH_NOT_FOUND that reports the same
  302. message as ERROR_FILE_NOT_FOUND.
  303. 2004-03-17 Ivan Hamilton <[email protected]>
  304. * LicenseManager.cs: Completed TODO.
  305. 2003-12-10 Gonzalo Paniagua Javier <[email protected]>
  306. * Win32Exception.cs: use a switch instead of creating a hashtable when
  307. mapping from an error code to a message.
  308. 2003-11-22 Miguel de Icaza <[email protected]>
  309. * PropertyDescriptorCollection.cs (Insert): Another one.
  310. * PropertyTabAttribute.cs (Equals): Avoid recurssion
  311. 2003-11-13 Andreas Nahr <[email protected]>
  312. * IComponent.cs: Added missing attribute
  313. 2003-11-12 Andreas Nahr <[email protected]>
  314. * ComponentResourceManager.cs: Added and partially implemented
  315. 2003-09-13 Duncan Mak <[email protected]>
  316. Patch from Jrg Rosenkranz <[email protected]>, this fixes the
  317. bugs described in bug #48351.
  318. * EnumConverter.cs (ConvertFrom): Removed the special handling for
  319. multiple values. This is done in Enum.Parse already.
  320. * TypeDescriptor.cs (GetConverter): Does not work for enumeration
  321. types because EnumConverter does not have a default
  322. constructor. Fixed by changing the special handling for
  323. enumeration types.
  324. 2003-08-31 Jerome Laban <[email protected]>
  325. * Container.cs: A site without name cannot be duplicate.
  326. 2003-07-22 Gonzalo Paniagua Javier <[email protected]>
  327. * Win32Exception.cs: added message for 10054.
  328. 2003-07-17 Andreas Nahr <[email protected]>
  329. * CategoryAttribute.cs: Added localization support
  330. 2003-07-17 Andreas Nahr <[email protected]>
  331. * IComponent.cs:
  332. * MarshalByValueComponent.cs: Reworked attributes based on the new Consts scheme
  333. 2003-07-16 Gonzalo Paniagua Javier <[email protected]>
  334. * TypeDescriptor.cs: fixed GetConverter (type) for enumerations that
  335. have a TypeConverter. Fixes bug #46397.
  336. 2003-07-14 Jerome Laban <[email protected]>
  337. * IComponent.cs: Removed duplicate Designer attribute.
  338. 2003-07-13 Andreas Nahr <[email protected]>
  339. * Component.cs: Implementation added
  340. * Container.cs: Implementation added
  341. * MarshalByValueComponent.cs: Implementation added
  342. * ReferenceConverter.cs: Small addition for future implementation
  343. 2003-07-10 Andreas Nahr <[email protected]>
  344. * TypeConverter.cs: Implemented missing methods
  345. * TypeDescriptor.cs: Redirections added
  346. 2003-07-05 Andreas Nahr <[email protected]>
  347. * EnumConverter.cs: Fixed signature
  348. * EventDescriptorCollection.cs: Fixed signature
  349. * InheritanceLevel.cs: Fixed enum values; little restyling
  350. * License.cs: Removed undefined member
  351. * LicenseManager.cs: Fixed signature, little implementation added
  352. * PropertyDescriptorCollection.cs: Removed unused field (fixes last remaining compiler warning in this namespace)
  353. * WarningException.cs: Removed wrong attribute
  354. * Win32Exception.cs: Added missing attribute
  355. 2003-07-02 Andreas Nahr <[email protected]>
  356. * AttributeCollection.cs: Fixed public members
  357. * BaseNumberConverter.cs: Changed InnerType to internal to match public assembly signature
  358. * BrowsableAttribute.cs: Removed wrong constructor, Restyle according to guidelines
  359. * CategoryAttribute.cs: Changed public fields to properties
  360. * EnumConverter.cs: Added and implemented missing properties, improved implementation
  361. * EventDescriptorCollection.cs: Fixed wrong signatures, added implementation, fixed potential bug
  362. * PropertyDescriptorCollection.cs: Fixed public members
  363. * ReferenceConverter.cs: Implementation added
  364. * SyntaxCheck.cs: Improved string checks, added MonoTODO descriptions
  365. * TypeDescriptor.cs: Implementations added
  366. 2003-07-02 Andreas Nahr <[email protected]>
  367. * ISite.cs: Fixed attributes, fixed header
  368. * ITypeDescriptorContext.cs: Fixed attributes, formatting corrections
  369. * WarningException.cs: Fixed attributes, formatting corrections
  370. * AttributeCollection.cs: Fixed attributes
  371. * DesignerSerializationVisibility.cs: Fixed attributes
  372. * TypeConverter.cs: Fixed attributes
  373. * MarshalByValueComponent.cs:
  374. * IComponent.cs: Fixed attributes, supports .Net 1.0 and 1.1
  375. * DescriptionAttribute.cs:
  376. * DesignerCategoryAttribute.cs:
  377. * DoubleConverter.cs:
  378. * EditorBrowsableAttribute.cs:
  379. * EventDescriptorCollection.cs:
  380. * PropertyChangedEventHandler.cs:
  381. * RefreshEventArgs.cs:
  382. * StringConverter.cs:
  383. * DefaultValueAttribute.cs: Reformatted following style guidelines
  384. * License.cs: Removed unused MonoTODOs
  385. * LicenseContext.cs: Implemented
  386. * LicenseException.cs: Implemented
  387. * LicenseProvider.cs: Removed unused MonoTODOs and unneccesary Finalizer
  388. * LicenseUsageMode.cs: Fixed enum
  389. * RefreshProperties.cs: Fixed enum
  390. * LicFileLicenseProvider.cs: Implementation added
  391. * ExtenderProvidedPropertyAttribute.cs: Implementation added, formatting corrections
  392. * ExpandableObjectConverter.cs: Implemented
  393. * ComponentConverter.cs: Implemented
  394. 2003-06-23 Andreas Nahr <[email protected]>
  395. * DesignerAttribute.cs: Fixed AttributeUsage, implementation errors,
  396. better Hashcode generation
  397. * EditorAttribute.cs: Fixed AttributeUsage, implementation errors,
  398. better Hashcode generation
  399. * LicenseContext.cs: Added and implemented missing property
  400. * ListBindableAttribute.cs: Simplified implementation, removed
  401. unneccessary data.
  402. * ReadOnlyAttribute.cs: Better Hashcode generation
  403. * RunInstallerAttribute.cs: Better Hashcode generation, more robust
  404. Equals check.
  405. * LicenseProviderAttribute.cs: Fixed AttributeUsage, indentation
  406. * ProvidePropertyAttribute.cs: Fixed AttributeUsage
  407. * ToolboxItemFilterAttribute.cs: Fixed AttributeUsage
  408. * MarshalByValueComponent.cs:
  409. * IContainer.cs:
  410. * IComponent.cs: Added missing attribute(s)
  411. 2003-06-24 Gonzalo Paniagua Javier <[email protected]>
  412. * AmbientValueAttribute.cs:
  413. * ArrayConverter.cs:
  414. * BaseNumberConverter.cs:
  415. * BindableAttribute.cs:
  416. * BooleanConverter.cs:
  417. * BrowsableAttribute.cs:
  418. * ByteConverter.cs:
  419. * CategoryAttribute.cs:
  420. * CharConverter.cs:
  421. * CollectionConverter.cs:
  422. * Component.cs:
  423. * ComponentCollection.cs:
  424. * ComponentEditor.cs:
  425. * Container.cs:
  426. * CultureInfoConverter.cs:
  427. * DateTimeConverter.cs:
  428. * DecimalConverter.cs:
  429. * DefaultEventAttribute.cs:
  430. * DefaultPropertyAttribute.cs:
  431. * DefaultValueAttribute.cs:
  432. * DescriptionAttribute.cs:
  433. * DesignOnlyAttribute.cs:
  434. * DesignTimeVisibleAttribute.cs:
  435. * DesignerCategoryAttribute.cs:
  436. * DesignerSerializationVisibilityAttribute.cs:
  437. * DoubleConverter.cs:
  438. * EditorBrowsableAttribute.cs:
  439. * EventDescriptor.cs:
  440. * EventDescriptorCollection.cs:
  441. * ExpandableObjectConverter.cs:
  442. * ExtenderProvidedPropertyAttribute.cs: New file.
  443. * GuidConverter.cs:
  444. * IComNativeDescriptorHandler.cs:
  445. * IComponent.cs:
  446. * ImmutableObjectAttribute.cs:
  447. * InheritanceAttribute.cs:
  448. * InheritanceLevel.cs:
  449. * InstallerTypeAttribute.cs:
  450. * Int16Converter.cs:
  451. * Int32Converter.cs:
  452. * Int64Converter.cs:
  453. * InvalidEnumArgumentException.cs:
  454. * LicenseProviderAttribute.cs:
  455. * LocalizableAttribute.cs:
  456. * MarshalByValueComponent.cs:
  457. * MemberDescriptor.cs:
  458. * MergablePropertyAttribute.cs:
  459. * NotifyParentPropertyAttribute.cs:
  460. * ParenthesizePropertyNameAttribute.cs:
  461. * PropertyDescriptor.cs:
  462. * PropertyDescriptorCollection.cs:
  463. * PropertyTabAttribute.cs:
  464. * ProvidePropertyAttribute.cs:
  465. * RecommendedAsConfigurableAttribute.cs:
  466. * RefreshPropertiesAttribute.cs:
  467. * SByteConverter.cs:
  468. * SingleConverter.cs:
  469. * TimeSpanConverter.cs:
  470. * ToolboxItemFilterAttribute.cs:
  471. * TypeConverter.cs:
  472. * TypeConverterAttribute.cs:
  473. * TypeDescriptor.cs:
  474. * TypeListConverter.cs:
  475. * UInt16Converter.cs:
  476. * UInt32Converter.cs:
  477. * UInt64Converter.cs: implementation and fixes by Andreas Nahr
  478. ([email protected]).
  479. 2003-06-23 Gonzalo Paniagua Javier <[email protected]>
  480. * IExtenderProvider.cs: mono-stylized.
  481. * IComNativeDescriptorHandler.cs:
  482. * SyntaxCheck.cs: new files from Andreas Nahr.
  483. 2003-03-20 Dick Porter <[email protected]>
  484. * Win32Exception.cs: Made the fallback error more useful by
  485. reporting the error number
  486. 2003-03-14 Gonzalo Paniagua Javier <[email protected]>
  487. * MarshalByValueComponent.cs: removed a monotodo.
  488. 2003-03-13 Gonzalo Paniagua Javier <[email protected]>
  489. * Win32Exception.cs: added error code 2.
  490. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  491. * Win32Exception.cs: implemented GetObjectData ().
  492. 2003-03-04 Gonzalo Paniagua Javier <[email protected]>
  493. * RunInstallerAttribute.cs: New file.
  494. 2003-02-06 Gonzalo Paniagua Javier <[email protected]>
  495. * Win32Exception.cs: added 10065 (WSA_EHOSTUNREACH).
  496. 2003-02-05 Alan Tam <[email protected]>
  497. * DesignedCategoryAttribute.cs: Implemented DesignerCategoryAttribute
  498. 2003-01-30 Gonzalo Paniagua Javier <[email protected]>
  499. * BrowsableAttribute.cs: this attribute applies to All. Since the fix
  500. to bug #37380, mcs complained about this when compiling System.Data.
  501. 2003-01-08 Dick Porter <[email protected]>
  502. * Win32Exception.cs (ComponentModel): Added EWOULDBLOCK
  503. 2003-01-08 Gonzalo Paniagua Javier <[email protected]>
  504. * TypeDescriptor.cs: use ICustomTypeDescriptor if the component
  505. implements it. It's done for GetProperties and should be done for the
  506. rest of methods present in ICustomTypeDescriptor.
  507. 2003-01-07 Gonzalo Paniagua Javier <[email protected]>
  508. * TypeDescriptor.cs: moved code from GetProperties (object) to (Type).
  509. 2002-11-20 Gonzalo Paniagua Javier <[email protected]>
  510. * DefaultValueAttribute.cs: the attribute applies to All.
  511. 2002-11-19 Duncan Mak <[email protected]>
  512. * DesignerAttribute.cs:
  513. * EditorAttribute: Style changes. Gonzalo committed the build
  514. fixes before I did.
  515. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  516. * DesignerAttribute.cs:
  517. * EditorAttribute.cs: fixed the build.
  518. 2002-11-19 Alejandro Snchez Acosta <[email protected]>
  519. * EditorAttribute: implemented.
  520. * DesignerAttribute: implemented.
  521. 2002-11-11 Gonzalo Paniagua Javier <[email protected]>
  522. * Win32Exception.cs: added 10107 -> WASSYSCALLFAILURE.
  523. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  524. * ListBindableAttribute.cs: implemented.
  525. 2002-11-02 Duncan Mak <[email protected]>
  526. * InvalidEnumArgumentException.cs: Added.
  527. 2002-10-30 Gonzalo Paniagua Javier <[email protected]>
  528. * EventHandlerList.cs: fixed bug #29535.
  529. 2002-10-03 Dick Porter <[email protected]>
  530. * Win32Exception.cs: Added ETIMEDOUT
  531. 2002-09-30 Dick Porter <[email protected]>
  532. * Win32Exception.cs: Sorted the errors, added EINPROGRESS
  533. 2002-09-17 Asier Llano Palacios <[email protected]>
  534. * CancelEventArgs.cs
  535. * WarningException.cs
  536. * CancelEventHandler.cs
  537. * PropertyChangedEventHandler.cs
  538. * IExtenderProvider.cs: Implemented
  539. 2002-08-28 Gonzalo Paniagua Javier <[email protected]>
  540. * Component.cs:
  541. * ComponentCollection.cs:
  542. * Container.cs:
  543. * MarshalByValueComponent.cs: IDisposable fixes.
  544. 2002-08-23 Gonzalo Paniagua Javier <[email protected]>
  545. * BindableSupport.cs:
  546. * Component.cs:
  547. * EventDescriptorCollection.cs:
  548. * ITypeDescriptorContext.cs:
  549. * TypeConverter.cs:
  550. * TypeDescriptor.cs: class status based fixes.
  551. * StringConverter.cs: implemented a couple of methods.
  552. 2002-07-29 Gonzalo Paniagua Javier <[email protected]>
  553. * EnumConverter.cs: new file.
  554. * TypeConverter.cs: implemented a few simple methods.
  555. * TypeDescriptor.cs:
  556. (GetConverter): initial support for converters of well-known types.
  557. 2002-07-28 Gonzalo Paniagua Javier <[email protected]>
  558. * DerivedPropertyDescriptor.cs: New file. Internal class.
  559. * PropertyDescriptorCollection.cs: almost fully implemented.
  560. * TypeDescriptor.cs: implemented a couple of GetProperties ().
  561. Wed Jul 24 13:14:30 CEST 2002 Paolo Molaro <[email protected]>
  562. * Component.cs: don't die if Disposed is null.
  563. 2002-07-22 Tim Coleman <[email protected]>
  564. * RecommendedAsConfigurableAttribute.cs: new file added
  565. for System.Web.Services build
  566. 2002-07-22 Tim Coleman <[email protected]>
  567. * ExpandableObjectConverter.cs: Fix error with constructor
  568. 2002-07-22 Tim Coleman <[email protected]>
  569. * TypeConverter.cs: Fixed bad stubb function
  570. GetConvertToException ()
  571. 2002-07-22 Tim Coleman <[email protected]>
  572. * ComponentCollection.cs: Added reference to
  573. ReadOnlyCollectionBase to make sure
  574. that we inherit the appropriate methods.
  575. Not sure why the Dispose() method is
  576. required, but left for now.
  577. 2002-07-22 Tim Coleman <[email protected]>
  578. * TypeConverter.cs: Added new stubbs
  579. * BindableAttribute.cs: Added
  580. * BindableSupport.cs: Added
  581. * NotifyParentPropertyAttribute.cs: Added
  582. * ExpandableObjectConverter.cs: Added
  583. 2002-07-20 Gonzalo Paniagua Javier <[email protected]>
  584. * MemberDescriptor.cs: implemented Attributes and Category.
  585. * PropertyDescriptor.cs: implemented Converter. Declared GetValue ().
  586. * PropertyDescriptorCollection.cs: fixed indexers declaration.
  587. * ReadOnlyAttribute.cs: GetHashCoder (), Equals (), IsDefault () and
  588. fixed value for Yes.
  589. * ToolboxItemAttribute.cs: fixed declaration of IsDefaultAttribute.
  590. * TypeConverter.cs: added SimplePropertyDescriptor class.
  591. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  592. * ToolboxItemAttribute.cs: New file.
  593. 2002-07-13 Gonzalo Paniagua Javier <[email protected]>
  594. * DefaultEventAttribute.cs: new file.
  595. 2002-07-12 Gonzalo Paniagua Javier <[email protected]>
  596. * AttributeCollection.cs: fixlet.
  597. 2002-07-07 Gonzalo Paniagua Javier <[email protected]>
  598. * AttributeCollection.cs: finished implementation.
  599. * TypeDescriptor.cs: implemented GetAttributes (object).
  600. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  601. * AttributeCollection.cs: initialize member variables.
  602. * RefreshEventArgs.cs: implemented.
  603. * RefreshEventHandler.cs: New file.
  604. * TypeDescriptor.cs: fully stubbed out the remaining method.
  605. 2002-07-06 Gonzalo Paniagua Javier <[email protected]>
  606. * DefaultPropertyAttribute.cs: New file.
  607. 2002-06-23 Gonzalo Paniagua Javier <[email protected]>
  608. * TypeConverter.cs: flushed local changes.
  609. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  610. * StringConverter.cs: stubbed out.
  611. * TypeConverter.cs: stubbed the rest out and added some implementation.
  612. Five errors left when compiling System.Web in linux.
  613. 2002-06-20 Gonzalo Paniagua Javier <[email protected]>
  614. * TypeConverterAttribute.cs: attribute used by
  615. TypeDescriptor.Getconverter ().
  616. * TypeDescriptor.cs: implemented GetConverter in the right way.
  617. 2002-06-15 Gonzalo Paniagua Javier <[email protected]>
  618. * TypeConverter.cs:
  619. * ITypeDescriptorContext.cs:
  620. * TypeDescriptor.cs: implemented minimal set of features needed by xsp,
  621. which uses ColorConverter.
  622. 2002-05-12 Daniel Morgan <[email protected]>
  623. * IComponent.cs
  624. * ISite.cs: added using System
  625. * MarshalByValueComponent.cs: changed all throwing of Not ImplementedException
  626. to // TODOs and added using System. The throwing of the exceptions prevented
  627. System.Data from running.
  628. 2002-05-10 Rodrigo Moya <[email protected]>
  629. * EventDescriptorCollection.cs (this[index]): call eventList[index],
  630. not this[index], which issues an 'ambigous call' error on Linux.
  631. 2002-05-07 Rodrigo Moya <[email protected]>
  632. * EventDescriptor.cs: added missing constructors.
  633. * EventDescriptorCollection.cs: fixed interface methods implementation
  634. * IDataErrorInfo.cs:
  635. * IEditableObject.cs: new interfaces.
  636. 2002-05-05 Gonzalo Paniagua Javier <[email protected]>
  637. * System.ComponentModel/AttributeCollection.cs: added a cast to make
  638. it compile.
  639. 2002-05-03 Rodrigo Moya <[email protected]>
  640. * AttributeCollection.cs:
  641. * EventDescriptor.cs:
  642. * EventDescriptorCollection.cs:
  643. * ICustomTypeDescriptor.cs: new files.
  644. 2002-05-01 Duncan Mak <[email protected]>
  645. * ListChangedType.cs:
  646. * ListChangedEventHandler.cs:
  647. * ListChangedEventArgs.cs: Added to fix build.
  648. 2002-05-01 Miguel de Icaza <[email protected]>
  649. * PropertyDescriptorCollection.cs: Added the IList explicit
  650. implementation methods.
  651. lots of bug fixes to get the build to compile again.
  652. 2002-05-01 Duncan Mak <[email protected]>
  653. * ListSortDirection.cs: EnumChecked.
  654. 2002-05-01 Rodrigo Moya <[email protected]>
  655. * ListSortDirection.cs: new enumeration. Please, somebody run
  656. EnumCheck on it, as I don't have a windows machine.
  657. * PropertyDescriptorCollection.cs: new class.
  658. * ITypedList.cs:
  659. * IBindingList.cs: new interfaces.
  660. 2002-04-28 Duncan Mak <[email protected]>
  661. * CollectionChangeAction.cs: Changed enum layout to fit the MS
  662. implementation. Please use EnumCheck!
  663. 2002-04-28 Rodrigo Moya <[email protected]>
  664. * CollectionChangeAction.cs: new enumeration.
  665. * CategoryAttribute.cs: moved the 'return' keyword to the
  666. end of the method, to avoid compilation errors on Linux for
  667. all CategoryAttribute properties.
  668. 2002-04-28 Rodrigo Moya <[email protected]>
  669. * IListSource.cs:
  670. * ISupportInitialize.cs:
  671. * MarshalByValueComponent.cs: new stubs, needed for System.Data
  672. compilation.
  673. * PropertyChangedEventArgs.cs:
  674. * CollectionChangeEventHandler.cs:
  675. * CollectionChangeEventArgs.cs: implemented.
  676. 2002-04-28 Lawrence Pit <[email protected]>
  677. * Added error code 11001 to Win32Exception, used by Dns.c
  678. 2002-04-04 Dick Porter <[email protected]>
  679. * ISynchronizeInvoke.cs: Needed by Process
  680. 2002-01-23 Dick Porter <[email protected]>
  681. * Win32Exception.cs: implement, with support for looking up
  682. runtime errors.
  683. 2002-01-17 Miguel de Icaza <[email protected]>
  684. * Win32Exception.cs: Add.
  685. 2002-01-05 Ravi Pratap <[email protected]>
  686. * CategoryAttribute.cs, Component.cs, ComponentCollection.cs: MonoTODO.
  687. * Container.cs, MemberDescriptor.cs, PropertyDescriptor.cs : Ditto.
  688. 2001-10-27 Miguel de Icaza <[email protected]>
  689. * DesignerSerializationVisibilityAttribute.cs: Implemented.
  690. * DesignerSerializationVisibility.cs: New enumeration.
  691. * LocalizableAttribute.cs: Implemented.
  692. * BrowsableAttribute.cs: Implemented.
  693. * DesignOnlyAttribute.cs: Implemented.
  694. * DescriptionAttribute.cs: Implement.
  695. * MemberDescriptor.cs: Implemented.
  696. * CategoryAttribute.cs: implemented.
  697. 2001-08-21 Nick Drochak <[email protected]>
  698. * Component.cs: Eliminated compile errors by removing redundant fields and
  699. using the ISite member instead. Also raised the Disposed event, but not
  700. sure if it's correct now. Look for FIXME in the comments.
  701. 2001-08-02 Miguel de Icaza <[email protected]>
  702. * EventHandlerList.cs: New file.
  703. * Container.cs, Component.cs, IContainer.cs, IComponent.cs,
  704. ComponentCollection.cs, ISite.cs: New classes