기본 콘텐츠로 건너뛰기

1월, 2005의 게시물 표시

게임 마지막글자입력되도록 수정하기.

diff -urN gaim-0.75.99-20040318cvs.orig/src/gtkconv.c gaim-0.75.99-20040318cvs/src/gtkconv.c --- gaim-0.75.99-20040318cvs.orig/src/gtkconv.c 2004-03-16 10:31:48.000000000 -1000 +++ gaim-0.75.99-20040318cvs/src/gtkconv.c 2004-03-16 12:50:59.689509499 -1000 @@ -1390,6 +1390,11 @@ if (!(event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK)) && gaim_prefs_get_bool("/gaim/gtk/conversations/enter_sends")) { + if (gtk_im_context_filter_keypress (GTK_TEXT_VIEW (entry)->im_context, event)) + { + GTK_TEXT_VIEW (entry)->need_im_reset = TRUE; + return TRUE; + } send_cb(NULL, conv); return TRUE; } RedHat 9, Gaim 1.1.1 한글 입력이 잘 되는군요.. 좋아좋아^^

The Servlet API and NIO: Together at last

The Servlet API and NIO: Together at last Contents: Threads on a budget The Servlet API and NIO The example server The Server class Request processing Running the example Performance results Conclusion Resources Download About the author Rate this article Related content: Getting started with NIO Turning streams inside out IBM Developer Kits for the Java platform (downloads) Subscriptions: dW newsletters dW Subscription (CDs and downloads) Build your own Servlet-based Web server, with nonblocking I/O Level: Intermediate Taylor Cowan ( taylor_cowan@yahoo.com ) Senior Software Systems Engineer, Travelocity 03 Feb 2004 Think it's impossible to combine NIO and the Servlet API? Think again. In this article, Java developer Taylor Cowan shows you how to apply the producer/consumer model to consumer nonblocking I/O, thus easing the Servlet API into a whole new compatibility with NIO. In the process, you'll see what it takes to build an actual Servlet-based Web server that ...