Copy From Adium: How to Not Get the Timestamps?

2

1

When I do a command-c with Adium, it picks up the timestamps as well as the text I want. I've looked through the prefs with no luck. How can I just get the text? (I know I can use Textmate and then option-drag, but that's annoying.)

Dan Rosenstark

Posted 2012-03-22T17:27:43.433

Reputation: 5 718

1

Not using Adium, but this issue seems to have been fixed 5 years ago. There was even an icon added for it. Can't you see any trace of that fix in your version?

– harrymc – 2012-10-18T09:27:28.747

1@harrymc That's for the chat transcript viewer, not the chat window. Still, it's just a Cmd-L away, so might be a good workaround. – Daniel Beck – 2012-10-19T18:10:00.060

Answers

3

Adium does no specific processing of data when copying. The only way* to not copy the data is to not select it. If you want to copy several lines at once this means that you wither need to use the transcript viewer with timestamps hidden or use a message style that doesn't display the timestamp. on each message. Of the bundled styles, yMous has an option do this.

Since the message styles are nothing more than HTML, CSS, and Javascript, it should be possible to create a message style that will do what you want. IT would be easy to simply apply "-webkit-user-select: None" to the class "x-time". Unfortunately, a bug in Webkit prevents this from working properly (https://bugs.webkit.org/show_bug.cgi?id=80159).

*(A second option would be to use Javascript to process the copy buffer however you'd like. To the best of my knowledge nobody has ever done this, but it's theoretically possible.)

mathuaerknedam

Posted 2012-03-22T17:27:43.433

Reputation: 96

hadn't actually thought of the transcript viewer :) I'll see what else rolls in before I give out the bounty points, but this answer is good and definitely goes above and beyond. +1 for now. – Dan Rosenstark – 2012-10-20T19:05:24.163