2007-02-01ãã1ã¶æéã®è¨äºä¸è¦§
String.prototype.ucFirst = function () { return this.substr(0,1).toUpperCase() + this.substr(1,this.length); }; String.prototype.lcFirst = function () { return this.substr(0,1).toLowerCase() + this.substr(1,this.length); }; String.prototypâ¦
prototype.jsã¨åããªã¯ã¨ã¹ããããã追å ãããªã¼ãã©ã¤ãï¼ è¿½å ãããããï¼X-REQUESTED-WITH: XMLHttpRequest æå³ããã®ãï¼ Ajax.implement({ request: function(){ this.transport.open(this.options.method, this.url, this.options.async); this.tâ¦
branch2.0ã®-r100 ãã -r120ã¾ã§ã®å¤æ´ãtrunkã«åæ ããã(trunkã®ãã£ã¬ã¯ããªå ã§å®è¡) ãã¹ãå®è¡ï¼å®éã®ãã¡ã¤ã«ã«ã¯åæ ãããªãï¼ $ svn merge --dry-run -r 100:120 svn+ssh://oppara@ibook-g4/path/to/project/branches/2.0 å®è¡ $ svn merge -r â¦
対話 echo 'Get it? [y/n]' read ANS if [ $ANS = 'y' -o $ANS = 'yes' ]; then echo 'ã´ãª.' else echo '...' fi å¼æ° if [ -z $1 ]; then echo "Usage: $0 xxx" else echo $1 fi exit 0