Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ChangeLog « System.Resources « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aad07bd2bef30f0a1e5070c0e644938df3558079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
2002-03-12  Duncan Mak  <duncan@ximian.com>

	* MissingManifestResourceException.cs: This should inherit from
	SystemException, not Exception.

2002-01-26  Nick Drochak  <ndrochak@gol.com>

	* ResourceReader.cs: Finsished reading resource files with just strings
	in them.  Need to figure out other types, and also resources with
	multiple types in the same file.

2002-01-24  Nick Drochak  <ndrochak@gol.com>

	* ResourceReader.cs: Implemented constructors. Started on the 
	GetEnumerator() method.  Not done yet, but comitting for 
	'disaster recovery' purposes.

2002-01-19  Duncan Mak  <duncan@ximian.com>

	* *.cs: Fixed indentation. There was a stupid bug in my .emacs file.

2002-1-17  Duncan Mak  <duncan@duncan@ximian.com>

	* ResourceSet.cs: Implemented GetObject (string, bool) and GetString
	(string, bool). ResourceSet has no more MonoTODOs! Also added in the
	Serializable attribute.
	
	* *.cs: convert to Miguel's brace style.

2002-01-17  Duncan Mak  <duncan@ximian.com>

	* ResourceManager.cs: Fixed GetNeutralResourcesLanguage () and added
	new attributes documented in 1.0 SDK.

2002-01-17  Duncan Mak  <duncan@ximian.com>

	* ResourceWriter.cs: Added MonoTODO decorations.

	* SatelliteContractVersionAttribute.cs: added new attributes in 1.0 SDK.

	* NeutralResoucesLanguageAttribute.cs: added new attributes in 1.0 SDK
	
2002-01-16  Duncan Mak  <duncan@ximian.com>

	* ResourceReader.cs: Fixed some typos.

	* ResourceManager.cs: After reading the tutorial from the SDK,
	finished all the ResourceManager constructors and removed those
	MonoTODO tags.
	
	Removed MonoTODO from GetNeutralResourcesLanguage (Assembly)
	because Miguel just implemented the whole class, including the
	constructor that I needed (CultureInfo (string)).

	Updated fields after reading the new docs from the final SDK.

	* ResXFileRef.cs, ResXResourceReader.cs: Removed. They are part of
	Windows.Forms and require System.Xml, which we don't have access to.

2002-01-13  Duncan Mak  <duncan@ximian.com>

	* ResourceManager.cs: Added more MonoTODOs and cleaned up some 
	indenting.

2002-01-09  Duncan Mak  <duncan@ximian.com>

	* ResourceManager.cs: Fixed the GetSatelliteContractVersion()
	method. It was missing a cast before. Removed MonoTODO
	attribute. ;-) It was tested by John Barnette, so this shouldn't break
	the build.

	* ResourceManager.cs: Removed MonoTODO attribute on GetString
	(string), as I believe it's correct. However, GetString
	(string, CultureInfo) is definitely broken, so I'm marking it with
	MonoTODO there. I also added MonoTODO to IntenalGetResourceSet().

2002-01-06  Duco Fijma <duco@lorentz.xs4all.nl>
	* Finalizing IResourceReader and IResourceWriter interfaces: 
          Added "new"-modifier to IResourceReader.GetEnumerator
	* Fixed compilation issues in other *.cs, so that the 
          System.Resources namespaces can be included in the corlib build.

2002-01-05  Ravi Pratap  <ravi@ximian.com>

	* ResourceManager.cs : MonoTODO attribute decoration.
	
Tue Dec 18 13:18:32 CET 2001 Paolo Molaro <lupus@ximian.com>

	* *.cs: fixed some of the compilation issues: missing
	using directives, typos.

2001-12-11  Duncan Mak  <duncan@ximian.com>

	* Checked in to CVS.

2001-12-10  Duncan Mak  <duncan@ximian.com>

	* ResourceManager.cs (GetNeutralResourcesLanguage):
	(GetSatelliteContractVersion): Implemented.
	
2001-12-09  Duncan Mak  <duncan@ximian.com>

	* ResXResourceReader.cs: Initial attempt.

	* ResXFileRef.cs: Initial attempt.

	* ResourceWriter.cs: Initial attempt.

	* ResourceSet.cs (ReadResources): Implemented, with help from Radek Doulik.

2001-11-28  Duncan Mak <duncan@ximian.com>	

	* ResourceManager.cs: First attempt.

2001-11-27  Duncan Mak <duncan@ximian.com>

	* ResourceSet.cs:
	First attempt, can't continue until ResourceReader and ResourceWriter are implemented.
		
	* SatelliteContractVersionAttribute.cs: First attempt. The spec is quite amibiguous here.

	* NeutralResoucesLanguageAttribute.cs: Complete.

	* MissingManifestResourceException.cs: Complete.

	* IResourceReader.cs: Complete.

	* IResourceWriter.cs: Complete.