ChangeLog 5.2 KB

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