差分発生行の前後
無視リスト:
コミット日時:
2009/03/17 08:33:27 (4 年前)
コミッタ:
tasuku
ログメッセージ:

* gunyarapaint: 続きを描くボタンを除去
* com: 続きを描く系のフォームリダイレクトのロジックを削除

ファイル:

凡例:

変更無し
追加
削除
更新
コピー
移動
  • as3/gunyarapaint/trunk/nicopedia/org/libspark/nicopedia/Com.as

    r2348 r2352  
    6666      r.url = url; 
    6767      r.method = URLRequestMethod.GET; 
    68       navigateToURL(r, '_top'); 
    69     } 
    70      
    71     public static function redirectPicoForm(url:String, mml_id:uint):void { 
    72       var r:URLRequest = new URLRequest(); 
    73       var v:URLVariables = new URLVariables(); 
    74       r.url = url; 
    75       r.data = v; 
    76       r.method = URLRequestMethod.POST; 
    77       v.mml_id = mml_id; 
    78        
    79       navigateToURL(r, '_top'); 
    80     } 
    81      
    82     public static function redirectOekakiForm(url:String, oekaki_id:uint):void { 
    83       var r:URLRequest = new URLRequest(); 
    84       var v:URLVariables = new URLVariables(); 
    85       r.url = url; 
    86       r.data = v; 
    87       r.method = URLRequestMethod.POST; 
    88       v.oekaki_id = oekaki_id; 
    89        
    9068      navigateToURL(r, '_top'); 
    9169    }