wikipedia-cutup

    @@ -43,7 +43,7 @@ $('h1').text(''); var i = 0; -new Page(location.href); +// new Page(location.href); for(i = 0; i < 5; i++) { new Page;
  • /*
     * @title wikipedia-cutup
     * @description Wikipediaの記事をカットアップします
     * @include http://ja.wikipedia.org/wiki/
     * @license MIT License
     */
    
    function selectRandom(list) {
        return list[Math.floor(Math.random() * list.length)];
    };
    
    function Page(url) {
        var self = this;
        $.ajax({
            url: url || 'http://ja.wikipedia.org/wiki/Special:Randompage',
            dataType: 'html'
        }).success(function(res) {
            self.nodes = $(res).find('.mw-content-ltr>*');
            self.title = $(res).find('h1').text();
            self.appendTitle();
            var i = 0;
            var timer = setInterval(function() {
                $('#bodyContent').append(self.getNode());
                i++;
                if (i > 100) {
                    clearInterval(timer);
                }
            },100);
        });
    }
    
    Page.prototype = {
        appendTitle: function() {
            $('h1').text(this.title + ' ' + $('h1').text());
        },
        getNode: function() {
            if (!this.nodes) return null;
            return $(selectRandom(this.nodes)).clone();
        }
    };
    
    $('#bodyContent').empty();
    $('h1').text('');
    
    var i = 0;
    // new Page(location.href);
    
    for(i = 0; i < 5; i++) {
        new Page;
    }
    
  • Permalink
    このページへの個別リンクです。
    RAW
    書かれたコードへの直接のリンクです。
    Packed
    文字列が圧縮された書かれたコードへのリンクです。
    Userscript
    Greasemonkey 等で利用する場合の .user.js へのリンクです。
    Loader
    @require やソースコードが長い場合に多段ロードする Loader コミのコードへのリンクです。
    Metadata
    コード中にコメントで @xxx と書かれたメタデータの JSON です。

History

  1. 2011/12/07 16:28:38 - 2011-12-07
  2. 2011/12/07 16:24:32 - 2011-12-07
  3. 2011/12/07 16:22:56 - 2011-12-07
  4. 2011/12/07 16:22:01 - 2011-12-07
  5. 2011/12/07 16:11:56 - 2011-12-07
  6. 2011/12/07 16:09:17 - 2011-12-07