{5} Assigned, Active Tickets by Owner (Full Description) (42 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

akempgen

Ticket Summary Component Milestone Type Severity Created
Description
#1117 Sending PRIVMSGs/NOTICEs to %#channel Chat Core (IRC) None defect normal 10/12/07

Here, the problem is that you cannot send messages to %#channel, and have it show to all halfops of the channel. It seems that @#channel is working fine, but other levels are not supported.

Here's an example of such a message:

Nowuni PRIVMSG %#LVP.Echo 5*** [LVF]Reeves went to Los Santos to tune.

But, it opens in a new query window.

Thanks for reading, and I hope to see something soon if possible. :)


#351 Colloquy needs avatar suport Third-Party Plugin None enhancement normal 10/10/05

Collouy is in much need of avatar support. If anyone could develop a plugin or the feature could be added into colloquy I would appreciate it.


timothy

Ticket Summary Component Milestone Type Severity Created
Description
#402 Top Level servers Colloquy (GUI) None defect major 11/20/05

Adding buddys, favorite channels, and recents do not work with servers in a domain, only the server they were added too.

i.e Add buddys, favorites, etc to us.undernet.org and none of them will work eu.undernet.org or any other undernet server.


#1003 hostmasks appear to being cached accross signoffs Chat Core (IRC) None defect major 02/14/07

I've been having a problem with colloquy retaining hostmasks on users across signoffs. Like on undernet when a user authenticates with chanservices, the network signs them off and then back on with a new network mask. colloquy retains the old mask on the re-signon. This is displayed in the channel text, as well as in tooltips. I have to do a Get Info for the data to get updated.

This posed a serious problem tonight because a troll signed off and changed his hostmask to evade a ban, but I couldn't tell that he had because the old hostmask was still displaying.


#1019 Nicknames with wrong case Colloquy (GUI) None defect major 03/03/07

If you got disconnected from the irc server and a remote user does an case-only nick change, this is not recognized by Colloquy on reconnect.

Reproduction recipe:

  1. Disconnect from irc server
  2. Any remote user does a case-only nick change, e.g "Foo" -> "foo"
  3. Reconnect to irc server
  4. Remote user is still displayed as "Foo", although the nick has changed

#1134 Use correct source list style on Leopard Colloquy (GUI) None defect normal 10/27/07

Colloquy draws its own light-blue source list at the left of the window. On Leopard, it should just set the highlight style of the outline view to source list, which will change both the way the selection highlight is drawn and the way the background is drawn to match the operating system's standard source list style.


#673 process incoming chat message (!commands) not working anymore AppleScript Support None defect critical 06/07/06

Since last update (that should be r3263) my "remote" applescripts don't work anymore.

Very simple script example :

on process incoming chat message m
		try
			if body of m starts with "!mens" then
				set reponse to "<font color=\"lime\">..</font> <font color=\"grey\">[taille]</font> <font color=\"lime\">1,88 mètre .. </font><font color=\"grey\">[Poids]</font><font color=\"lime\"> 79 kg .. </font><font color=\"grey\">[zizi]</font> <font color=\"lime\">dlb à lmas ..</font>"
				tell panel "#freelooser" to send message reponse with action tense
			end if
                end try
end process incoming chat message

please don't ask for the meaning of such a stupid remote :p


#915 Many AppleScript errors while doing simple scripting tasks AppleScript Support None defect critical 11/13/06

After routine testing, I've discovered that many ofl the Applescript callback handlers mentioned in the scripting dictionary do not get called.

The only ones I can get working are:

load

unload

kicked from room

idle

build contextual menu for item

handle clicked contextual menu item

I haven't tested the ctcp handlers yet ('process subcode request' and 'process subcode reply'), but ALL the others fail silently.

This is a fairly serious bug for anyone wanting to script Colloquy with AppleScript?.

Here's a test suite:

property loadedScriptName : ""

using terms from application "Colloquy"
 
 (*****************Load/Unload Handlers*****************)
 on load from scriptPath
  set scriptAlias to (POSIX file scriptPath) as alias
  set loadedScriptName to (name of (info for scriptAlias))
  
  set msg to (loadedScriptName & " Loaded") as string
  set evt to (loadedScriptName & "loaded") as string
  tell active panel of front window
   add event message msg with name evt
  end tell
 end load
 
 on unload
  set msg to (loadedScriptName & " Unloaded") as string
  set evt to (loadedScriptName & "unloaded") as string
  tell active panel of front window
   add event message msg with name evt
  end tell
  set loadedScriptName to ""
 end unload
 
 (*****************Contextual Menu Handlers*****************)
 
 on build contextual menu for item whichItems in whichPanel
  return {"test one", "test two", "test three"}
 end build contextual menu for item
 
 
 on handle clicked contextual menu item whichMenuItem for whichItems within whichMenuList
  if (whichMenuItem as string) begins with "test" then
   tell active panel of front window
    add event message "contextual menu test" with name "test123..."
   end tell
  end if
 end handle clicked contextual menu item
 
 on handle clicked link whichURL in whichPanel
  if whichURL is "http://www.testing123.com" then
   tell active panel of front window
    add event message "handle clicked link" with name "test123..."
   end tell
   return true
  end if
  return false
 end handle clicked link
 
 
 (*****************Message Handlers*****************)
 
 on process user command whichCommand with whichArguments for whichPanel
  if whichCommand is "!test123" then
   display dialog "ok" default answer whichArguments
   return true
  end if
  return false
 end process user command
 
 on process incoming chat message whatMessage from whichUser in whichPanel
  if whatMessage is "test123" then
   tell active panel of front window
    add event message "processing incoming chat message" with name "test123..."
   end tell
  end if
 end process incoming chat message
 
 on process outgoing chat message whatMessage in whichPanel
  if whatMessage is "test123" then
   tell active panel of front window
    add event message "processing outgoing chat message" with name "test123..."
   end tell
  end if
 end process outgoing chat message
 
 (*****************CTCP Handlers*****************)
 on process subcode request whichRequest with whichArguments from whichUser on whichConnection
  return false
 end process subcode request
 
 on process subcode reply with whichArguments from whichUser on whichConnection
  return false
 end process subcode reply
 
 
 (***************** Handlers for Connecting and Disconnecting *****************)
 
 on connected whichConnection
  display dialog "connected to " & (whichConnection's id)
 end connected
 
 on disconnecting whichConnection
  display dialog "disconnecting from " & (whichConnection's id)
 end disconnecting
 
 (***************** Handlers for Joining, Leaving and Kicking *****************)
 
 on join chat room whichPanel
  tell active panel of front window
   add event message ("joining" & whichPanel's id) with name "test123..."
  end tell
 end join chat room
 
 on parting chat room whichPanel
  tell active panel of front window
   add event message ("parting" & whichPanel's id) with name "test123..."
  end tell
 end parting chat room
 
 on kicked from room whichPanel by whichUser for whatReason
  tell active panel of front window
   add event message ("you were kicked from" & whichPanel's id) with name "test123..."
  end tell
 end kicked from room
 
 on member joined whichMember in whichPanel
  tell active panel of front window
   add event message (whichMember's id & "joined" & whichPanel's id) with name "test123..."
  end tell
 end member joined
 
 on member parted whichMember from whichPanel for whatReason
  tell active panel of front window
   add event message (whichMember's id & "parted from" & whichPanel's id) with name "test123..."
  end tell
 end member parted
 
 on member kicked whichMember from whichPanel by whichOp for whatReason
  tell active panel of front window
   add event message ((whichMember's id) & "was kicked from" & (whichPanel's id) & " by " & (whichOp's id)) with name "test123..."
  end tell
 end member kicked
 
 (***************** Other Handlers *****************)
 
 on topic changed in whichPanel by whichUser to newTopic
  tell active panel of front window
   add event message (whichUser's id & "changed the topic of " & (whichPanel's id)) with name "test123..."
  end tell
 end topic changed
 
 on perform notification whichNotification with whichNotificationInfo and whichPreferences
  --
 end perform notification
 
 on idle
  tell active panel of front window
   --add event message ("idle") with name "test123..."
  end tell
  return 10.0
 end idle
 
end using terms from

Click here to open the script in script editor


#60 Notification of force quiet, reduced moderation, moderated and ban channel mode (+q +z +m +b) Colloquy (GUI) None defect major 03/13/05

When force quiet or moderated (+q or +m) is put on, the text input box should change to reflect this; for example, by greying out or disappearing completely


#1071 iPhone Web Interface add button isn't implemented Colloquy (GUI) None defect major 07/24/07

When I try to use Colloquy's web interface plugin with my iPhone I try to click the plus sign in the top right hand corner and it does not do anything. How can I join a chat room from my iPhone if that button doesn't work. Could someone fix this or tell me what is wrong with the webui plugin.

Thanks


#1121 Crash opening the transcript panel Colloquy (GUI) None defect major 10/20/07

I've a problem that is very annoying. As I got the problem since several versions now and there never has been I fix for it (although I sent reports) I will post my issue here.

I can't tell you much about the problem - it's just that Colloquy crashes as soon as I want to open the Transcript Browser. If I open a transcript on the finder it opens normally on Colloquy without crashing so it seems just to be the "overview" making troubles for me. I will post you the crash report I receive:

Date/Time:      2007-10-20 14:26:54.462 +0200
OS Version:     10.4.10 (Build 8R2218)
Report Version: 4

Command: Colloquy
Path:    /Applications/Colloquy.app/Contents/MacOS/Colloquy
Parent:  WindowServer [97]

Version: 2.1 (3761)

PID:    6864
Thread: 0

Exception:  EXC_BAD_ACCESS (0x0001)
Codes:      KERN_PROTECTION_FAILURE (0x0002) at 0x00000000

Thread 0 Crashed:
0   com.apple.CoreFoundation  	0x90811125 CFRetain + 56
1   com.apple.CoreFoundation  	0x90811bed CFArrayCreate + 371
2   info.colloquy             	0x0005a113 -[JVChatTranscriptBrowserPanel init] + 757
3   info.colloquy             	0x000614b4 -[MVApplicationController showTranscriptBrowser:] + 32
4   com.apple.AppKit          	0x93355d9c -[NSApplication sendAction:to:from:] + 107
5   com.apple.AppKit          	0x93403cef -[NSMenu performActionForItemAtIndex:] + 455
6   com.apple.AppKit          	0x93403a31 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 103
7   com.apple.AppKit          	0x93403688 -[NSMenu performKeyEquivalent:] + 766
8   com.apple.AppKit          	0x934030aa -[NSApplication _handleKeyEquivalent:] + 254
9   com.apple.AppKit          	0x93336d9b -[NSApplication sendEvent:] + 3542
10  com.apple.AppKit          	0x93261dfe -[NSApplication run] + 547
11  com.apple.AppKit          	0x93255d2f NSApplicationMain + 573
12  info.colloquy             	0x00060ee6 _start + 216
13  info.colloquy             	0x00060e0d start + 41

Thread 1:
0   libSystem.B.dylib         	0x900248c7 semaphore_wait_signal_trap + 7
1   com.apple.Foundation      	0x9284a26c -[NSConditionLock lockWhenCondition:] + 39
2   com.apple.AppKit          	0x9333f284 -[NSUIHeartBeat _heartBeatThread:] + 377
3   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
4   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 2:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92829a0f +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 259
4   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
5   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 3:
0   libSystem.B.dylib         	0x9001a1cc select + 12
1   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 4:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92829d3a -[NSRunLoop runMode:beforeDate:] + 182
4   info.colloquy.chatCore    	0x00317b63 -[MVIRCChatConnection(MVIRCChatConnectionPrivate) _ircRunloop] + 515
5   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
6   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 5:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92829d3a -[NSRunLoop runMode:beforeDate:] + 182
4   info.colloquy.chatCore    	0x00317b63 -[MVIRCChatConnection(MVIRCChatConnectionPrivate) _ircRunloop] + 515
5   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
6   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 6:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92829d3a -[NSRunLoop runMode:beforeDate:] + 182
4   info.colloquy.chatCore    	0x00317b63 -[MVIRCChatConnection(MVIRCChatConnectionPrivate) _ircRunloop] + 515
5   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
6   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 7:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92829d3a -[NSRunLoop runMode:beforeDate:] + 182
4   info.colloquy.chatCore    	0x00317b63 -[MVIRCChatConnection(MVIRCChatConnectionPrivate) _ircRunloop] + 515
5   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
6   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 8:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.audio.CoreAudio 	0x914628da HALRunLoop::OwnThread(void*) + 158
4   com.apple.audio.CoreAudio 	0x914626f5 CAPThread::Entry(CAPThread*) + 93
5   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 9:
0   libSystem.B.dylib         	0x90009cd7 mach_msg_trap + 7
1   com.apple.CoreFoundation  	0x9082d2b3 CFRunLoopRunSpecific + 2014
2   com.apple.CoreFoundation  	0x9082cace CFRunLoopRunInMode + 61
3   com.apple.Foundation      	0x92850bc2 +[NSURLCache _diskCacheSyncLoop:] + 206
4   com.apple.Foundation      	0x927f42e0 forkThreadForFunction + 123
5   libSystem.B.dylib         	0x90024227 _pthread_body + 84

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x908110fb  ecx: 0x1174872c  edx: 0x908110db
  edi: 0x119c8e8c  esi: 0x00000000  ebp: 0xbffff488  esp: 0xbffff460
   ss: 0x0000001f  efl: 0x00010246  eip: 0x90811125   cs: 0x00000017
   ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037

Binary Images Description:
    0x1000 -    0xbbfff info.colloquy 2.1 (3761)	/Applications/Colloquy.app/Contents/MacOS/Colloquy
  0x140000 -   0x151fff AGRegex ??? (0.1)	/Applications/Colloquy.app/Contents/Frameworks/AGRegex.framework/Versions/A/AGRegex
  0x15d000 -   0x169fff org.andymatuschak.Sparkle ??? (1.1)	/Applications/Colloquy.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
  0x174000 -   0x1b4fff org.jabberstudio.acid ??? (1.0)	/Applications/Colloquy.app/Contents/Frameworks/Acid.framework/Versions/A/Acid
  0x305000 -   0x365fff info.colloquy.chatCore 2.0 (2B19)	/Applications/Colloquy.app/Contents/Frameworks/ChatCore.framework/Versions/A/ChatCore
  0x584000 -   0x584fff com.growl.GrowlSafariLoader 1.0 (1.1)	/Library/InputManagers/GrowlSafari/GrowlSafariLoader.bundle/Contents/MacOS/GrowlSafariLoader
  0x686000 -   0x68afff eu.willmore.GrowlCamino GrowlCamino v0.99 (1.0)	/Users/ghammers/Library/InputManagers/GrowlCamino/GrowlCamino.bundle/Contents/MacOS/GrowlCamino
  0x699000 -   0x6a1fff com.growl.growlframework 0.7.3	/Users/ghammers/Library/InputManagers/GrowlCamino/GrowlCamino.bundle/Contents/Frameworks/Growl.framework/Versions/A/Growl
  0x6aa000 -   0x6acfff net.culater.SIMBL 0.8 (8)	/Library/InputManagers/SIMBL/SIMBL.bundle/Contents/MacOS/SIMBL
  0x6b2000 -   0x6b2fff com.ksuther.chaxloader ??? (1.4.6)	/Users/ghammers/Library/InputManagers/Chax/Chax.bundle/Contents/MacOS/Chax
  0x6b7000 -   0x6b9fff com.lightheadsw.SiteCrawlerSupport ??? (28)	/Users/ghammers/Library/InputManagers/SiteCrawlerSupport/SiteCrawlerSupport.bundle/Contents/MacOS/SiteCrawlerSupport
  0x6be000 -   0x6befff org.xlife.InquisitorLoader 3.0 (48)	/Users/ghammers/Library/InputManagers/Inquisitor/Inquisitor.bundle/Contents/MacOS/Inquisitor
  0x6c3000 -   0x6c8fff eu.willmore.CaminoSession CaminoSession v1.0 (1.0)	/Library/InputManagers/CaminoSession/CaminoSession.bundle/Contents/MacOS/CaminoSession
 0xdbdd000 -  0xdbe3fff info.colloquy.fscript-support 1.0	/Applications/Colloquy.app/Contents/PlugIns/F-Script Support.plugin/Contents/MacOS/F-Script Support
 0xdbfc000 -  0xdbfcfff com.apple.applescript.component 1.10.7	/System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
 0xde36000 -  0xde3cfff info.colloquy.applescript-support 1.0	/Applications/Colloquy.app/Contents/PlugIns/AppleScript Support.plugin/Contents/MacOS/AppleScript Support
 0xde4c000 -  0xde4cfff com.apple.osax.digihub 1.0	/System/Library/ScriptingAdditions/Digital Hub Scripting.osax/Contents/MacOS/Digital Hub Scripting
 0xde7d000 -  0xde83fff info.colloquy.javascript-support 1.0	/Applications/Colloquy.app/Contents/PlugIns/JavaScript Support.plugin/Contents/MacOS/JavaScript Support
 0xe281000 -  0xe285fff info.colloquy.python-support 1.0	/Applications/Colloquy.app/Contents/PlugIns/Python Support.plugin/Contents/MacOS/Python Support
 0xe28d000 -  0xe292fff info.colloquy.standard-commands 1.0	/Applications/Colloquy.app/Contents/PlugIns/Standard Commands.plugin/Contents/MacOS/Standard Commands
 0xe38d000 -  0xe3b8fff com.apple.osax.standardadditions 1.10.7 (???)	/System/Library/ScriptingAdditions/StandardAdditions.osax/Contents/MacOS/StandardAdditions
 0xe3cd000 -  0xe3cffff Adobe Unit Types a2.0.0 (2.0.0)	/Library/ScriptingAdditions/Adobe Unit Types.osax/Contents/MacOS/Adobe Unit Types
 0xe5c4000 -  0xe631fff com.DivXInc.DivXDecoder 6.6.0	/Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
 0xe805000 -  0xe9f7fff com.elgato.mpegsupport EyeTV MPEG Support 1.0.7 (build 43) (1.0.7)	/Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
 0xf02d000 -  0xf032fff com.apple.audio.AppleHDAHALPlugIn 1.3.3 (1.3.3a1)	/System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x30000000 - 0x30028fff com.silc.libsilcclient 1.0	/Applications/Colloquy.app/Contents/Frameworks/libsilcclient.framework/Versions/A/libsilcclient
0x31000000 - 0x3106cfff com.silc.libsilc 0.9.12 (1.0)	/Applications/Colloquy.app/Contents/Frameworks/libsilc.framework/Versions/A/libsilc
0x41410000 - 0x414adfff com.apple.QuickTimeImporters.component 7.2	/System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
0x70000000 - 0x700fbfff com.apple.audio.units.Components 1.4.5	/System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x8fe00000 - 0x8fe4afff dyld 46.12	/usr/lib/dyld
0x90000000 - 0x90171fff libSystem.B.dylib 	/usr/lib/libSystem.B.dylib
0x901c1000 - 0x901c3fff libmathCommon.A.dylib 	/usr/lib/system/libmathCommon.A.dylib
0x901c5000 - 0x90202fff com.apple.CoreText 1.1.2 (???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x90229000 - 0x902fffff ATS 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x9031f000 - 0x90774fff com.apple.CoreGraphics 1.258.77 (???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.7 (368.28)	/System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???)	/System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x90913000 - 0x90a07fff libicucore.A.dylib 	/usr/lib/libicucore.A.dylib
0x90a57000 - 0x90ad6fff libobjc.A.dylib 	/usr/lib/libobjc.A.dylib
0x90aff000 - 0x90b63fff libstdc++.6.dylib 	/usr/lib/libstdc++.6.dylib
0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib 	/usr/lib/libgcc_s.1.dylib
0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???)	/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x90c66000 - 0x90c78fff libauto.dylib 	/usr/lib/libauto.dylib
0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.26	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x91007000 - 0x91046fff com.apple.CFNetwork 129.21	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x91059000 - 0x91069fff com.apple.WebServices 1.1.3 (1.1.0)	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServicesCore.framework/Versions/A/WebServicesCore
0x91074000 - 0x910f2fff com.apple.SearchKit 1.0.5	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x91127000 - 0x91145fff com.apple.Metadata 10.4.4 (121.36)	/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x91151000 - 0x9115ffff libz.1.dylib 	/usr/lib/libz.1.dylib
0x91162000 - 0x91301fff com.apple.security 4.5.2 (29774)	/System/Library/Frameworks/Security.framework/Versions/A/Security
0x913ff000 - 0x91407fff com.apple.DiskArbitration 2.1.1	/System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9140e000 - 0x91415fff libbsm.dylib 	/usr/lib/libbsm.dylib
0x91419000 - 0x9143ffff com.apple.SystemConfiguration 1.8.6	/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x91451000 - 0x914cafff com.apple.audio.CoreAudio 3.0.4	/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x91518000 - 0x91518fff com.apple.ApplicationServices 10.4 (???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x9151a000 - 0x91545fff com.apple.AE 314 (313)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91558000 - 0x9162cfff com.apple.ColorSync 4.4.9	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x91667000 - 0x916e4fff com.apple.print.framework.PrintCore 4.6 (177.13)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x91711000 - 0x917bafff com.apple.QD 3.10.24 (???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x917e0000 - 0x9182bfff com.apple.HIServices 1.5.2 (???)	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x9184a000 - 0x91860fff com.apple.LangAnalysis 1.6.3	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9186c000 - 0x91886fff com.apple.FindByContent 1.5	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/FindByContent.framework/Versions/A/FindByContent
0x91890000 - 0x918cdfff com.apple.LaunchServices 182	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x918e1000 - 0x918edfff com.apple.speech.synthesis.framework 3.5	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x918f4000 - 0x91934fff com.apple.ImageIO.framework 1.5.5	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x91947000 - 0x919f9fff libcrypto.0.9.7.dylib 	/usr/lib/libcrypto.0.9.7.dylib
0x91a3f000 - 0x91a55fff libcups.2.dylib 	/usr/lib/libcups.2.dylib
0x91a5a000 - 0x91a78fff libJPEG.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x91a7d000 - 0x91adcfff libJP2.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x91aee000 - 0x91af2fff libGIF.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x91af4000 - 0x91b7afff libRaw.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRaw.dylib
0x91b7e000 - 0x91bbbfff libTIFF.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x91bc1000 - 0x91bdbfff libPng.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x91be0000 - 0x91be2fff libRadiance.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x91be4000 - 0x91cc2fff libxml2.2.dylib 	/usr/lib/libxml2.2.dylib
0x91cdf000 - 0x91cdffff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1)	/System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91ce1000 - 0x91d6ffff com.apple.vImage 2.5	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x91d76000 - 0x91d76fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1)	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91d78000 - 0x91dd1fff libvMisc.dylib 	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x91dda000 - 0x91dfefff libvDSP.dylib 	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x91e06000 - 0x9220ffff libBLAS.dylib 	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x92249000 - 0x925fdfff libLAPACK.dylib 	/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x9262a000 - 0x92717fff libiconv.2.dylib 	/usr/lib/libiconv.2.dylib
0x92719000 - 0x92796fff com.apple.DesktopServices 1.3.6	/System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x927d7000 - 0x92a07fff com.apple.Foundation 6.4.8 (567.29)	/System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x92b13000 - 0x92b1dfff com.apple.framework.AppleTalk 1.2.0 (???)	/System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
0x92b21000 - 0x92b38fff libGL.dylib 	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x92b43000 - 0x92b9bfff libGLU.dylib 	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92baf000 - 0x92baffff com.apple.Carbon 10.4 (???)	/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x92bb1000 - 0x92bc1fff com.apple.ImageCapture 3.0.4	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x92bcf000 - 0x92bd7fff com.apple.speech.recognition.framework 3.6	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x92bdd000 - 0x92be2fff com.apple.securityhi 2.0.1 (24742)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x92be8000 - 0x92c79fff com.apple.ink.framework 101.2.1 (71)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x92c8d000 - 0x92c90fff com.apple.help 1.0.3 (32.1)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x92c93000 - 0x92cb0fff com.apple.openscripting 1.2.5 (???)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x92cc0000 - 0x92cc6fff com.apple.print.framework.Print 5.2 (192.4)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x92ccc000 - 0x92d2ffff com.apple.htmlrendering 66.1 (1.1.3)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x92d53000 - 0x92d94fff com.apple.NavigationServices 3.4.4 (3.4.3)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x92dbb000 - 0x92dc8fff com.apple.audio.SoundManager 3.9.1	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x92dcf000 - 0x92dd4fff com.apple.CommonPanels 1.2.3 (73)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x92dd9000 - 0x930cefff com.apple.HIToolbox 1.4.9 (???)	/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x931d4000 - 0x931dffff com.apple.opengl 1.4.16	/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x931e4000 - 0x931fffff com.apple.DirectoryService.Framework 3.2	/System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x9324f000 - 0x9324ffff com.apple.Cocoa 6.4 (???)	/System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x93251000 - 0x93907fff com.apple.AppKit 6.4.9 (824.44)	/System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x93c88000 - 0x93d03fff com.apple.CoreData 91 (92.1)	/System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x93d3c000 - 0x93df6fff com.apple.audio.toolbox.AudioToolbox 1.4.5	/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x93e39000 - 0x93e39fff com.apple.audio.units.AudioUnit 1.4.2	/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x93e3b000 - 0x93ffcfff com.apple.QuartzCore 1.4.12	/System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x94042000 - 0x94083fff libsqlite3.0.dylib 	/usr/lib/libsqlite3.0.dylib
0x9408b000 - 0x940c5fff libGLImage.dylib 	/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x940ca000 - 0x940e0fff com.apple.CoreVideo 1.4.1	/System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x94126000 - 0x9416efff com.apple.bom 8.5 (86.3)	/System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x94270000 - 0x9427ffff libCGATS.A.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
0x94286000 - 0x94291fff libCSync.A.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x942dd000 - 0x942f7fff libRIP.A.dylib 	/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x942fd000 - 0x94606fff com.apple.QuickTime 7.2.0	/System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x94788000 - 0x948cefff com.apple.AddressBook.framework 4.0.5 (487)	/System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x9495a000 - 0x94969fff com.apple.DSObjCWrappers.Framework 1.1	/System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x94970000 - 0x94999fff com.apple.LDAPFramework 1.4.2 (69.1.1)	/System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x9499f000 - 0x949aefff libsasl2.2.dylib 	/usr/lib/libsasl2.2.dylib
0x949b2000 - 0x949d7fff libssl.0.9.7.dylib 	/usr/lib/libssl.0.9.7.dylib
0x949e3000 - 0x94a00fff libresolv.9.dylib 	/usr/lib/libresolv.9.dylib
0x94bab000 - 0x94c83fff edu.mit.Kerberos 5.5.25	/System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x94d2b000 - 0x94dd4fff com.apple.WebKit 522.11.1	/System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x94e35000 - 0x94ed7fff com.apple.JavaScriptCore 522.10	/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x94efe000 - 0x95394fff com.apple.WebCore 522.12.1	/System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x955f0000 - 0x955f5fff com.apple.agl 2.5.9 (AGL-2.5.9)	/System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x955f9000 - 0x9561cfff libxslt.1.dylib 	/usr/lib/libxslt.1.dylib
0x957aa000 - 0x957b4fff libexslt.0.dylib 	/usr/lib/libexslt.0.dylib
0x958f4000 - 0x958f8fff com.apple.URLMount 2.1.7	/System/Library/PrivateFrameworks/URLMount.framework/Versions/A/URLMount
0x96809000 - 0x96809fff com.apple.vecLib 3.3.1 (vecLib 3.3.1)	/System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x96cec000 - 0x96d0efff com.apple.speech.LatentSemanticMappingFramework 2.5	/System/Library/PrivateFrameworks/LatentSemanticMapping.framework/Versions/A/LatentSemanticMapping
0x9716b000 - 0x9717ffff com.apple.AppleShareClient 1.5.2	/System/Library/Frameworks/AppleShareClient.framework/Versions/A/AppleShareClient
0x97188000 - 0x971c7fff com.apple.AppleShareClientCore 1.5.2	/System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
0x97b2e000 - 0x97bd1fff org.python.python 2.3.5	/System/Library/Frameworks/Python.framework/Versions/2.3/Python
0x97f4b000 - 0x97fdcfff com.apple.applescript 1.10.7	/System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
0x98172000 - 0x98fd6fff com.apple.QuickTimeComponents.component 7.2	/System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents
0x99bbc000 - 0x99d28fff com.apple.MessageFramework 2.1.1 (752.3)	/System/Library/Frameworks/Message.framework/Versions/B/Message
0xc0000000 - 0xc0008fff com.growl.growlframework 0.7.3	/Applications/Colloquy.app/Contents/Frameworks/Growl.framework/Versions/A/Growl

Model: MacBookPro1,1, BootROM MBP11.0055.B08, 2 processors, Intel Core Duo, 2 GHz, 2 GB
Graphics: ATI Radeon X1600, ATY,RadeonX1600, PCIe, 128 MB
Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x86), 1.1.9.3
Bluetooth: Version 1.9.0f8, 2 service, 1 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Network Service: Parallels Host-Guest, Ethernet, en2
Network Service: Parallels NAT, Ethernet, en3
Serial ATA Device: SAMSUNG HM160JI, 149.05 GB
Parallel ATA Device: MATSHITADVD-R   UJ-857
USB Device: Built-in iSight, Micron, Up to 480 Mb/sec, 500 mA
USB Device: Keyboard Hub, Apple, Inc., Up to 480 Mb/sec, 500 mA
USB Device: Microsoft Notebook/Mobile Optical Mouse 2.0, Microsoft, Up to 1.5 Mb/sec, 100 mA
USB Device: Apple Keyboard, Apple, Inc, Up to 1.5 Mb/sec, 100 mA
USB Device: Nova-T Stick, Hauppauge, Up to 480 Mb/sec, 500 mA
USB Device: IR Receiver, Apple Computer, Inc., Up to 12 Mb/sec, 500 mA
USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA

If there is any fix to this I would be happy to hear about it. I also tried to re-install Colloquy but problems were still there (maybe I would had to remove more then only the .app file?) I also hope that I can keep my setting so I don't have to setup everything again

Thanks, greets from Austria


#556 AS: Text to or from HTML conversion routines & functions AppleScript Support None enhancement normal 03/24/06

Because Colloquy requires HTML text, it has problems displaying some normal text characters in the window (eg &) and it just sends a blank line. The text must be "converted" to HTML OK text - where e.g. & is changed to &amp; There are a lot of other odd characters that may need to be changed because, if they are present, they will probably similarly screw up the display of the whole line.

It would be nice if there was a built in Applescript routine that can be called to translate lines of text to and from HTML. All the HTML characters would be translated - http://rabbit.eng.miami.edu/info/htmlchars.html

Maybe a more powerful version would also have the option of converting other IRC characters (eg. ctrl-b) into HTML compatible text (<b></b>)

Such a basic funtion would 1. be so useful, 2. be reliable in converting ALL troublesome characters (vs a user created routine), and 3. protect against bugs/errors in display, that I set this ticket to a high priority.

Cheers

Niteshade


#832 When Transferring Files, Download Bar Freezes Colloquy (GUI) None defect normal 08/26/06

If you are transferring files through the xdcc protocol and receiving a file, the download bar tends to find a point to freeze and then just stay there, even though the download actually continues (checked through Finder).


#358 File send bug when someone sends a file at the same time the file open dialog is up Chat Core (File Transfer) None defect blocker 10/18/05

If I have the dialogue box open to send a file, the part where it I am searching for what file to pick, and someone sends me a file at the same time, I can not choose a file or close the file chooser window. Cancel will not close the window either, I have to force quit the program.


#853 Colloquy freezes after a few hours usage on 10.3.9 Colloquy (GUI) None defect blocker 08/29/06

10.3.9 on this machine. never saw this problem before - it has happened every few hours (8-10 times now) after upgrade to 2.1 (3338) after autoupdate prompt.

consultation in #colloquy suggested it might be scrollback setting (was at 1000) and so i lowered it to 500. since then, i've seen three beachballs and i had to force quit each time to get back in.

had 4-5 rooms open each time. usually no more than a couple messages in the scrollback(s) before i see that the app has frozen. not sure if it has ever frozen with *no* messages in scrollback for all the rooms.

i have no crash logs in CrashReporter? as the app is freezing, not actually crashing.


#866 Doesn't work after changin hour Colloquy (GUI) None defect blocker 09/05/06

If you change the time and hour, Colloquy works but you can't write or work with it.


#923 Make file transfers AppleScript-able AppleScript Support None enhancement blocker 11/23/06

It appears there are no AppleScript? hooks for sending files, and since the Send File... item only appears in contextual menus (a whole 'nother problem on its own) I have no way to create a script that will send files based on an incoming trigger. (I'm modifying the script that allows users to request the currently playing song in iTunes to do this).


#970 some words with cyrillic chars in windows-1251 (cyrillic-windows) cause "(incompatible encoding)" error Colloquy (GUI) None defect blocker 01/21/07

for expl, "всё". build version 3558


#1152 Web Interface message entry field doesn't work reliably in Firefox (other browsers) Colloquy (GUI) None defect major 11/23/07

It's not possible to send a message using Firefox. (Tested using 2.0.0.9 on OS X 10.4.10.)


#847 Rename "Detach Panel" to "Detach Chat Room" Colloquy (GUI) None enhancement minor 08/28/06

Rename "Detach Panel" (and other occurrences of panel like "Close Current Panel") to "Detach Chat Room" / "Detach Direct Chat" / "Detach Server Console", depending on the type of the currect panel.

I think it would be easier to understand for the user than the current, more technical term "panel".


#196 Buddy icons don't associate with talk bubbles in Bubble chat interface Colloquy (GUI) None defect normal 05/20/05

When using the bubbles chat interface in combination with the buddy list icon functionality, the default black user icon shows up in the chat window for online buddy comments instead of the associated icon in the buddy list.


#215 No feedback when join channel fails for +R Colloquy (GUI) None defect normal 06/02/05

If connecting to a +R channel (Only registered nicks may join) fails because of not using a registered nick, Colloquy simply does nothing. Furthermore, opening the console window for that server produces a blank window, meaning you must try again before the error message is logged anywhere. That message is:

477: #blah You need a registered nick to join that channel.


#422 Would like to see mask-based ignore added to Colloquy's features. Colloquy (GUI) None enhancement normal 12/16/05

I think it would be good to give Colloquy the ability to handle /ignore in such a way that we can not only /ignore nicks, but also the ISP the nick is attached to. Chatting in the #colloquy channel, we were calling this "mask based ignore".

Currently, I can ignore a nick, but if that nick changes I am still open to communication from her because I can't filter out the ISP. I think it's an important feature for an IRC client to have.

Not sure if it's part of the software or not, but figured I'd post here just in case.


#469 SSH connecttion -> SOCKS aware Colloquy (GUI) None enhancement normal 01/27/06

Would it be possible to for a next release to build in SSH support (and with it, terminal bash)? That way I could connect thru SSH and open my existing screen there.


#557 AS: Send message theURL -- the URL does not appear as a hot link in the window AppleScript Support None defect normal 03/25/06

If a URL is shown in a window, it is not a hot link, and you cannot command click it to link to that URL. For example,

tell application "Colloquy" to add event message "http://apple.com"

does not appear as a click-able link in the window. If it is sent to the channel (send message) then it is a hot link.

These links (http://, ftp://, itms://, etc ) should be hot links even if just shown in a window and not to channel.

cheers

Niteshade


#611 Console view can not be scrolled without dragging scrollbar. Colloquy (GUI) None defect normal 04/21/06

In the latest svn (date of this ticket, 3215 revision) a Console view can only be scrolled if you drag the scrollbar. Neither the up/down arrow or mouse-wheel work.

Quoth the xenon: "oh, i think i know why. make me a ticket, to remind me?"

Ergo..


#772 Certain Prefixes represent different Modes on different Networks Chat Core (IRC) None defect normal 07/11/06

I know this is not really a bug in Colloquy but rather a flaw in the IRC spec, but maybe Colloquy is able to cope with it...

I made a small list of what different networks have to say about the prefixes/modes they use:

holics:		PREFIX=(qaohv)*-@%+		DreamIRCd-3.1.4-Phoenix
euirc:		PREFIX=(qaohv)*!@%+		euIRCd1.1.5rc5
freenode:	PREFIX=(ov)@+			hyperion-1.0.2
quakenet:	PREFIX=(ov)@+			u2.10.11.07+asuka(1.2.1)
feki.de:	PREFIX=(qaohv)~&@%+		Unreal3.2.4
Enterthegame:	PREFIX=@+			bahamut-1.4(28)

notice how euIRC uses * for q and ! for a, while feki.de (my university server) uses & for a. Currently Colloquy interprets all of &, ! and * as Administrator/Protected (a), so on euIRC there is no difference between those two modes (both have the light pink super-op icon) while feki.de works just like you would expect it.

Maybe Colloquy could map the *!@%+ and ~&@%+ prefixes to the qaohv which are also provided and are the same for both networks. In that case of course you would have to watch for servers like EnterTheGame which don't provide this information (see #764).

I hope you understand what i mean O_o


#825 Applescript "body of message" borked (breaks /itunes links) AppleScript Support None defect normal 08/23/06

Applescript "body of message" doesn't return the body of the message as it should. Code:

using terms from application "Colloquy"
	on process incoming chat message the_msg from the_usr in the_room
		try
			-- a large amount of other stuff
			say body of the_msg
			set the_body to name of the_usr & ": " & body of the_msg
		on error err_text
			display alert "Error ahead! Dirty great error ahead!" & return & err_text
		end try
	end process incoming chat message
end using terms from

Running this gives the error message: "Can't make «class maPA» of «class cRmA» of «class crmM» id 80298912 into type string"


#868 Add "Room Language is… en/de/nl/…" as a per room setting Colloquy (GUI) None enhancement normal 09/06/06

add a per room setting "room language", so colloquy knows what language is spoken by the members of a chan, because it looks weird to have german join/part messages in an english transcript and vice versa…

this could affect room event messages, script output (itunes, slap messages, wikipedia (see #760), etc) and probably other stuff too. for this to work, the setting should be available to plugins, of course.


#934 add Perl scripting support General Script Support None enhancement normal 12/10/06

Considering Perl is native on MacOS X, I was rather shocked to see that while Applescript (which I expected), and Python (which I also expected), but also F-Script (Smalltalk? O_o ) and ruby (which I suppose is the up-and-coming) were supported along with Objective-C, Perl was not represented. The huge volume of modules available to Perl for script enhancement purposes alone seems to me to be sufficient reason to spark the effort, but there's another thing...

I have an original script written for another irc client I'd like to port to colloquy for a friend, considering no one else has done so (and thus I'd be the first; I checked. :) but the backend is already written in perl and it seems awkward to me to have to rewrite it.

I'd like to be notified of efforts toward the inclusion of Perl as a scripting option with Colloquy and to help in any way I can despite my currently not having a Macintosh running here to test with.


#942 possible new and old window interface options Colloquy (GUI) None enhancement normal 12/15/06

Sketches (attached) of possible new and old window interface options that where requested over time. not sure i caught them all...

Could be selected by 2 PopUps ("Chat Rooms" + "User List") with the options below:

1. current sidebar style

  • Chat Rooms: Sidebar on the left/right
  • User List: for each room

2. seperate user list below the room list (always shows active room)

  • Chat Rooms: Sidebar on the left/right
  • User List: below chat rooms

3. userlist in a seperate sidebar on the other side (active room)

  • Chat Rooms: Sidebar on the left/right
  • User List: Sidebar on the opposing side

4. like current tab interface, but without the drawer (active room)

  • Chat Rooms: Tabs (on top/bottom?)
  • User List: Sidebar on the left/right (only options)

#947 Nick password prompt loses focus to main chat window when joining a channel Colloquy (GUI) None defect normal 12/20/06

If a nickname password hasn't been stored in the keychain, a password prompt appears when joining a channel. This password field loses focus to the main chat window for that channel as soon as it loads, which means that the keyboard input is received by the chat window and would be sent to all in plain text if the enter key is pressed before the user notices.


#1024 /ban appends !*@* to everything and does not display correct info Colloquy (GUI) None defect normal 03/05/07

when you type in /ban ~r:*something* or anything similar to it, it'll append !*@* to the end, e.g.
in console: MODE #justtesting +b ~r:*something*!*@*
in channel: [04:59am] You set a ban on ~r:*something*!*@*.

On the other hand, if you type in /mode #justtesting +b ~r:*something* into a window
in console: MODE #justtesting +b ~r:*something*
in channel: [05:00am] You set a ban on ~r:*something*!*@*.

+b ~r:*something* is most definitely not the same as +b ~r*something*!*@* (as it is not a ban on *something*!@* as colloquy is making it out to be, but rather a ban on anyone whose realname/GECOS matches *something*, as such !*@* does not belong there) - in the case of the former (using /ban), it would screw up the ban (which shows up as the latter hostmask in the banlist), and in the latter (using /mode) it is not representing the ban correctly (there IS no ban on the latter hostmask but it is displayed as though it is).

the type of ban is irrelevant to most of the above, which seems somewhat intentional, as colloquy seems to append !*@* to pretty much any ban.


#1026 Support /whowas the same way as /whois Colloquy (GUI) None defect normal 03/14/07

Currently, Colloquy pops up an information window when you do a /whois <nickname>.

It would be very nice if this could also handle /whowas <nickname> requests, as these are currently just swallowed (or rather, they show up in the Console, but most people don't have that visible).

For reference:

WHOWAS looks like this:

whowas nickname
314: nickname n=nickname pha00108.dhcp.unc.edu * Nick Name
312: dray irc.freenode.net Wed Mar 14 22:26:25 2007
369: dray End of WHOWAS

WHOIS looks like this:

311: nickname n=nickname 64.65.176.46 * Nick Name
319: nickname @#plone 
312: nickname irc.freenode.net http://freenode.net/
320: nickname is identified to services 
318: nickname End of /WHOIS list.

#1229 Using a proxy from GUI Colloquy (GUI) None enhancement normal 04/15/08

Hi, I think It shouldn't be hard. I only want to make a suggestion: Including the proxy selection from the GUI. In the website I found how to use a proxy and/or ssh tunneling but they require to use the shell and some users don't know how to use it. I think that giving the option to consigure the proxy from the GUI should be very good for novice users.

Sorry for my bad english


#568 Multiple spaces in topic are collapsed Colloquy (GUI) None defect minor 03/27/06

Multiple spaces in the topic text are displayed as one space, HTML-style. I think it is appropriate to preserve the original spacing, as multiple spaces might, for example, be used to separate sections of the topic.

This is Colloquy "Version 2.0.1 (2D32)".


#950 add a "buddy" class to `<span class="member>nick</span>` in the transcript Colloquy (GUI) None defect minor 12/30/06

add a "buddy" class to <span class="member">nick</span> in the transcript, so this information is also available for nicks in the chat messages or in events


#1070 Aliases for server names in the connection panel rather than full hostname/IP Colloquy (GUI) None enhancement minor 07/19/07

It would be handy if the Connection Panel could accept some sort of "alias" for a server rather than having to display the full server name. I am on loads of servers, some of which have long and annoying names, and simply being able to refer to it by a shorthand alias would be a nice visual enhancement.

For example:

Freenode Undernet Blorp7

And so on.

Thanks.


#156 Global prefs should be applied to all rooms if the user wants Colloquy (GUI) None enhancement normal 04/30/05

The user should have the option of making their global preferences replace the individual room preferences. If they decide they want a new global look or feel, and they have many individual prefs, it is very tedious to change them all. A button that overrides all individual room prefs with the chosen global pref would fix this. This should be implemented by deleting each individual room's prefs, so that future changes to the global prefs will continue to affect the rooms that do not have new local prefs.


#383 Allow for a stack of input buffers Colloquy (GUI) None enhancement normal 11/11/05

Everybody knows the situation when you are writing a longish comment, and while doing this something important happens... In this case I want to answer quick, by pushing down the current input, (Cmd-P) and getting a fresh input line with the cursor in it. When pressing Return this message gets sent, the old input pops back and we are back to normal...

Does this sound reasonable?


#848 timestamp formats and positioning Colloquy (GUI) None enhancement trivial 08/28/06

Several people on irc have been asking for different timestamp formats, e.g. seconds and left and right positioning. I think this is interesting enough to be customizable in the default stylesheet. I have a working implementation of all these options (position: left, right, hidden; format: with or without seconds, am/pm or 24h) in my not-yet-released stylesheet and I could change default.xsl (and main.xsl of the other styles delivered with Colloquy) and styleOptions.plist to get that working in other stylesheets. Just send me an email if you are interested.


#230 Add Paste Selection operation Colloquy (GUI) None enhancement normal 06/17/05

I'd like Colloquy to have the Paste Selection command that the Terminal application has.

It would copy the current selection from the scrollback area to the input field, and be triggered by ⇧⌘V. Terminal also triggers it via middle-click, but that might be too odd or difficult.


Note: See TracReports for help on using and creating reports.