adium-1.4 3455:868b6d225803: Lazily making a mass update to mess...

commits at adium.im commits at adium.im
Mon Apr 18 01:02:49 UTC 2011


details:	http://hg.adium.im/adium-1.4/rev/868b6d225803
revision:	3455:868b6d225803
branch:		(none)
author:		mathuaerknedam
date:		Sun Apr 17 20:02:40 2011 -0500

Lazily making a mass update to message styles, bringing 1.4 up to date with the xtras repo.

diffs (truncated from 1922 to 1000 lines):

diff -r b30921efd7f0 -r 868b6d225803 Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist	Sun Apr 17 14:03:31 2011 +0200
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist	Sun Apr 17 20:02:40 2011 -0500
@@ -14,8 +14,6 @@
 	<string>im.adium.Smooth Operator.style</string>
 	<key>CFBundleName</key>
 	<string>Smooth Operator</string>
-	<key>ShowsUserIcons:Compact</key>
-	<false/>
 	<key>DefaultFontFamily</key>
 	<string>Lucida Grande</string>
 	<key>DefaultFontSize</key>
diff -r b30921efd7f0 -r 868b6d225803 Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html	Sun Apr 17 14:03:31 2011 +0200
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html	Sun Apr 17 20:02:40 2011 -0500
@@ -1,4 +1,4 @@
-<div class="%messageClasses% %service% %userIcons% xx-%senderScreenName%" style="background-color: %senderColor%;">
+<div class="%messageClasses% %service% %userIcons%" user="%senderScreenName%" style="background-color: %senderColor%;">
 	<img class="x-icon" src="%userIconPath%" />
 	<span class="x-iconmask" style="-webkit-mask-box-image: url(%userIconPath%);"></span>
 	<span class="x-color" style="background-color: %senderColor%;" src="%userIconPath%"></span>
diff -r b30921efd7f0 -r 868b6d225803 Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js	Sun Apr 17 14:03:31 2011 +0200
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js	Sun Apr 17 20:02:40 2011 -0500
@@ -6,26 +6,27 @@
 		highlightActive = true;
 		var node = event.target;
 		var senderName = null;
-		while (!senderName) {
-			var nodeClass = node.className;
-			if (/(^|[\s])message/.test(nodeClass)) {
-				var parts = nodeClass.split(" ");
-				senderName = parts[parts.length - 1];
-			}
+
+		while (!senderName && node != null) {
+			var senderName = node.getAttribute("user");
 			node = node.parentElement;
 		}
-		var elms = document.getElementsByClassName(senderName); var elemArray = new Array(elms.length); for (var i=0; i<elms.length; i++) { elemArray[i]=elms[i]; }
-		var len = elemArray.length;
-		for(var i = 0; i < len; i++) { 
-			var elem = elms[i];
-			if(elem.offsetTop + elem.offsetHeight >= window.pageYOffset) {
-				if(elem.offsetTop > window.pageYOffset + window.innerHeight) {
+
+		if (!senderName || senderName == "") {
+		  return;
+		}
+
+		var elms = document.getElementsByClassName("message");
+
+		for (i = 0; i < elms.length; i++) {
+			elm = elms[i];
+			if (elm.getAttribute("user") == senderName && elm.offsetTop + elm.offsetHeight >= window.pageYOffset) {
+				if(elm.offsetTop > window.pageYOffset + window.innerHeight) {
 					break;
 				}
-				elemArray.push(elem);
-				elem.className += ' x-hover';
+				elm.className += ' x-hover';
 			}
-		} 
+		}
 	}
 
 	function deselectAll() {
@@ -34,9 +35,9 @@
 		var elms = document.querySelectorAll(".x-hover");
 		var len = elms.length;
 		var elm = null;
-		for(var i = 0; i < len; i++) { 
+		for(var i = 0; i < len; i++) {
 			elm = elms[i];
-			elm.className = elm.className.replace(' x-hover', ''); 
+			elm.className = elm.className.replace(' x-hover', '');
 		}
 		highlightActive = false;
 	}
diff -r b30921efd7f0 -r 868b6d225803 Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html	Sun Apr 17 14:03:31 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,504 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
-<html>
-<head>
-	<title>
-		Smooth Operator message style mockup
-	</title>
-
-	<style type="text/css">
-		@import url( "./Variants/dark.css" );
-
-		body
-		{
-			font-size: 7.5pt;
-			font-family: "Lucida Grande";
-			//font-weight: bold;
-			border-bottom: 1px solid yellow;
-
-			//background: url(/Library/Desktop\ Pictures/Plants/Petals.jpg) center repeat;
-			//background: url(/Library/Desktop\ Pictures/Plants/Leaves.jpg) center repeat;
-			//background: url(/Library/Desktop\ Pictures/Nature/Iceberg.jpg) center repeat;
-			//background: lime;
-		}
-
-</style>
-</head>
-
-<body>
-
-<div id="x-header">
-	<style id="mainStyle" type="text/css" media="screen,print">
-		@import url(./Header.css);
-	</style>
-
-	<div id="x-hide" class="x-toggle" onclick="hide_header();"></div>
-	<div id="x-show" class="x-toggle" onclick="show_header();" style="display: none"></div>
-	<div id="x-wrap">
-		<span class="x-date">Wednesday, June 09, 2004</span>
-		<span class="x-time">12:45:48</span>
-		<a onclick="imageSwap(this, true)" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Resources/Service Icons/Aqua.AdiumServiceIcons/jabber.png" isemoticon="true" class="serviceIcon">Jabber</a>
-		<img src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Resources/Service Icons/Aqua.AdiumServiceIcons/jabber.png" alt="Jabber" class="serviceIcon" />
-		<span class="x-sender x-incoming">Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff!</span>
-		<span class="x-sender x-outgoing">EvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvan!</span>
-		<img class="x-icon x-incoming" src="/Users/mneedham/Library/Caches/Adium/Default/TEMP-Jabber.butlerb at illinois.eduVIPQH.png" />
-		<span class="x-iconmask x-incoming" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Caches/Adium/Default/TEMP-Jabber.butlerb at illinois.eduVIPQH.png);"></span>
-		<span class="x-color x-incoming" style="background-color: paleturquoise;"></span>
-		<img class="x-icon x-outgoing" src="/Users/mneedham/Library/Caches/Adium/Default/TEMP-27SV4D5.png" />
-		<span class="x-iconmask x-outgoing" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Caches/Adium/Default/TEMP-27SV4D5.png);"></span>
-		<span class="x-color x-outgoing" style="background-color: springgreen;"></span>
-	</div>
-</div>
-
-<!--
-<div id="topic" title="#adium-devl Adium development channel - for user help, go to #adium. | 1.5hg nightly: http://nightly.adium.im | Make this go down: http://webnumbr.com/adium-1-5-defects">
-	<div id="x-topic">
-		<style type="text/css">
-			@import url(./Topic.css);
-		</style>
-
-		<div id="x-hide" class="x-toggle" onclick="hide_header();"></div>
-		<div id="x-show" class="x-toggle" onclick="show_header();" style="display: none"></div>
-		<div id="x-wrap">
-			<a onclick="imageSwap(this, true)" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Frameworks/AdiumLibpurple.framework/Resources/irc.png" isemoticon="true" class="x-serviceIcon">IRC</a>
-			<img class="x-serviceIcon" title="IRC" alt="IRC" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Frameworks/AdiumLibpurple.framework/Resources/irc.png" />
-			<span id="topicEdit" ondblclick="this.setAttribute('contentEditable', true); this.focus();"><a href="irc://irc.freenode.net:6667/#adium-devl" title="irc://irc.freenode.net:6667/#adium-devl">#adium-devl</a> Adium development channel - for user help, go to <a href="irc://irc.freenode.net:6667/#adium" title="irc://irc.freenode.net:6667/#adium">#adium</a>. | 1.5hg nightly: <a href="http://nightly.adium.im" title="http://nightly.adium.im">http://nightly.adium.im</a> | Make this go down: <a href="http://webnumbr.com/adium-1-5-defects" title="http://webnumbr.com/adium-1-5-defects">http://webnumbr.com/adium-1-5-defects</a></span>
-		</div>
-	</div>
-</div>
---!>
-
-<div id="Chat" class="groupchat">
-
-<div class="history date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
-	</span>
-</div>
-
-<div class="history date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
-	</span>
-</div>
-
-<div class="history incoming autoreply message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
-		<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
-	</span>
-	<div class="history incoming message consecutive SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="incoming_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
-			<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
-		</span>
-	</div>
-</div>
-
-
-<div class="history date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
-	</span>
-</div>
-
-<div class="history outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-	<img class="x-icon" src="./outgoing_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: springgreen"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
-	</span>
-</div>
-
-<div class="history incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore. </span>
-	</span>
-	<div class="history consecutive incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="./incoming_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">So what happens next? </span>
-		</span>
-	</div>
-</div>
-
-<div class="history mention incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So what happens next? </span>
-	</span>
-</div>
-
-<div class="history mention incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So what happens next? </span>
-	</span>
-</div>
-
-<div class="history date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
-	</span>
-</div>
-
-<div class="history mention incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So what happens next? </span>
-	</span>
-</div>
-
-<div class="history outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-	<img class="x-icon" src="./outgoing_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: springgreen"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
-	</span>
-</div>
-
-<div class="history incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">I'm pretty sure I've heard this one before. </span>
-	</span>
-	<div class="history consecutive incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="./incoming_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">So what happens next? </span>
-		</span>
-		<div class="history consecutive incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-			<img class="x-icon" src="./incoming_icon.png" />
-			<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-			<span class="x-color" style="background-color: paleturquoise"></span>
-			<span class="x-wrap">
-				<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-				<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-				<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-				<span class="x-mark"></span>
-				<span class="x-message">So what happens next? </span>
-			</span>
-		</div>
-	</div>
-</div>
-
-<div class="history incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So what happens next? </span>
-	</span>
-</div>
-
-<div class="history outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-	<img class="x-icon" src="./outgoing_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: springgreen"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
-	</span>
-</div>
-
-<div class="history date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">|Wednesday, June 09, 2004 </span>
-	</span>
-</div>
-
-<div class="history outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-	<img class="x-icon" src="./outgoing_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: springgreen"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
-	</span>
-</div>
-
-<div class="history incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">|Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">I'm pretty sure I've heard this one before. </span>
-	</span>
-	<div class="history consecutive incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="./incoming_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">|So what happens next? </span>
-		</span>
-	</div>
-</div>
-
-<!--
-<div class="date_separator event SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark"></span>
-		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
-	</span>
-</div>
---!>
-
-<div class="outgoing message SERVICE showIcons xx-TekJew" style="background-color: midnightblue;">
-	<img class="x-icon" src="./outgoing_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: midnightblue"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">EvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:46:50 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:46:50 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">|If I remember correctly, they explode outward at the speed of light. </span>
-	</span>
-	<div class="consecutive outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-		<img class="x-icon" src="./outgoing_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-		<span class="x-color" style="background-color: springgreen"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="TekJew">Evan </span>
-			<span class="x-rtime" title="19 Apr 2004">12:47:00 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:47:00 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">But that might be if you cross the streams… </span>
-		</span>
-		<div class="consecutive outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-			<img class="x-icon" src="./outgoing_icon.png" />
-			<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-			<span class="x-color" style="background-color: springgreen"></span>
-			<span class="x-wrap">
-				<span class="x-sender" title="TekJew">Evan </span>
-				<span class="x-rtime" title="19 Apr 2004">12:46:50 </span>
-				<span class="x-ltime" title="19 Apr 2004">12:46:50 </span>
-				<span class="x-mark"></span>
-				<span class="x-message">If I remember correctly, they explode outward at the speed of light. </span>
-			</span>
-		</div>
-	</div>
-</div>
-
-<div class="mention incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: red;">
-	<img class="x-icon" src="./incoming_icon_wide.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon_wide.png);"></span>
-	<span class="x-color" style="background-color: red"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">|Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:47:06 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:06 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">…thus negating all existence! </span>
-	</span>
-</div>
-
-<div class="outgoing message SERVICE showIcons xx-TekJew" style="background-color: springgreen;">
-	<img class="x-icon" src="./outgoing_icon_tall.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon_tall.png);"></span>
-	<span class="x-color" style="background-color: springgreen"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Precisely! it's a risk one takes whenever one walks into a bar, I'm afraid. Especially if one is a chicken. </span>
-	</span>
-</div>
-
-<div class="event notification SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:47:54 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:54 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Jeff wants your attention! </span>
-	</span>
-</div>
-
-<div class="status away SERVICE showIcons">
-	<span class="x-wrap">
-		<span class="x-rtime" title="19 Apr 2004">12:47:54 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:54 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Jeff went away </span>
-	</span>
-	<div class="consecutive status away_message SERVICE showIcons">
-		<span class="x-wrap">
-			<span class="x-rtime" title="19 Apr 2004">12:47:55 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:47:55 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">Away Message: "Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. " </span>
-		</span>
-	</div>
-</div>
-
-<div class="incoming autoreply message SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="incoming_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
-		<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
-	</span>
-	<div class="incoming message firstFocus focus consecutive SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="incoming_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
-			<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
-		</span>
-	</div>
-</div>
-
-<div class="outgoing message focus SERVICE showIcons xx-TekJew" style="background-color: red;">
-	<img class="x-icon" src="./buddy_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./buddy_icon.png);"></span>
-	<span class="x-color" style="background-color: red" src="buddy_icon.png"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
-		<span class="x-rtime" title="19 Apr 2004">12:48:02 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:48:02 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">Gotta run; catch ya later <a href="http://slashdot.org">;) </a></span>
-	</span>
-</div>
-
-<div class="incoming message focus SERVICE showIcons xx-fetchgreebledonx" style="background-color: paleturquoise;">
-	<img class="x-icon" src="./buddy_icon.png" />
-	<span class="x-iconmask" style="-webkit-mask-box-image: url(./buddy_icon.png);"></span>
-	<span class="x-color" style="background-color: paleturquoise" src="buddy_icon.png"></span>
-	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-		<span class="x-rtime" title="19 Apr 2004">12:49:32 </span>
-		<span class="x-ltime" title="19 Apr 2004">12:49:32 </span>
-		<span class="x-mark"></span>
-		<span class="x-message">So what happens next? </span>
-	</span>
-	<div class="incoming message SERVICE showIcons consecutive xx-fetchgreebledonx" style="background-color: paleturquoise;">
-		<img class="x-icon" src="./buddy_icon.png" />
-		<span class="x-iconmask" style="-webkit-mask-box-image: url(./buddy_icon.png);"></span>
-		<span class="x-color" style="background-color: paleturquoise" src="buddy_icon.png"></span>
-		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
-			<span class="x-rtime" title="19 Apr 2004">12:50:32 </span>
-			<span class="x-ltime" title="19 Apr 2004">12:50:32 </span>
-			<span class="x-mark"></span>
-			<span class="x-message">So what happens next? </span>
-		</span>
-		<span id="insert"></span>
-	</div>
-</div>
-
-</div>
-
-<script src="./Footer.js" type="text/javascript" charset="utf-8"></script>
-
-</body>
-</html>
diff -r b30921efd7f0 -r 868b6d225803 Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html	Sun Apr 17 14:03:31 2011 +0200
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html	Sun Apr 17 20:02:40 2011 -0500
@@ -7,50 +7,66 @@
 	</title>
 
 	<style type="text/css">
-		@import url( "./Variants/time-icon.css" );
+		@import url( "./Variants/Classic.css" );
 
 		body
 		{
 			font-size: 7.5pt;
+			font-family: "Lucida Grande";
+			//font-weight: bold;
 			border-bottom: 1px solid yellow;
+
+			//background: url(/Library/Desktop\ Pictures/Plants/Petals.jpg) center repeat;
+			//background: url(/Library/Desktop\ Pictures/Plants/Leaves.jpg) center repeat;
+			//background: url(/Library/Desktop\ Pictures/Nature/Iceberg.jpg) center repeat;
+			//background: lime;
 		}
 
-		hr#focus
-		{
-		border: 0px;
-		border-bottom: 1px solid red;
-		margin: 0px auto 0px 0px;
-
-	</style>
+</style>
 </head>
 
 <body>
 
 <div id="x-header">
-	<style type="text/css">
+	<style id="mainStyle" type="text/css" media="screen,print">
 		@import url(./Header.css);
 	</style>
 
-	<span class="x-date">Wednesday, June 09, 2004</span>
-	<span class="x-time">12:45:48</span>
-	<img class="serviceIcon" src="/Users/mneedham/src/Adium/build/Release-Debug/Adium.app/Contents/Resources/Service Icons/Aqua.AdiumServiceIcons/aim.png" alt="AIM"/>
-	<span class="x-sender incoming">JeffJeffJeffJeffJeffJeffJeffJeffJeffJeff</span>
-	<span class="x-sender outgoing">EvanEvanEvanEvanEvanEvanEvanEvanEvanEvan</span>
-	<img class="x-icon incoming" src="/Users/mneedham/Library/Application%20Support/Adium%202.0/Users/Default/libpurple/icons/8c814ad7cf1b910b74a9c84fb2b6a85e3cc8cba1.png" />
-	<span class="x-iconmask incoming" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Application%20Support/Adium%202.0/Users/Default/libpurple/icons/8c814ad7cf1b910b74a9c84fb2b6a85e3cc8cba1.png);"></span>
-	<span class="x-color incoming" style="background-color: blue"></span>
-	<img class="x-icon outgoing" src="/Users/mneedham/Library/Application%20Support/Adium%202.0/Users/Default/libpurple/icons/23c091f19e3feacaf0cc782065025af54fc64cd0.png" />
-	<span class="x-iconmask outgoing" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Application%20Support/Adium%202.0/Users/Default/libpurple/icons/23c091f19e3feacaf0cc782065025af54fc64cd0.png);"></span>
-	<span class="x-color outgoing" style="background-color: seagreen"></span>
+	<div id="x-hide" class="x-toggle" onclick="hide_header();"></div>
+	<div id="x-show" class="x-toggle" onclick="show_header();" style="display: none"></div>
+	<div id="x-wrap">
+		<span class="x-date">Wednesday, June 09, 2004</span>
+		<span class="x-time">12:45:48</span>
+<!--
+		<a onclick="imageSwap(this, true)" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Resources/Service Icons/Aqua.AdiumServiceIcons/jabber.png" isemoticon="true" class="serviceIcon">Jabber</a>
+--!>
+		<img src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Resources/Service Icons/Aqua.AdiumServiceIcons/jabber.png" alt="Jabber" class="serviceIcon" />
+		<span class="x-sender x-incoming">Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff Jeff!</span>
+		<span class="x-sender x-outgoing">EvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvan!</span>
+		<img class="x-icon x-incoming" src="/Users/mneedham/Library/Caches/Adium/Default/TEMP-Jabber.butlerb at illinois.eduVIPQH.png" />
+		<span class="x-iconmask x-incoming" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Caches/Adium/Default/TEMP-Jabber.butlerb at illinois.eduVIPQH.png);"></span>
+		<span class="x-color x-incoming" style="background-color: paleturquoise;"></span>
+		<img class="x-icon x-outgoing" src="/Users/mneedham/Library/Caches/Adium/Default/TEMP-27SV4D5.png" />
+		<span class="x-iconmask x-outgoing" style="-webkit-mask-box-image: url(/Users/mneedham/Library/Caches/Adium/Default/TEMP-27SV4D5.png);"></span>
+		<span class="x-color x-outgoing" style="background-color: springgreen;"></span>
+	</div>
 </div>
+
 <!--
+<div id="topic" title="#adium-devl Adium development channel - for user help, go to #adium. | 1.5hg nightly: http://nightly.adium.im | Make this go down: http://webnumbr.com/adium-1-5-defects">
+	<div id="x-topic">
+		<style type="text/css">
+			@import url(./Topic.css);
+		</style>
 
-<div id="topic" title="">
-	<style type="text/css">
-		@import url(./Topic.css);
-	</style>
-
-	<span id="topicEdit" contenteditable="">Welcome</span>
+		<div id="x-hide" class="x-toggle" onclick="hide_header();"></div>
+		<div id="x-show" class="x-toggle" onclick="show_header();" style="display: none"></div>
+		<div id="x-wrap">
+			<a onclick="imageSwap(this, true)" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Frameworks/AdiumLibpurple.framework/Resources/irc.png" isemoticon="true" class="x-serviceIcon">IRC</a>
+			<img class="x-serviceIcon" title="IRC" alt="IRC" src="/Users/mneedham/Applications/Adium Latest/Adium.app/Contents/Frameworks/AdiumLibpurple.framework/Resources/irc.png" />
+			<span id="topicEdit" ondblclick="this.setAttribute('contentEditable', true); this.focus();"><a href="irc://irc.freenode.net:6667/#adium-devl" title="irc://irc.freenode.net:6667/#adium-devl">#adium-devl</a> Adium development channel - for user help, go to <a href="irc://irc.freenode.net:6667/#adium" title="irc://irc.freenode.net:6667/#adium">#adium</a>. | 1.5hg nightly: <a href="http://nightly.adium.im" title="http://nightly.adium.im">http://nightly.adium.im</a> | Make this go down: <a href="http://webnumbr.com/adium-1-5-defects" title="http://webnumbr.com/adium-1-5-defects">http://webnumbr.com/adium-1-5-defects</a></span>
+		</div>
+	</div>
 </div>
 --!>
 
@@ -60,151 +76,451 @@
 	<span class="x-wrap">
 		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
 		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark">‣</span>
+		<span class="x-mark"></span>
 		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
 	</span>
 </div>
 
-<div class="history outgoing message SERVICE showIcons xx-TekJew" style="background-color: seagreen;">
+<div class="history date_separator event SERVICE showIcons">
+	<span class="x-wrap">
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
+	</span>
+</div>
+
+<div class="history incoming autoreply message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
+		<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
+	</span>
+	<div class="history incoming message consecutive SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+		<img class="x-icon" src="incoming_icon.png" />
+		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+		<span class="x-color" style="background-color: paleturquoise"></span>
+		<span class="x-wrap">
+			<span class="x-sender" title="fetchgreebledonx">Jeff (Autoreply) </span>
+			<span class="x-rtime" title="19 Apr 2004">12:47:51 </span>
+			<span class="x-ltime" title="19 Apr 2004">12:47:51 </span>
+			<span class="x-mark"></span>
+			<span class="x-message">Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. Away for the sake of being away. </span>
+		</span>
+	</div>
+</div>
+
+
+<div class="history date_separator event SERVICE showIcons">
+	<span class="x-wrap">
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
+	</span>
+</div>
+
+<div class="history outgoing message SERVICE showIcons" user="TekJew" style="background-color: springgreen;">
 	<img class="x-icon" src="./outgoing_icon.png" />
 	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: seagreen"></span>
+	<span class="x-color" style="background-color: springgreen"></span>
 	<span class="x-wrap">
 		<span class="x-sender" title="TekJew">Evan </span>
 		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
 		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark">‣</span>
+		<span class="x-mark"></span>
 		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
 	</span>
 </div>
 
-<div class="history incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: blue;">
+<div class="history incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
 	<img class="x-icon" src="./incoming_icon.png" />
 	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-	<span class="x-color" style="background-color: blue"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
 	<span class="x-wrap">
-		<span class="x-sender" title="fetchgreebledonx" >Jeff </span>
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
 		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
 		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
-		<span class="x-mark">‣</span>
-		<span class="x-message">I'm pretty sure I've heard this one before. </span>
+		<span class="x-mark"></span>
+		<span class="x-message">I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore.I'mprettysureI'veheardthisonebefore. </span>
 	</span>
-	<div class="history consecutive incoming message SERVICE showIcons xx-fetchgreebledonx" style="background-color: blue;">
+	<div class="history consecutive incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
 		<img class="x-icon" src="./incoming_icon.png" />
 		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
-		<span class="x-color" style="background-color: blue"></span>
+		<span class="x-color" style="background-color: paleturquoise"></span>
 		<span class="x-wrap">
-			<span class="x-sender" title="fetchgreebledonx" >Jeff </span>
+			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
 			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
 			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
-			<span class="x-mark">‣</span>
+			<span class="x-mark"></span>
 			<span class="x-message">So what happens next? </span>
 		</span>
 	</div>
 </div>
 
+<div class="history mention incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So what happens next? </span>
+	</span>
+</div>
+
+<div class="history mention incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So what happens next? </span>
+	</span>
+</div>
+
+<div class="history date_separator event SERVICE showIcons">
+	<span class="x-wrap">
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
+	</span>
+</div>
+
+<div class="history mention incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So what happens next? </span>
+	</span>
+</div>
+
+<div class="history outgoing message SERVICE showIcons" user="TekJew" style="background-color: springgreen;">
+	<img class="x-icon" src="./outgoing_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
+	<span class="x-color" style="background-color: springgreen"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="TekJew">Evan </span>
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
+	</span>
+</div>
+
+<div class="history incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">I'm pretty sure I've heard this one before. </span>
+	</span>
+	<div class="history consecutive incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+		<img class="x-icon" src="./incoming_icon.png" />
+		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+		<span class="x-color" style="background-color: paleturquoise"></span>
+		<span class="x-wrap">
+			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+			<span class="x-mark"></span>
+			<span class="x-message">So what happens next? </span>
+		</span>
+		<div class="history consecutive incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+			<img class="x-icon" src="./incoming_icon.png" />
+			<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+			<span class="x-color" style="background-color: paleturquoise"></span>
+			<span class="x-wrap">
+				<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+				<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+				<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+				<span class="x-mark"></span>
+				<span class="x-message">So what happens next? </span>
+			</span>
+		</div>
+	</div>
+</div>
+
+<div class="history incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So what happens next? </span>
+	</span>
+</div>
+
+<div class="history outgoing message SERVICE showIcons" user="TekJew" style="background-color: springgreen;">
+	<img class="x-icon" src="./outgoing_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
+	<span class="x-color" style="background-color: springgreen"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="TekJew">Evan </span>
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
+	</span>
+</div>
+
+<div class="history date_separator event SERVICE showIcons">
+	<span class="x-wrap">
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message" title="12:45:48">|Wednesday, June 09, 2004 </span>
+	</span>
+</div>
+
+<div class="history outgoing message SERVICE showIcons" user="TekJew" style="background-color: springgreen;">
+	<img class="x-icon" src="./outgoing_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
+	<span class="x-color" style="background-color: springgreen"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="TekJew">Evan </span>
+		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">So a priest, a rabbi, and a chicken walk into a bar. </span>
+	</span>
+</div>
+
+<div class="history incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+	<img class="x-icon" src="./incoming_icon.png" />
+	<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+	<span class="x-color" style="background-color: paleturquoise"></span>
+	<span class="x-wrap">
+		<span class="x-sender" title="fetchgreebledonx">|Jeff </span>
+		<span class="x-rtime" title="19 Apr 2004">12:46:07 </span>
+		<span class="x-ltime" title="19 Apr 2004">12:46:07 </span>
+		<span class="x-mark"></span>
+		<span class="x-message">I'm pretty sure I've heard this one before. </span>
+	</span>
+	<div class="history consecutive incoming message SERVICE showIcons" user="fetchgreebledonx" style="background-color: paleturquoise;">
+		<img class="x-icon" src="./incoming_icon.png" />
+		<span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
+		<span class="x-color" style="background-color: paleturquoise"></span>
+		<span class="x-wrap">
+			<span class="x-sender" title="fetchgreebledonx">Jeff </span>
+			<span class="x-rtime" title="19 Apr 2004">12:46:32 </span>
+			<span class="x-ltime" title="19 Apr 2004">12:46:32 </span>
+			<span class="x-mark"></span>
+			<span class="x-message">|So what happens next? </span>
+		</span>
+	</div>
+</div>
+
+<!--
 <div class="date_separator event SERVICE showIcons">
 	<span class="x-wrap">
 		<span class="x-rtime" title="19 Apr 2004">12:45:48 </span>
 		<span class="x-ltime" title="19 Apr 2004">12:45:48 </span>
-		<span class="x-mark">‣</span>
+		<span class="x-mark"></span>
 		<span class="x-message" title="12:45:48">Wednesday, June 09, 2004 </span>
 	</span>
 </div>
+--!>
 
-<div class="outgoing message SERVICE showIcons xx-TekJew" style="background-color: seagreen;">
+<div class="outgoing message SERVICE showIcons" user="TekJew" style="background-color: midnightblue;">
 	<img class="x-icon" src="./outgoing_icon.png" />
 	<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-	<span class="x-color" style="background-color: seagreen"></span>
+	<span class="x-color" style="background-color: midnightblue"></span>
 	<span class="x-wrap">
-		<span class="x-sender" title="TekJew">Evan </span>
+		<span class="x-sender" title="TekJew">EvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvanEvan </span>
 		<span class="x-rtime" title="19 Apr 2004">12:46:50 </span>
 		<span class="x-ltime" title="19 Apr 2004">12:46:50 </span>
-		<span class="x-mark">‣</span>
-		<span class="x-message">If I remember correctly, they explode outward at the speed of light. </span>
+		<span class="x-mark"></span>
+		<span class="x-message">|If I remember correctly, they explode outward at the speed of light. </span>
 	</span>
-	<div class="consecutive outgoing message SERVICE showIcons xx-TekJew" style="background-color: seagreen;">
+	<div class="consecutive outgoing message SERVICE showIcons" user="TekJew" style="background-color: springgreen;">
 		<img class="x-icon" src="./outgoing_icon.png" />
 		<span class="x-iconmask" style="-webkit-mask-box-image: url(./outgoing_icon.png);"></span>
-		<span class="x-color" style="background-color: seagreen"></span>
+		<span class="x-color" style="background-color: springgreen"></span>
 		<span class="x-wrap">
 			<span class="x-sender" title="TekJew">Evan </span>
 			<span class="x-rtime" title="19 Apr 2004">12:47:00 </span>
 			<span class="x-ltime" title="19 Apr 2004">12:47:00 </span>
-			<span class="x-mark">‣</span>
+			<span class="x-mark"></span>
 			<span class="x-message">But that might be if you cross the streams… </span>
 		</span>




More information about the commits mailing list