• R/O
  • SSH
  • HTTPS

quickirc: Commit


Commit MetaInfo

Revision40 (tree)
Time2009-10-31 07:05:42
Authortateisu

Log Message

Flashログのヘッダがajaxになっていたバグを修正

Change Summary

Incremental Difference

--- QuickIRC2/j/QI2BufferTree.js (revision 39)
+++ QuickIRC2/j/QI2BufferTree.js (revision 40)
@@ -628,6 +628,7 @@
628628 if( conn_type == 'ajax' ){
629629 self.conn = new QI2Ajax();
630630 self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Ajax>"+str); };
631+ self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
631632 // サーバ設定を追加
632633 self.addServer = function( name,serverurl,checked){
633634 var select = self.config_form.serverlist;
@@ -672,7 +673,6 @@
672673 }
673674 self.conn.start(serverurl,self.config_form.proxy_password.value);
674675 };
675- self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
676676 self.conn.on_event = function(type,extra){
677677 try{
678678 switch(type){
@@ -722,6 +722,8 @@
722722 };
723723 }else{ // direct
724724 self.conn = new QI2Flash();
725+ self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Flash>"+str); };
726+ self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
725727 // サーバ設定を追加
726728 self.addServer = function(name,server,port,crossdomain_url,checked){
727729 var select = self.config_form.serverlist;
@@ -775,8 +777,6 @@
775777 }
776778 self.conn.start(self.conn_charset,serverhost,serverport,crossdomainurl);
777779 };
778- self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Ajax>"+str); };
779- self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
780780 self.conn.on_event = function(type,extra){
781781 try{
782782 switch(type){
--- QuickIRC2/qi2_packed.js (revision 39)
+++ QuickIRC2/qi2_packed.js (revision 40)
@@ -9113,6 +9113,7 @@
91139113 if( conn_type == 'ajax' ){
91149114 self.conn = new QI2Ajax();
91159115 self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Ajax>"+str); };
9116+ self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
91169117 // サーバ設定を追加
91179118 self.addServer = function( name,serverurl,checked){
91189119 var select = self.config_form.serverlist;
@@ -9157,7 +9158,6 @@
91579158 }
91589159 self.conn.start(serverurl,self.config_form.proxy_password.value);
91599160 };
9160- self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
91619161 self.conn.on_event = function(type,extra){
91629162 try{
91639163 switch(type){
@@ -9207,6 +9207,8 @@
92079207 };
92089208 }else{ // direct
92099209 self.conn = new QI2Flash();
9210+ self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Flash>"+str); };
9211+ self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
92109212 // サーバ設定を追加
92119213 self.addServer = function(name,server,port,crossdomain_url,checked){
92129214 var select = self.config_form.serverlist;
@@ -9260,8 +9262,6 @@
92609262 }
92619263 self.conn.start(self.conn_charset,serverhost,serverport,crossdomainurl);
92629264 };
9263- self.conn.logger = function(str ){ if( self.config_form.showLowLevelLog.checked) self.say("Ajax>"+str); };
9264- self.conn.sendlog = function(line){ if( self.config_form.showRawLog .checked) self.say("C>" +line); };
92659265 self.conn.on_event = function(type,extra){
92669266 try{
92679267 switch(type){
Show on old repository browser