| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- 2002-08-19 Dick Porter <[email protected]>
- * ResourceWriter.cs: Implemented all methods
- * ResourceReader.cs: Cope with our ResourceSet class name, as well
- as theirs
- 2002-08-18 Dick Porter <[email protected]>
- * ResourceReader.cs: Finished basic implementation. Some
- optimisation in conjunction with ResourceSet still possible though
- 2002-08-14 Dick Porter <[email protected]>
- * ResourceSet.cs: Throw the correct exceptions
- * ResourceManager.cs: Implemented all unfinished methods
- 2002-03-12 Duncan Mak <[email protected]>
- * MissingManifestResourceException.cs: This should inherit from
- SystemException, not Exception.
- 2002-01-26 Nick Drochak <[email protected]>
- * 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 <[email protected]>
- * ResourceReader.cs: Implemented constructors. Started on the
- GetEnumerator() method. Not done yet, but comitting for
- 'disaster recovery' purposes.
- 2002-01-19 Duncan Mak <[email protected]>
- * *.cs: Fixed indentation. There was a stupid bug in my .emacs file.
- 2002-1-17 Duncan Mak <duncan@[email protected]>
- * 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 <[email protected]>
- * ResourceManager.cs: Fixed GetNeutralResourcesLanguage () and added
- new attributes documented in 1.0 SDK.
- 2002-01-17 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * ResourceManager.cs: Added more MonoTODOs and cleaned up some
- indenting.
- 2002-01-09 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * 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 <[email protected]>
- * ResourceManager.cs : MonoTODO attribute decoration.
-
- Tue Dec 18 13:18:32 CET 2001 Paolo Molaro <[email protected]>
- * *.cs: fixed some of the compilation issues: missing
- using directives, typos.
- 2001-12-11 Duncan Mak <[email protected]>
- * Checked in to CVS.
- 2001-12-10 Duncan Mak <[email protected]>
- * ResourceManager.cs (GetNeutralResourcesLanguage):
- (GetSatelliteContractVersion): Implemented.
-
- 2001-12-09 Duncan Mak <[email protected]>
- * 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 <[email protected]>
- * ResourceManager.cs: First attempt.
- 2001-11-27 Duncan Mak <[email protected]>
- * 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.
|