Mercurial > pidgin.yaz
view libpurple/plugins/mono/api/PurplePlugin.cs @ 29130:f8da53e381dd
Improved handling of the 0x00d charset in AIM, which is sent by mobile devices speaking ISO-8859-1. Try UTF-8 first (the encoding sent by iChat in a Direct IM with non-ASCII characters), then fall back to ISO-8859-1. Fixes #a13544, a bug created with the fix for iChat DIM encoding new in libpurple 2.6.4"
applied changes from 6f3a1b3c52803e11d4cda1e0537c1270599e8d8e
through ed0a2a35c7e22519df27c50069c22b03e01c027a
author | Evan Schoenberg <evan.s@dreskin.net> |
---|---|
date | Fri, 04 Dec 2009 02:24:41 +0000 |
parents | 80ee585fb53c |
children |
line wrap: on
line source
namespace Purple { public class PluginInfo { private string id; private string name; private string version; private string summary; private string description; private string author; private string homepage; public PluginInfo(string id, string name, string version, string summary, string description, string author, string homepage) { this.id = id; this.name = name; this.version = version; this.summary = summary; this.description = description; this.author = author; this.homepage = homepage; } public string Id { get { return id; } } public string Name { get { return name; } } public string Version { get { return version; } } public string Summary { get { return summary; } } public string Description { get { return description; } } public string Author { get { return author; } } public string Homepage { get { return homepage; } } } abstract public class Plugin { private PluginInfo info; public Plugin(PluginInfo info) { this.info = info; } public abstract void Load(); public abstract void Unload(); public abstract void Destroy(); public PluginInfo Info { get { return info; } } } }