File: /src/server.cpp
107 commits found

TimeRevisionRepliesAuthorMessageWednesday, 30. August 2006
23:08579061274heinSome added consistency and redundancy for updating the nickname comboboxes in status and channel tabs. May fix the problem argonel has been reporting.
13:495788750hein* Support %nick as a placeholder for the current nick in the auto-connect commands. BUG:133240 * Don't balk on leading whitespace in the auto-connect commands. I assume I'm not the only one who by reflex puts a space after the separating ";".


TimeRevisionRepliesAuthorMessageSaturday, 26. August 2006
19:485774790heinAlways close the socket on ping timeout, not just when auto-reconnect is enabled - that's handled elsewhere.


TimeRevisionRepliesAuthorMessageFriday, 25. August 2006
17:195771400heinClear status bar main label temp text when the action collection hands us an empty description. BUG:132980
02:215768820heinRemove wrong message.
00:475768640heinStop reading server input after sending quit so we don't route any strange errors through to the ircviews on some servers.


TimeRevisionRepliesAuthorMessageThursday, 24. August 2006
22:385768416495hein* Make auto-reconnect preference apply at runtime. * Remove preference to auto-rejoin channels as disabling it had no effect anyway and it's too late to implement it for the up- coming release. * Small improvement to auto-join vs. re-join channels behavior: rejoin on iteration, too, if we were connected and in channels before.
21:535768250heinPrevent opening channel links and query links on a disconnected server.
18:495767520psnFix the multiple change nick dialogs if the the connection times out problem.... It's not pretty but it works
06:395764550argonelImplement a new method of breaking up texts that are too long to send in one message. - text displayed in the window matches what is sent to the server - works only for channels and queries - should work with all supported encodings, but this will need heavy testing - multibyte especially - patch includes lots of debugging lines, change the KV macros to kdDebug to enable


TimeRevisionRepliesAuthorMessageWednesday, 23. August 2006
22:375763630heinRecreate a previous away state (message and all) on reconnect. Personally I always found it very annoying it didn't do that, especially since we never reset the UI anyway, so this makes it not lie to boot.
21:535763490heinProperly quit from the server on /disconnect and /reconnect (and related GUI actions) instead of just yanking the socket. Let's hope this doesn't break too much ...
18:455763000heinDon't forget to identify on reconnect after manual disconnects.


TimeRevisionRepliesAuthorMessageTuesday, 22. August 2006
20:325760160psn* Fix @-symbol in WHO and WHOIS responses * Fix escaping of < and >
18:425759810heinRemove even more, even deader code.


TimeRevisionRepliesAuthorMessageSunday, 20. August 2006
20:505751370heinFix auto-identify on reconnect.
12:385748600heinAdd translation hints for DCC strings.
12:275748570heinFix DCC string.


TimeRevisionRepliesAuthorMessageSaturday, 19. August 2006
23:535747290heinRemove debug, finish up the DCC Chat messages.
23:135747140hein* Fix iteration over the server list on connection failure when original connection attempt was made to a specific server rather than generically to the group. * Fix connecting to a specific server reliably from the server list dialog. * Ellipsification ensues in the DCC messages.
22:265746990hein* Improve handling of trailing commas in URLs. * Simplify DCC messages further, add ellipsis.
21:045746820heinFix quick connect auto-joining the channels of the network the server is recognized as being part of. This is a pile-on patch fix; we need to refactor this to look better when we have more time to spare (but we knew that already). BUG:121768
14:345746060heinImprove wording a bit.
11:365745470shinfix broken i18n mesgs.
09:105745130shinSVN_SILENT remove debug code
09:095745120shinfix broken DCC i18n messages.
09:085745110shinfix the problem that an empty line is added to the front panel on DCC sending/receiving (reported by omeow).
08:295745070shinmake DCC messages user-friednly following Sho's advice.
00:095744270heinSome more DCC message improvements by omeow.


TimeRevisionRepliesAuthorMessageFriday, 18. August 2006
05:545740990shinfix a broken i18n message
05:495740980shins/i18n( .. ).arg( 1 ).arg( 2 ).arg( 3 )/i18n( .. ).arg( 1, 2, 3 )/ in DCC messages otherwise the text is broken when the arg 1 or 2 contains %
00:325740640psnMore message clean up by omeow
00:005740590psnShow percentage instead of size in bytes


TimeRevisionRepliesAuthorMessageThursday, 17. August 2006
23:045740560psnOpps forgot this
21:585740430psnClean up dcc messages... patch by omeow Make getProgress() public
03:155737190heinBehold, the Commit of Doom! Although I prefer to think of it as the Commit of Bliss. In any case, it's massive (diffstat < 10k lines). Here goes: - Implement a tree list as a vertical alternative to the tab bar, supporting all cosmetic and interactive features of the tab bar, including, but not limited to, text notifications, LEDs, (hover) close buttons with delayed activation, context menus, drag'n'drop, and mouse wheel events. Plus a few tricks of its own. - Refactor KonversationMainWindow: The view management duties are now performed by the new ViewContainer class, which internally abstracts the differences be- tween the two tab switching widgets. All of that code has seen major cleanups. Also, the status bar management is now happening - mostly rewritten, too - in the new KonversationStatusBar class. - Cleanup all around. - Delete obsolete class DccTransferHandler. - Delete obsolete class Popup. - Delete obsolete class KonviSqueezedTextLabel. - Fix status bar not being reset correctly when the last view is closed. - Fix the status bar temp text not being cleared when the window loses focus or the cursor leaves the window after a link is launched. - Don't set allow empty temp texts to be set in the status bar. - Fix the "No answer from server for ..." lag text interfering with the status bar temp text mechanic by using the proper API to set it. - Improve consistency of status bar lag label updating to avoid the UI jumping around too much. - Hide the info and lag status bar labels until text is set for the first time. - Fix the "DCC Status" and "Channel List" panels leaving the status bar info label empty. - Reset the status bar properly when the last view is closed. - Tweak the grouping behavior for "Channel List" and "Raw Log" tabs. - Fix change of the general UI font not being propagated down to the various types of tabs. - Fix changes of the iconset not being applied to tab bar close icons. - Fix the name of the "Watched Nicks Online" tab changing under certain circum- stances. - Fix Reconnect action not being updated on /disconnect. - Fix Reconnect action not always working. - Fix "Hide Nicklist" action not being disabled when the current view doesn't actually have a nick list. - Fix the menu bar shown/hidden state not being saved across sessions. - Show the "Show Menubar" action as the first item in the IRCView context menu when the menu bar is hidden, as is established good practice among KDE applications. - Distribute actions in the menus a little better. - Make the ban list and other channel settings easier to find by adding an action to open the Channel Settings dialog to the "Window" menu as well as the IRCView context menu of channel tabs. BUG:132099 - Fix switching off notifications for a tab not unsetting active notification. - Fix server tabs not preserving their on/off notification state across sessions. BUG:132091 - Change the names of various actions temporarily when the (modal) shortcuts dialog is opened. Toggle actions are prefixed with "Toggle", since the list lacks the context in which they're understood as toggle actions. The insert actions are prefixed with "Insert". And the context-adaptive actions ("Open Logfile for ...") are stripped of their context. BUG:132092 - Disable the "Close All Open Queries" action when there are no open queries. - Fix the "Close All Open Queries" action not actually closing all open queries. BUG:131858 - Don't focus Url Catcher when the "Open URL Catcher" action is triggered the second time. A toggle action isn't tri-state. BUG:132097 - Don't add bookmarks to the action collection (i.e. to the list of short- cuts) when the bookmark menu is opened. BUG:132284 - Update rough changelog. - Bump build number. (PS.: You will need to do a 'make -f Makefile.cvs' in order to build this successfully out of an existing checkout.)


TimeRevisionRepliesAuthorMessageTuesday, 15. August 2006
10:395732250shin* simplify the interface of DccTransfer * now the DCC finished message shows the file name simply
09:325732120shinmake dcc notification messages concise. patch by omeow


TimeRevisionRepliesAuthorMessageMonday, 14. August 2006
21:455731070shinadd a DCC SEND notification message: notify user when the receiver accepts a transfer. CCBUG: 132094
21:265731020shinslot/signal connection fix: put a notification into the current view correctly when a dcc transfer is finished. CCBUG: 132094


TimeRevisionRepliesAuthorMessageSunday, 06. August 2006
17:515704330hein* Make IRCView contextmenu Ignore/Unignore actions consistent with the nicklist. * Re-add unbelievably hackish identify-on-nickserv-complaint-after- nickchange code that I removed in r570292, but retain the fix for duplicated identify attempts from that commit.
14:075703530hein* Make /unignore handle nicknames just as /ignore. * Make /unignore case-insensitive as it should be. * Simplify /unignore. * Update rough changelog. * Bump build number.


TimeRevisionRepliesAuthorMessageWednesday, 26. July 2006
21:405667330heinRetire the "append underscore to last used nick after unsuccessfully going through the identity's list of nicknames" behavior, which even- tually runs into the NICKLEN wall. Instead, ask the user to enter a new nick, or cancel the connection attempt on opt-out. Patch by Raphael Kubo da Costa, and mentored by me. BUG:131399
18:285666900heinLet's do some housekeeping: * Fix most of the 300+ quality control issues reported at EBN. The remaining items are mostly false positives (Qt4 checks, broken spell checking). * Clean out some obsolete includes. * Remove obsolete search dialog code. * Bump build number. * Update rough changelog.


TimeRevisionRepliesAuthorMessageMonday, 24. July 2006
15:005658220klingFixed dangling pointer dereference when doing an ignore-and-close in query window. BUG: 131123


TimeRevisionRepliesAuthorMessageMonday, 17. July 2006
22:085635840hein* Add support for spaces in file names to DCC receive and resume, compatible with mIRC and X-Chat. Make replacing spaces with underscores on DCC send optional. Patch written by Raphael Kubo da Costa, and mentored by me. Many thanks! * Update rough changelog. * Bump build number.


TimeRevisionRepliesAuthorMessageThursday, 06. July 2006
21:295592530psnFix bug 121748: heavy disk seeking when resizing the user list
13:305590230heinFix /reconnect.


TimeRevisionRepliesAuthorMessageWednesday, 05. July 2006
23:025587560psnStop the ping response timer when disconnected


TimeRevisionRepliesAuthorMessageTuesday, 04. July 2006
22:455582320psnUse the right function for checking if we're connected
09:055578770psnLet's use a bit less cpu while idle


TimeRevisionRepliesAuthorMessageMonday, 03. July 2006
22:555577680psnDon't use 100% cpu
22:515577650psnHandle the case when there's no colon before the names
22:335577570heinUpdate auto-join channel list on reconnect, catching any in-flight changes.
21:505577410psnOk so let's narrow it down a bit more then
21:325577340psnPossible fix for Insount's crash
17:475576420heinRewrite and improve identity warning handling: * Make sure the Quick Connect codepath hits the warning, otherwise connect fails on USER due to insufficiently set up identity. * Have the identity dialog open at the offending identity. * Continue connect if the identity was edited successfully. * Improve warning dialog appearance and wording.
16:565576270shinfix the connection to Server::dccGetDone() also s/DccTransfer::DccStatus/int/ for reducing dependency between files
16:485576210shinfix the connection to Server::dccSendDone()
11:095574740psnmore debug
11:015574710psnAdd some debug
09:125574320psnFix bug 126577: Lag in message transmission
08:465574240psnFix bug 126566: Half-hop status is not properly recognised Patch by Florent Bruneau


TimeRevisionRepliesAuthorMessageSunday, 02. July 2006
17:055571960psnSplit the lag calculation away from the ison code.
08:105570270psn* Use a QTimer to handle the connection timeout instead of using the lag as the lag can get high if we keep the server busy. * Don't rejoin autojoin channels on /motd


TimeRevisionRepliesAuthorMessageSaturday, 01. July 2006
22:125569190psnHandle pong as soon as possible to not artificaly increase the lag. Hopefully this should fix Bug 130125: Consistently disconnecting/ reconnecting on first connect attempt on Freenode


TimeRevisionRepliesAuthorMessageThursday, 15. June 2006
18:345518470cartmanFix <a href="#foo">foo is online</a> bug and some i18n fixups, all greatness brought to you by Stanislav Nikolov


TimeRevisionRepliesAuthorMessageWednesday, 07. June 2006
11:315490870heinRemove debug code now that #128301 is closed.


TimeRevisionRepliesAuthorMessageSaturday, 03. June 2006
20:365479098658hein* Completely remove automaticRequest from the equation. * Bump version number.


TimeRevisionRepliesAuthorMessageTuesday, 30. May 2006
15:495466200hein* Simplify NAMES handling and fix potential race conditions. * Remove unused KonversationApplication::quitKonversation(). * Update rough changelog. * Bump build number.


TimeRevisionRepliesAuthorMessageThursday, 18. May 2006
05:585420570shinnow multiple files can be selected in the DCC SEND file select dialog BUG: 127023


TimeRevisionRepliesAuthorMessageMonday, 24. April 2006
03:445332060hein* Fix fallback to RPL_USERHOST for IP retrieval by server reply for servers which do not include the user host in RPL_WELCOME. Fixes DCC on Freenode. * Update changelog.


TimeRevisionRepliesAuthorMessageThursday, 20. April 2006
16:135319160hein* Don't auto-join channels twice. * Simplify auto-join and auto-commands code.
15:335318970hein* Fix per-network auto-connect "Commands". Triggered by RPL_ENDOFMOTD or ERR_NOMOTD now, just before channel auto-join. * Update rough changelog.


TimeRevisionRepliesAuthorMessageSunday, 05. February 2006
12:495059620shinreset self IP info on reconnecting. this change should fix the problem that sending a file on DCC doesn't work after reconnection.
04:175058550shinthere is no need to include dcctransfer.h in server.h


TimeRevisionRepliesAuthorMessageTuesday, 31. January 2006
17:155043140abatianniBUG 121102 - tell nickinfo about kicked users, so they lose all modes on kicks
08:155040510hein* Merge ban list support. Patch by Michael Kreitzer. * Bump build number, version number.


TimeRevisionRepliesAuthorMessageTuesday, 17. January 2006
19:384994390heinCorrectly insert away remember line in all channel and query tabs of the affected server(s), rather than putting them all in the front view.


TimeRevisionRepliesAuthorMessageMonday, 16. January 2006
21:204990770abatiannichanged notify system to use the network group id instead of the name, network renaming now correctly updates an open watchlist editor. WARNING\! This will trash your notify lists, so better back them up before rebuilding\!
08:394987850muellerdon't crash me


TimeRevisionRepliesAuthorMessageSunday, 15. January 2006
21:044986700cartmanfix blowfish on freenode, yeah!
20:554986680cartmansomeone can't spell, hehe


TimeRevisionRepliesAuthorMessageSaturday, 14. January 2006
14:374980280abatianniQuick buttons, topic, channel modes and nickname box now update at runtime on preferences apply, removed lots of old code from server.cpp


TimeRevisionRepliesAuthorMessageThursday, 12. January 2006
22:284975170abatianniBUG:103670 - show quit and reason in query if we see a nick leave the server


TimeRevisionRepliesAuthorMessageWednesday, 11. January 2006
06:574967400heinDon't replace '<' and '>' with their HTML entity equivalents in the string we hand to InputFilter when rawlog-on-connect is enabled. Caused by the recent line swap in Server to make sure the raw log shows traffic in order of arrival. Scary.
03:214967140hein* Cleaned out legacy server config parsing code. * Prevent addition of nameless networks. * Land Server List dialog redesign: - Remove 'Group' property. - Populate tree with servers as children of networks and hook up buttons respectively. Networks retain expanded/collapsed state. - Fix server list sorting to match actual order of addition and thus auto-connect sequence. - Add new networks behind the last item in the list, resulting in the user interface actually matching the application behavior. - Improve behavior of button actions. - Improved error messages on deletion. * Update changelog, bump revision number. More to come ...


TimeRevisionRepliesAuthorMessageTuesday, 10. January 2006
22:364966750psnDon't start incomingTimer while we process a message
22:044966620psnSolution with no static var
21:494966510argonelnow isn't this a fine bag of soup


TimeRevisionRepliesAuthorMessageMonday, 09. January 2006
22:444961870abatiannireversed the two lines so rawlog gets the data before inputfilter does. This led to mixing up of lines


TimeRevisionRepliesAuthorMessageSunday, 08. January 2006
00:224954160psnFix logic


TimeRevisionRepliesAuthorMessageSaturday, 07. January 2006
08:024951330heinHave /topic <channel> make a honest attempt at retrieving <channel>'s topic regardless of whether or not we are on <channel>. Some ircds will not allow us to do that, which is why we implemented 442 (ERR_NOTONCHANNEL) allowing us to fail gracefully (i.e. with a pretty and localizable error message). BUG:112074
01:314950910hein* Change "no key" placeholder in auto-join from "''" to ".". * Don't iterate to assemble a list and don't needlessly send "no key" placeholder when we're dealing with a single channel.
00:164950790heinFix signature mismatch leading to dropped password on /server.


TimeRevisionRepliesAuthorMessageFriday, 06. January 2006
04:424947310heinImplement /disconnect and more importantly /reconnect as requested by users: /reconnect disconnects from and then reconnects to the respective server, or, if the connection is already severed, simply reconnects.
00:574947090heinAdd support for '/dns nick' to resolve the host of <nick> using the local nameserver. Reverse-resolve will be added later.


TimeRevisionRepliesAuthorMessageThursday, 05. January 2006
21:084946420abatiannifixed incorrectly capitalized nicks in nicklist, when nickinfo object already exists
20:034946260heinReplace function call- and iterator-based propagation of appearance changes with signals & slots. Removes updateFonts() from Server and significantly shrinks appearanceChanged() in Mainwindow. Rename appearanceChanged() to updateAppearance(), consistent with new updateAppearance() slots in Channel, Query, Statuspanel and Rawlog.
18:244946100abatianniremoved a few kdDebug() calls, just for cleaning up the console output