From 2e5a59ea976d4f34989daef2f3e08426d8e688d8 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Thu, 18 Aug 2016 22:11:37 +0100 Subject: [PATCH] Added missing XML documentation and emptied webname. --- Claunia.Encoding/ChangeLog | 5 +++++ Claunia.Encoding/LisaRoman.cs | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/Claunia.Encoding/ChangeLog b/Claunia.Encoding/ChangeLog index 5a39af5..447e0fc 100644 --- a/Claunia.Encoding/ChangeLog +++ b/Claunia.Encoding/ChangeLog @@ -1,3 +1,8 @@ +2016-08-18 Natalia Portillo + + * LisaRoman.cs: Added missing XML documentation and emptied + webname. + 2016-08-18 Natalia Portillo * Encoding.cs: diff --git a/Claunia.Encoding/LisaRoman.cs b/Claunia.Encoding/LisaRoman.cs index 13f3f04..5f65d55 100644 --- a/Claunia.Encoding/LisaRoman.cs +++ b/Claunia.Encoding/LisaRoman.cs @@ -28,13 +28,16 @@ using System; namespace Claunia.Encoding { + /// + /// Represents an Apple Lisa character encoding of Unicode characters. + /// public class LisaRoman : System.Text.Encoding { const string _bodyname = "lisa"; const int _codepage = 0; const string _encodingname = "Apple Lisa"; const string _headername = "lisa"; - const string _webname = "lisa"; + const string _webname = ""; const int _windowsCodepage = 10000; const bool browserDisplay = false; @@ -108,6 +111,9 @@ namespace Claunia.Encoding get { return _headername; } } + /// + /// Ggets the name registered with the Internet Assigned Numbers Authority (IANA) for the current encoding. + /// public override string WebName { get { return _webname; } }