Changeset 33754

Show
Ignore:
Timestamp:
06/03/09 19:14:45 (4 years ago)
Author:
sakito
Message:

good bye nowa

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/javascript/userscripts/tubuyakix.user.js

    r20116 r33754  
    22// @name           tubuyakix 
    33// @namespace      http://www.sakito.com/ 
    4 // @description    Twitter and Wassr and nowa and others poster 
     4// @description    Twitter and Wassr and others poster 
    55// @include        * 
    66// ==/UserScript== 
     
    2323 
    2424  var URL = "http://sakitodraftdoc.googlepages.com/tubuyakix.user.js.page"; 
    25   var VERSION = "20080928"; 
     25  var VERSION = "20090603"; 
    2626 
    2727  if (self.location.href != top.location.href) { 
     
    102102    tubuyakix_createinput(infoelement, "twitter"); 
    103103    tubuyakix_createinput(infoelement, "wassr"); 
    104     tubuyakix_createinput(infoelement, "nowa"); 
    105104 
    106105    var button = c("button", "tubuyakix_button"); 
     
    193192      "wassrusername" : v("tubuyakix_wassrusername"), 
    194193      "wassrpassword" : v("tubuyakix_wassrpassword"), 
    195       "nowausername" : v("tubuyakix_nowausername"), 
    196       "nowapassword" : v("tubuyakix_nowapassword") 
    197194    }; 
    198195 
     
    304301    } 
    305302 
    306     var nowaInfo = { 
    307     "username" : accountsinfo.nowausername, 
    308     "password" : accountsinfo.nowapassword 
    309     }; 
    310     if (nowaInfo.username != "" && nowaInfo.password != "") { 
    311       var nowaEndPoint   = [ 
    312                             'https://', 
    313                             nowaInfo.username, 
    314                             ':', 
    315                             nowaInfo.password, 
    316                             '@api.nowa.jp/status_message/update.json' 
    317                             ].join(''); 
    318       post(nowaEndPoint); 
    319     } 
    320  
    321303  } 
    322304