Allow configuration settings to be removed. Previously, if you tried to
[mono.git] / mcs / class / System / System.Configuration / ChangeLog
1 2002-12-14  Jonathan Pryor <jonpryor@vt.edu>
2
3         * ConfigurationSettings.cs: Allow configuration sections to be removed.
4
5 2002-11-04  Gonzalo Paniagua Javier <gonzalo@ximian.com>
6
7         * ConfigurationSettings.cs: use AppDomainSetup to get the configuration
8         file name for the AppDomain.
9
10 2002-10-31  Gonzalo Paniagua Javier <gonzalo@ximian.com>
11
12         * ConfigHelper.cs: NameValueCollection.Add is now fixed.
13
14 2002-10-14  Martin Baulig  <martin@gnome.org>
15
16         * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath):
17         Append ".config" to the filename, not ".exe.config" since the
18         filename already has a ".exe" suffix.
19
20 2002-10-14  Martin Baulig  <martin@gnome.org>
21
22         * ConfigurationSettings.cs (DefaultConfig.GetAppConfigPath): Use
23         Assembly.Location, not Assembly.FullName to get its filename.
24
25 2002-10-10  Gonzalo Paniagua Javier <gonzalo@ximian.com>
26
27         * ConfigHelper.cs: workaround for a bug in NameValueCollection.
28         * ConfigurationSettings.cs: load sections when the parent holds a
29         handler for it. Now overriding appSettings values in the app config
30         file works (first <remove..> and then <add...).
31
32 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
33
34         * ConfigHelper.cs:
35         * NameValueFileSectionHandler.cs: check that Attributes is not null.
36
37 2002-10-09  Miguel de Icaza  <miguel@ximian.com>
38
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
46 2002-10-09  Gonzalo Paniagua Javier <gonzalo@ximian.com>
47
48         * ConfigurationSettings.cs: use get_machine_config_path internal call.
49
50 2002-10-08  Gonzalo Paniagua Javier <gonzalo@ximian.com>
51
52         * ConfigXmlDocument.cs: move the reader for the section to the first
53         element.
54         
55         * ConfigurationSettings.cs: fixed hierarchical search for a handler. 
56
57 2002-10-06  Gonzalo Paniagua Javier <gonzalo@ximian.com>
58
59         * ConfigurationSettings.cs: reimplemented. It is now able to deliver
60         sections to their handlers for processing.
61
62 2002-10-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
63
64         * ConfigHelper.cs: New file. Contains some
65         helper functions for getting key-value collections from the config file.
66         
67         * ConfigXmlDocument.cs: wrapper around xml elements to provide line
68         number and file name info.
69         * IConfigXmlNode.cs: used in ConfigXmlDocument and
70         ConfigurationException.
71
72         * ConfigurationException.cs: get file name and line
73         number from the wrapped XmlNode. Display this info in Message.
74
75         * NameValueFileSectionHandler.cs: new handler.
76         * DictionarySectionHandler.cs:
77         * NameValueSectionHandler.cs: modified to use the helper methods in
78         ConfigHelper.
79
80 2002-10-02  Gonzalo Paniagua Javier <gonzalo@ximian.com>
81
82         * AppSettingsReader.cs: New file.
83         * IConfigurationSystem.cs: New file.
84
85         * IgnoreSectionHandler.cs:
86         * NameValueSectionHandler.cs:
87         * SingleTagSectionHandler.cs: little fixes.
88
89 2002-09-03  Martin Baulig  <martin@gnome.org>
90
91         * ConfigurationSettings.cs (ConfigurationSettings.GetConfig): Use the
92         correct configuration filename, fixed the TODO.
93         (GetSectionHanderType): Renamed to GetSectionHandlerType.
94
95         * NameValueSectionHandler.cs (NameValueSectionHandler.Create): Allow
96         whitespaces in the configuration file.
97
98 2002-01-31  Duncan Mak  <duncan@ximian.com>
99
100         * ConfigurationException.cs: Rewrote most of the file and added
101         serialization bits.
102
103 2002-01-06  Ravi Pratap  <ravi@ximian.com>
104
105         * ConfigurationSettings.cs, IgnoreSectionHandler.cs : MonoTODO decoration
106
107         * SingleTagSectionHandler.cs, DictionarySectionHandler.cs, 
108         NameValueSectionHandler.cs : Ditto.
109
110 2001-08-28  Christopher Podurgiel <cpodurgiel@msn.com>
111         * IConfigurationSectionHandler.cs: Added reference to System.Xml.
112         
113         * SingleTagSectionHandler.cs: Added Implementation of Create() method.
114         
115         * NameValueSectionHandler.cs: Added Implementation of Create() method.
116         
117         * ConfigurationException.cs: Now returns proper message rather than "System Exception".
118
119 2001-08-26  Christopher Podurgiel <cpodurgiel@msn.com>
120
121         * 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.
122