xtras/mathuaerknedam 572:8ce2a38b8705: Smooth Operator: Improved...
commits at adium.im
commits at adium.im
Fri Apr 8 21:53:57 UTC 2011
details: http://hg.adium.im/xtras/mathuaerknedam/rev/8ce2a38b8705
revision: 572:8ce2a38b8705
branch: (none)
author: mathuaerknedam
date: Tue Apr 05 09:05:05 2011 -0500
Smooth Operator: Improved all-by-sender javascript, via Thijs' checkin for yMous.
Subject: xtras/mathuaerknedam 573:a3e8135b9e51: Smooth Operator: Start using lastFocus/regainedFocus for improved distinction between messages received while focus was lost and any messages that have been received since focus was regained.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/a3e8135b9e51
revision: 573:a3e8135b9e51
branch: (none)
author: mathuaerknedam
date: Tue Apr 05 09:07:31 2011 -0500
Smooth Operator: Start using lastFocus/regainedFocus for improved distinction between messages received while focus was lost and any messages that have been received since focus was regained.
Subject: xtras/mathuaerknedam 574:b6fa736e3dd9: Smooth Operator: Remove unused files.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/b6fa736e3dd9
revision: 574:b6fa736e3dd9
branch: (none)
author: mathuaerknedam
date: Tue Apr 05 09:10:40 2011 -0500
Smooth Operator: Remove unused files.
Subject: xtras/mathuaerknedam 575:b52dc4da6eca: Smooth Operator: remove unnecessary (and non-functional) info.plist key.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/b52dc4da6eca
revision: 575:b52dc4da6eca
branch: (none)
author: mathuaerknedam
date: Tue Apr 05 21:31:23 2011 -0500
Smooth Operator: remove unnecessary (and non-functional) info.plist key.
Subject: xtras/mathuaerknedam 576:d6fe5369b119: Smooth Operator: improving paths.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/d6fe5369b119
revision: 576:d6fe5369b119
branch: (none)
author: mathuaerknedam
date: Thu Apr 07 09:46:42 2011 -0500
Smooth Operator: improving paths.
Subject: xtras/mathuaerknedam 577:34e11cefba4e: Smooth Operator: Put back files I apparently can't do without until http://trac.adium.im/ticket/9509 is fixed.
details: http://hg.adium.im/xtras/mathuaerknedam/rev/34e11cefba4e
revision: 577:34e11cefba4e
branch: (none)
author: mathuaerknedam
date: Thu Apr 07 10:01:41 2011 -0500
Smooth Operator: Put back files I apparently can't do without until http://trac.adium.im/ticket/9509 is fixed.
diffs (truncated from 1393 to 1000 lines):
diff -r 97d8bb84088e -r 34e11cefba4e Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist Fri Mar 25 20:45:35 2011 +0100
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Info.plist Thu Apr 07 10:01:41 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 97d8bb84088e -r 34e11cefba4e Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html Fri Mar 25 20:45:35 2011 +0100
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Content.html Thu Apr 07 10:01:41 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 97d8bb84088e -r 34e11cefba4e Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js Fri Mar 25 20:45:35 2011 +0100
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Footer.js Thu Apr 07 10:01:41 2011 -0500
@@ -6,24 +6,25 @@
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];
- }
+ 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';
}
}
}
diff -r 97d8bb84088e -r 34e11cefba4e Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup-SpecialCases.html Fri Mar 25 20:45:35 2011 +0100
+++ /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 97d8bb84088e -r 34e11cefba4e Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html
--- a/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html Fri Mar 25 20:45:35 2011 +0100
+++ b/Resources/Message Styles/Smooth Operator.AdiumMessageStyle/Contents/Resources/Mockup.html Thu Apr 07 10:01:41 2011 -0500
@@ -7,50 +7,64 @@
</title>
<style type="text/css">
- @import url( "./Variants/time-icon.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;
}
- 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 +74,452 @@
<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>
+ <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: 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: blue;">
- <img class="x-icon" src="./incoming_icon.png" />
- <span class="x-iconmask" style="-webkit-mask-box-image: url(./incoming_icon.png);"></span>
More information about the commits
mailing list