ChangeLog 6.5 KB

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