ChangeLog 3.2 KB

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