From: Manuel Nickschas Date: Tue, 28 Sep 2010 16:44:20 +0000 (+0200) Subject: Add skeletal EventStringifier X-Git-Tag: 0.8-beta1~111 X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=commitdiff_plain;h=3eebe11329417e77038d860af3b6f35630f40450;hp=3eebe11329417e77038d860af3b6f35630f40450 Add skeletal EventStringifier This class is supposed to generate the user-visible messages from IrcEvents, i.e. it generates MessageEvents. For now, this lives in the CoreSession, which consumes and converts the MessageEvents into the usual Messages that are then sent to the client. In the future, this whole class should move into the client, in order to move string generation out of the core. There's no need to store plaintext strings in the database if we can as well simply store the IrcEvents, plus this will allow per-client translations. ---