ChangeLog 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  2. * ConfigXmlDocument.cs: don't jump over the first element.
  3. * ConfigurationSettings.cs: pass doc.DocumentElement instead of doc.
  4. This used to work until i tried to access one attribute of the first
  5. element and realized that the element was not the expected!
  6. This change does not affect the configuration handlers that only use
  7. ChildNodes property on the XmlNode they get as argument.
  8. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  9. * ConfigurationSettings.cs: removed type loading hack no longer needed.
  10. 2002-12-14 Jonathan Pryor <[email protected]>
  11. * ConfigurationSettings.cs: Allow configuration sections to be removed.
  12. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  13. * ConfigurationSettings.cs: use AppDomainSetup to get the configuration
  14. file name for the AppDomain.
  15. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  16. * ConfigHelper.cs: NameValueCollection.Add is now fixed.
  17. 2002-10-14 Martin Baulig <[email protected]>
  18. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath):
  19. Append ".config" to the filename, not ".exe.config" since the
  20. filename already has a ".exe" suffix.
  21. 2002-10-14 Martin Baulig <[email protected]>
  22. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath): Use
  23. Assembly.Location, not Assembly.FullName to get its filename.
  24. 2002-10-10 Gonzalo Paniagua Javier <[email protected]>
  25. * ConfigHelper.cs: workaround for a bug in NameValueCollection.
  26. * ConfigurationSettings.cs: load sections when the parent holds a
  27. handler for it. Now overriding appSettings values in the app config
  28. file works (first <remove..> and then <add...).
  29. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  30. * ConfigHelper.cs:
  31. * NameValueFileSectionHandler.cs: check that Attributes is not null.
  32. 2002-10-09 Miguel de Icaza <[email protected]>
  33. * NameValueFileSectionHandler.cs: For now if a section is not
  34. present, return null. Do not know what the real fix is. Gonzalo
  35. will have to look at this, but the debugger was crashing as
  36. appSettings in the machine.config does not exist, but GetConfig
  37. returns a non-null value when looking it up when you do a
  38. GetDocumentForSection ("appSettings").
  39. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  40. * ConfigurationSettings.cs: use get_machine_config_path internal call.
  41. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  42. * ConfigXmlDocument.cs: move the reader for the section to the first
  43. element.
  44. * ConfigurationSettings.cs: fixed hierarchical search for a handler.
  45. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  46. * ConfigurationSettings.cs: reimplemented. It is now able to deliver
  47. sections to their handlers for processing.
  48. 2002-10-03 Gonzalo Paniagua Javier <[email protected]>
  49. * ConfigHelper.cs: New file. Contains some
  50. helper functions for getting key-value collections from the config file.
  51. * ConfigXmlDocument.cs: wrapper around xml elements to provide line
  52. number and file name info.
  53. * IConfigXmlNode.cs: used in ConfigXmlDocument and
  54. ConfigurationException.
  55. * ConfigurationException.cs: get file name and line
  56. number from the wrapped XmlNode. Display this info in Message.
  57. * NameValueFileSectionHandler.cs: new handler.
  58. * DictionarySectionHandler.cs:
  59. * NameValueSectionHandler.cs: modified to use the helper methods in
  60. ConfigHelper.
  61. 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
  62. * AppSettingsReader.cs: New file.
  63. * IConfigurationSystem.cs: New file.
  64. * IgnoreSectionHandler.cs:
  65. * NameValueSectionHandler.cs:
  66. * SingleTagSectionHandler.cs: little fixes.
  67. 2002-09-03 Martin Baulig <[email protected]>
  68. * ConfigurationSettings.cs (ConfigurationSettings.GetConfig): Use the
  69. correct configuration filename, fixed the TODO.
  70. (GetSectionHanderType): Renamed to GetSectionHandlerType.
  71. * NameValueSectionHandler.cs (NameValueSectionHandler.Create): Allow
  72. whitespaces in the configuration file.
  73. 2002-01-31 Duncan Mak <[email protected]>
  74. * ConfigurationException.cs: Rewrote most of the file and added
  75. serialization bits.
  76. 2002-01-06 Ravi Pratap <[email protected]>
  77. * ConfigurationSettings.cs, IgnoreSectionHandler.cs : MonoTODO decoration
  78. * SingleTagSectionHandler.cs, DictionarySectionHandler.cs,
  79. NameValueSectionHandler.cs : Ditto.
  80. 2001-08-28 Christopher Podurgiel <[email protected]>
  81. * IConfigurationSectionHandler.cs: Added reference to System.Xml.
  82. * SingleTagSectionHandler.cs: Added Implementation of Create() method.
  83. * NameValueSectionHandler.cs: Added Implementation of Create() method.
  84. * ConfigurationException.cs: Now returns proper message rather than "System Exception".
  85. 2001-08-26 Christopher Podurgiel <[email protected]>
  86. * 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.