Directory src/net/java/sip/communicator/impl/protocol/irc/

Directory Created:
2007-09-11 20:46
Total Files:
13
Deleted Files:
0
Lines of Code:
4964

[root]/src/net/java/sip/communicator/impl/protocol/irc

Lines of Code

src/net/java/sip/communicator/impl/protocol/irc/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 138 (100.0%) 6474 (100.0%) 46.9
yanas 57 (41.3%) 5919 (91.4%) 103.8
lubomir_m 48 (34.8%) 362 (5.6%) 7.5
damencho 4 (2.9%) 66 (1.0%) 16.5
emcho 17 (12.3%) 53 (0.8%) 3.1
wernerd 4 (2.9%) 38 (0.6%) 9.5
vincent_lucas 4 (2.9%) 18 (0.3%) 4.5
ibauersachs 1 (0.7%) 11 (0.2%) 11.0
sympho 2 (1.4%) 5 (0.1%) 2.5
vmartinet 1 (0.7%) 2 (0.0%) 2.0

Most Recent Commits

vincent_lucas 2012-03-01 16:16

Changes enumeration TransportProtocolEnum name to TransportProtocol. Modifies function TransportProtocol.parse(String transportProtocol) to ignore case of the transportProtocol parameter.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+2 -2)
vincent_lucas 2012-03-01 14:34

Adds an enumeration for the available transport protocols (UNKNOWN, UDP, TCP or TLS) used to carry the control channel of protocol services (SIP, XMPP, etc.). Updates ProtocolProviderServices getTransportType() function to getTransportProtocol() which returns a transport protocol enumeration.

5 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+5 -4)
vincent_lucas 2012-03-01 11:02

Corrects the getTransportType() function documentation of the ProtocolProviderServices.

1 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+1 -1)
vincent_lucas 2012-02-29 20:27

Adds a getTransportType() function to ProtocolProviderServices in order to get the transport protocol used. Corrects the call transport field of the CallInfoFrame, which henceforth uses the new getTransportType() function.

10 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+10)
emcho 2011-10-18 14:03

Changes project name in source license headers from SIP Communicator to Jitsi

13 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomInvitationIrcImpl.java (+1 -1), ChatRoomIrcImpl.java (+1 -1), ChatRoomMemberIrcImpl.java (+1 -1), IrcAccountID.java (+1 -1), IrcActivator.java (+1 -1), IrcStack.java (+1 -1), IrcStatusEnum.java (+1 -1), MessageIrcImpl.java (+1 -1), OperationSetMultiUserChatIrcImpl.java (+1 -1), ProtocolIconIrcImpl.java (+1 -1), ProtocolProviderFactoryIrcImpl.java (+1 -1), ProtocolProviderServiceIrcImpl.java (+1 -1), UserInfo.java (+1 -1)
ibauersachs 2011-10-07 19:35

Don't show the security padlock when the security controller requires secure signaling, but signaling is insecure

11 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+11)
damencho 2010-12-14 20:11

When creating account check and disabled accounts(all loaded accounts in AccountManager) for duplicates.
Don't block UI when disabling account which is currently registering or asking for authentication.

1 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderFactoryIrcImpl.java (+1 -1)
lubomir_m 2010-09-11 13:34

Adds javadocs, fixes warnings.

7 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolIconIrcImpl.java (+7 -2)
yanas 2010-07-05 18:47

Configuration window improvements including reorganizing sections, user interface modifications, account loading/unloading functionality and more.

36 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolIconIrcImpl.java (+36 -2)
wernerd 2010-05-30 16:09

Fix another bunch of unguarded logger.{debug,info,trace} calls.

Ongoing activity to fix the usage of shown logger messages.

38 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+4 -2), IrcActivator.java (+4 -2), IrcStack.java (+26 -13), ProtocolProviderServiceIrcImpl.java (+4 -2)
lubomir_m 2010-03-23 00:59

- Fixes the message upon joining a chat room stating that the chat room has had its subject changed to null. The fix rather stops the message unless the subject value has really changed.
- Fixes the sorting of the chat room members (which first sorts by role and then by name).

15 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+3 -3), ChatRoomMemberIrcImpl.java (+7 -6), IrcStack.java (+5 -5)
lubomir_m 2010-02-17 00:53

Fixes synchronization warnings.

7 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+7 -7)
vmartinet 2010-01-27 20:42

- Moved setUserRole() to setLocalUserRole()
- Updated room member roles (distinct from "affiliation")
- Enabled unit test for Jabber chatrooms *roles*

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+2 -1)
yanas 2009-12-01 15:33

Support for roles in Jabber group chat. Patch provided by Valentin Martinet.

155 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+125 -7), ChatRoomMemberIrcImpl.java (+11 -27), IrcStack.java (+19 -12), OperationSetMultiUserChatIrcImpl.java (-2)
lubomir_m 2009-10-18 00:12

Uses AbstractProtocolProviderService#addSupportedOperationSet in its extenders because it's type-safe and shortens the code.

22 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolProviderServiceIrcImpl.java (+22 -24)
lubomir_m 2009-09-19 20:18

- Fixes a problem in the global status menu at the top of the contact list which causes it to display IRC online even when it's offline on startup.
- Reduces its shallow runtime size.
- Removes a duplicate method in IRC.
- Fixes warnings in the IRC protocol implementation.

75 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+2 -1), IrcAccountID.java (+4 -8), IrcActivator.java (+2 -11), IrcStack.java (+30 -42), IrcStatusEnum.java (+4 -25), ProtocolIconIrcImpl.java (+17 -39), ProtocolProviderFactoryIrcImpl.java (+3 -4), ProtocolProviderServiceIrcImpl.java (+9 -17), UserInfo.java (+4 -16)
lubomir_m 2009-09-02 13:40

Commits the second patch of Sebastien Vincent in the dev mailing list thread "Fix lot of warnings in the code" which fixes multiple compiler warnings.

6 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: OperationSetMultiUserChatIrcImpl.java (+6 -10)
lubomir_m 2009-08-31 16:15

Commits another part of the patch provided by Sebastien Vincent on the dev mailing list in an e-mail with the subject "Fix lot of warnings in the code" which fixes warnings in the src directory.

47 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ChatRoomIrcImpl.java (+29 -48), IrcAccountID.java (+2 -2), IrcActivator.java (+2 -2), IrcStack.java (+6 -9), OperationSetMultiUserChatIrcImpl.java (+1 -1), ProtocolProviderFactoryIrcImpl.java (+4 -4), UserInfo.java (+3 -3)
lubomir_m 2009-08-31 15:05

Commits a small fraction of the patch provided by Sebastien Vincent on the dev mailing list in an e-mail with the subject "Fix lot of warnings in the code" which removes unnecessary casts.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: ProtocolIconIrcImpl.java (+2 -2)
lubomir_m 2009-08-30 22:31

Introduces a default implementation of OperationSetMultiUserChat which removes duplications from extenders and fixes warnings.

2 lines of code changed in:

  • src/net/java/sip/communicator/impl/protocol/irc: OperationSetMultiUserChatIrcImpl.java (+2 -160)

(45 more)

Generated by StatSVN 0.3.1