ChangeLog 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277
  1. 2004-08-16 Duncan Mak <[email protected]>
  2. * ConfigurationElement.cs (InitializeDefault): Made virtual.
  3. * AppSettingsSection.cs:
  4. * Configuration.cs:
  5. * ConfigurationLocation.cs:
  6. * ConfigurationLocationCollection.cs:
  7. * ConfigurationSection.cs:
  8. * ConfigurationSectionCollection.cs:
  9. * ConfigurationSectionGroup.cs:
  10. * ConfigurationSectionGroupCollection.cs:
  11. * ConnectionStringsSection.cs: Added stubs and bits of implementation.
  12. Other than ConfigurationElementCollection and
  13. ConnectionStringsSectionCollection, we now have the basic skeleton
  14. for implementing the configuration system in the
  15. System.Configuration namespace.
  16. 2004-08-11 Duncan Mak <[email protected]>
  17. * ProtectedConfigurationProvider.cs: Use XML_DEP.
  18. 2004-08-11 Duncan Mak <[email protected]>
  19. * ProtectedConfigurationProvider.cs:
  20. * ProviderBase.cs: Implemented.
  21. * ConfigurationPropertyAttribute.cs: Implemented attribute.
  22. * ConfigurationAllowDefinition.cs:
  23. * ConfigurationUserLevel.cs:
  24. * PathLevel.cs: Added enumerations.
  25. 2004-08-07 Atsushi Enomoto <[email protected]>
  26. * ConfigurationElement.cs,
  27. ConfigurationProperty.cs,
  28. ConfigurationPropertyCollection.cs,
  29. ConfigurationValidationAttribute.cs : use XML_DEP.
  30. 2004-08-06 Duncan Mak <[email protected]>
  31. * ConfigurationElement.cs: Added stubs.
  32. * ConfigurationProperty.cs:
  33. * ConfigurationPropertyCollection.cs:
  34. * ConfigurationValidationAttribute.cs: Added.
  35. * ConfigurationPropertyFlags.cs:
  36. * ConfigurationUpdateMode.cs: Added 2.0 enumerations.
  37. 2004-06-15 Gonzalo Paniagua Javier <[email protected]>
  38. * ConfigurationSettings.cs: allow empty <configSections>.
  39. 2004-05-17 Gonzalo Paniagua Javier <[email protected]>
  40. * ConfigurationSettings.cs: don't ask me why, but the .cctor
  41. initialization of 'instance' field does no longer work.
  42. 2004-05-06 Gonzalo Paniagua Javier <[email protected]>
  43. * ConfigXmlDocument.cs: removed method that was supposed to be internal.
  44. * ConfigurationSettings.cs: instead of calling the overload that doesn't
  45. exist in MS, use what we have when loading an external file.
  46. 2004-04-20 Gonzalo Paniagua Javier <[email protected]>
  47. * ConfigXmlDocument.cs: fixed overloaded Load and added a new one that
  48. sets the file name.
  49. * ConfigurationSettings.cs: use the new Load in ConfigXmlDocument when
  50. loading sections.
  51. * NameValueFileSectionHandler.cs: don't fails if the path for the 'file'
  52. attribute doesn't have a directory.
  53. Closes bug #57244.
  54. 2004-03-19 Gonzalo Paniagua Javier <[email protected]>
  55. * ConfigurationSettings.cs: removed FileWatcherCache. See bug #53445.
  56. 2003-12-03 Gonzalo Paniagua Javier <[email protected]>
  57. * ConfigurationSettings.cs: initialize config in
  58. ChangeConfigurationSettings if it has not been done yet. Patch by
  59. George Kodinov [email protected]). Fixes bug #51643.
  60. 2003-12-02 Gonzalo Paniagua Javier <[email protected]>
  61. * ConfigurationSettings.cs: handle allowdefinition and allowlocation,
  62. added locks, don't reopen the file for every new section to be read,
  63. but keep them as strings and build the section handlers with that.
  64. Also allow changing the configuration system (used from System.Web).
  65. 2003-11-17 Ben Maurer <[email protected]>
  66. * ConfigurationSettings.cs: make the *Mark objects static
  67. because they need to be comparable across instances.
  68. (ReadSectionGroup): You can add an element to a group declared
  69. in the parent config files (MS.net's QuickStarts do this).
  70. 2003-11-06 Gonzalo Paniagua Javier <[email protected]>
  71. * ConfigurationSettings.cs: don't handle null or non-existent file in
  72. the catch blocks.
  73. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  74. * ConfigurationSettings.cs: really make the cache work.
  75. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  76. * ConfigurationSettings.cs: pass the file name we're reading as the
  77. context.
  78. 2003-10-03 Gonzalo Paniagua Javier <[email protected]>
  79. * ConfigurationSettings.cs: patch by Eric Lindvall ([email protected])
  80. that improves performance by not reading the file more than once.
  81. 2003-07-15 Andreas Nahr <[email protected]>
  82. * ConfigurationSettings.cs: Removed unused exception variable, fixes
  83. compiler warning
  84. 2003-06-16 Lluis Sanchez Gual <[email protected]>
  85. * ConfigurationSettings.cs: Avoid chicken-egg problem when reading
  86. machine.config. Cannot use an uri to read mechine.config because web
  87. request module handelrs are defined in machine.config.
  88. 2003-03-02 Gonzalo Paniagua Javier <[email protected]>
  89. * AppSettingsReader.cs: fixed bug #38755.
  90. 2002-12-19 Gonzalo Paniagua Javier <[email protected]>
  91. * ConfigXmlDocument.cs: don't jump over the first element.
  92. * ConfigurationSettings.cs: pass doc.DocumentElement instead of doc.
  93. This used to work until i tried to access one attribute of the first
  94. element and realized that the element was not the expected!
  95. This change does not affect the configuration handlers that only use
  96. ChildNodes property on the XmlNode they get as argument.
  97. 2002-12-15 Gonzalo Paniagua Javier <[email protected]>
  98. * ConfigurationSettings.cs: removed type loading hack no longer needed.
  99. 2002-12-14 Jonathan Pryor <[email protected]>
  100. * ConfigurationSettings.cs: Allow configuration sections to be removed.
  101. 2002-11-04 Gonzalo Paniagua Javier <[email protected]>
  102. * ConfigurationSettings.cs: use AppDomainSetup to get the configuration
  103. file name for the AppDomain.
  104. 2002-10-31 Gonzalo Paniagua Javier <[email protected]>
  105. * ConfigHelper.cs: NameValueCollection.Add is now fixed.
  106. 2002-10-14 Martin Baulig <[email protected]>
  107. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath):
  108. Append ".config" to the filename, not ".exe.config" since the
  109. filename already has a ".exe" suffix.
  110. 2002-10-14 Martin Baulig <[email protected]>
  111. * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath): Use
  112. Assembly.Location, not Assembly.FullName to get its filename.
  113. 2002-10-10 Gonzalo Paniagua Javier <[email protected]>
  114. * ConfigHelper.cs: workaround for a bug in NameValueCollection.
  115. * ConfigurationSettings.cs: load sections when the parent holds a
  116. handler for it. Now overriding appSettings values in the app config
  117. file works (first <remove..> and then <add...).
  118. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  119. * ConfigHelper.cs:
  120. * NameValueFileSectionHandler.cs: check that Attributes is not null.
  121. 2002-10-09 Miguel de Icaza <[email protected]>
  122. * NameValueFileSectionHandler.cs: For now if a section is not
  123. present, return null. Do not know what the real fix is. Gonzalo
  124. will have to look at this, but the debugger was crashing as
  125. appSettings in the machine.config does not exist, but GetConfig
  126. returns a non-null value when looking it up when you do a
  127. GetDocumentForSection ("appSettings").
  128. 2002-10-09 Gonzalo Paniagua Javier <[email protected]>
  129. * ConfigurationSettings.cs: use get_machine_config_path internal call.
  130. 2002-10-08 Gonzalo Paniagua Javier <[email protected]>
  131. * ConfigXmlDocument.cs: move the reader for the section to the first
  132. element.
  133. * ConfigurationSettings.cs: fixed hierarchical search for a handler.
  134. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  135. * ConfigurationSettings.cs: reimplemented. It is now able to deliver
  136. sections to their handlers for processing.
  137. 2002-10-03 Gonzalo Paniagua Javier <[email protected]>
  138. * ConfigHelper.cs: New file. Contains some
  139. helper functions for getting key-value collections from the config file.
  140. * ConfigXmlDocument.cs: wrapper around xml elements to provide line
  141. number and file name info.
  142. * IConfigXmlNode.cs: used in ConfigXmlDocument and
  143. ConfigurationException.
  144. * ConfigurationException.cs: get file name and line
  145. number from the wrapped XmlNode. Display this info in Message.
  146. * NameValueFileSectionHandler.cs: new handler.
  147. * DictionarySectionHandler.cs:
  148. * NameValueSectionHandler.cs: modified to use the helper methods in
  149. ConfigHelper.
  150. 2002-10-02 Gonzalo Paniagua Javier <[email protected]>
  151. * AppSettingsReader.cs: New file.
  152. * IConfigurationSystem.cs: New file.
  153. * IgnoreSectionHandler.cs:
  154. * NameValueSectionHandler.cs:
  155. * SingleTagSectionHandler.cs: little fixes.
  156. 2002-09-03 Martin Baulig <[email protected]>
  157. * ConfigurationSettings.cs (ConfigurationSettings.GetConfig): Use the
  158. correct configuration filename, fixed the TODO.
  159. (GetSectionHanderType): Renamed to GetSectionHandlerType.
  160. * NameValueSectionHandler.cs (NameValueSectionHandler.Create): Allow
  161. whitespaces in the configuration file.
  162. 2002-01-31 Duncan Mak <[email protected]>
  163. * ConfigurationException.cs: Rewrote most of the file and added
  164. serialization bits.
  165. 2002-01-06 Ravi Pratap <[email protected]>
  166. * ConfigurationSettings.cs, IgnoreSectionHandler.cs : MonoTODO decoration
  167. * SingleTagSectionHandler.cs, DictionarySectionHandler.cs,
  168. NameValueSectionHandler.cs : Ditto.
  169. 2001-08-28 Christopher Podurgiel <[email protected]>
  170. * IConfigurationSectionHandler.cs: Added reference to System.Xml.
  171. * SingleTagSectionHandler.cs: Added Implementation of Create() method.
  172. * NameValueSectionHandler.cs: Added Implementation of Create() method.
  173. * ConfigurationException.cs: Now returns proper message rather than "System Exception".
  174. 2001-08-26 Christopher Podurgiel <[email protected]>
  175. * ConfigurationSettings.cs: No longer references the
  176. NameValueSectionHandler directly. Instead it uses
  177. System.Reflection to call the Create() method for the appropriate
  178. SectionHandler as defined in the .config file.