ChangeLog 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. 2002-10-10 Gonzalo Paniagua Javier <[email protected]>
  2. * ConfigHelper.cs: workaround for a bug in NameValueCollection.
  3. * ConfigurationSettings.cs: load sections when the parent holds a
  4. handler for it. Now overriding appSettings values in the app config
  5. file works (first <remove..> and then <add...).
  6. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  7. * ConfigHelper.cs:
  8. * NameValueFileSectionHandler.cs: check that Attributes is not null.
  9. 2002-10-09 Miguel de Icaza <[email protected]>
  10. * NameValueFileSectionHandler.cs: For now if a section is not
  11. present, return null. Do not know what the real fix is. Gonzalo
  12. will have to look at this, but the debugger was crashing as
  13. appSettings in the machine.config does not exist, but GetConfig
  14. returns a non-null value when looking it up when you do a
  15. GetDocumentForSection ("appSettings").
  16. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  17. * ConfigurationSettings.cs: use get_machine_config_path internal call.
  18. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  19. * ConfigXmlDocument.cs: move the reader for the section to the first
  20. element.
  21. * ConfigurationSettings.cs: fixed hierarchical search for a handler.
  22. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  23. * ConfigurationSettings.cs: reimplemented. It is now able to deliver
  24. sections to their handlers for processing.
  25. 2002-10-03 Gonzalo Paniagua Javier <[email protected]>
  26. * ConfigHelper.cs: New file. Contains some
  27. helper functions for getting key-value collections from the config file.
  28. * ConfigXmlDocument.cs: wrapper around xml elements to provide line
  29. number and file name info.
  30. * IConfigXmlNode.cs: used in ConfigXmlDocument and
  31. ConfigurationException.
  32. * ConfigurationException.cs: get file name and line
  33. number from the wrapped XmlNode. Display this info in Message.
  34. * NameValueFileSectionHandler.cs: new handler.
  35. * DictionarySectionHandler.cs:
  36. * NameValueSectionHandler.cs: modified to use the helper methods in
  37. ConfigHelper.
  38. 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
  39. * AppSettingsReader.cs: New file.
  40. * IConfigurationSystem.cs: New file.
  41. * IgnoreSectionHandler.cs:
  42. * NameValueSectionHandler.cs:
  43. * SingleTagSectionHandler.cs: little fixes.
  44. 2002-09-03 Martin Baulig <[email protected]>
  45. * ConfigurationSettings.cs (ConfigurationSettings.GetConfig): Use the
  46. correct configuration filename, fixed the TODO.
  47. (GetSectionHanderType): Renamed to GetSectionHandlerType.
  48. * NameValueSectionHandler.cs (NameValueSectionHandler.Create): Allow
  49. whitespaces in the configuration file.
  50. 2002-01-31 Duncan Mak <[email protected]>
  51. * ConfigurationException.cs: Rewrote most of the file and added
  52. serialization bits.
  53. 2002-01-06 Ravi Pratap <[email protected]>
  54. * ConfigurationSettings.cs, IgnoreSectionHandler.cs : MonoTODO decoration
  55. * SingleTagSectionHandler.cs, DictionarySectionHandler.cs,
  56. NameValueSectionHandler.cs : Ditto.
  57. 2001-08-28 Christopher Podurgiel <[email protected]>
  58. * IConfigurationSectionHandler.cs: Added reference to System.Xml.
  59. * SingleTagSectionHandler.cs: Added Implementation of Create() method.
  60. * NameValueSectionHandler.cs: Added Implementation of Create() method.
  61. * ConfigurationException.cs: Now returns proper message rather than "System Exception".
  62. 2001-08-26 Christopher Podurgiel <[email protected]>
  63. * ConfigurationSettings.cs: No longer references the NameValueSectionHandler directly. Instead it uses System.Reflection to call the Create() method for the appropriate SectionHandler as defined in the .config file.