ChangeLog 37 KB

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