<前の日記(2004年12月21日) 次の日記(2005年01月01日)> 最新 編集

高木浩光@自宅の日記

はじめに 連絡先:blog@takagi-hiromitsu.jp
訪問者数 本日: 2928   昨日: 6532

2004年12月25日

Firefoxの普及状況は?

Firefoxはどのくらい普及しているのだろうかと、この日記のアクセスログから、 訪問者が使用していたブラウザの種類を調べてみた。

図1のグラフは、/diary/ および /diary/*.html への GETアクセスについて、 日別に、ブラウザの種類を棒グラフ(目盛は左)に、アクセス数を折れ線グラ フ(目盛は右)に示している。 「others」にはランク外のブラウザの他に検索ロボットなども含まれている。

図1: この日記の閲覧時に使用されているブラウザの推移
12/8のところで突出した傾向が現れているのは、12月5日の日記 に対してたくさんのサイトからリンクされたために、 普段ここに訪れていなかった人たちが多数訪れた影響と思われる。

集計に使用したプログラムは以下の通り*1

#! /usr/local/bin/ruby
logformat = /^(\S*) (\S*) (\S*) \[(...........):(........) .....\] "(\S*) (\S*)
(\S*)" (\S*) (\S*) "([^"]*)" "([^"]*)"/
total = 0
msie = firefox = mozilla = netscape6 = opera = safari = w3m = netscape4 = antenn
a = others = 0
while line = gets()
    line.chomp!()
    (addr, user, auth, date, time, method, path, protocol, status, length, refer
rer, agent) = line.scan(logformat)[0]
    next if method != "GET"
    next if not path.match(/^\/diary\/$|^\/diary\/.*\.html$/)
    total += 1
    if agent.match(/Opera/)
        opera += 1
    elsif agent.match(/Firefox/)
        firefox += 1
    elsif agent.match(/Safari/)
        safari += 1
    elsif agent.match(/w3m/)
        w3m += 1
    elsif agent.match(/MSIE/)
        msie += 1
    elsif agent.match(/Netscape\/[67]/)
        netscape6 += 1
    elsif agent.match(/Mozilla\/4\.[6789]/)
        netscape4 += 1
    elsif agent.match(/Gecko\//)
        mozilla += 1
    elsif agent.downcase.match(/antenna|wdb|rss|samidare|livedoorcheckers|glucos
e|blogpeople/)
        antenna += 1
    else
        others += 1
    end
end
print "#{total} #{msie} #{firefox} #{mozilla} #{netscape6} #{opera} #{safari} #{
w3m} #{netscape4} #{antenna} #{others}\n"

*1 ご利用はご自由に。

本日のTrackBacks(全100件) [TrackBack URL: http://takagi-hiromitsu.jp/diary/tb.rb/20041225]
徒然日記:[net]Firefoxの普及率 (2004年12月27日 05:32)

Firefoxの普及率を高木さんの所と比較してみた…

Barron Howard:Gordon Freeman (2007年05月02日 20:41)

It would seem, and the bright light of the year.

Kennth Fleming:Frankie Justice (2007年05月13日 13:29)

Now, I'm sure everybody must think so, and in apprehension of certain free-booters by name, even while speaking his arm.

Cowperwood, Personal.

there's what you think, child, and go within the scope of our women and children, though the cover herself so long endured, as restless as a matter for your life on the subject, while the blood of man.

検索

<前の日記(2004年12月21日) 次の日記(2005年01月01日)> 最新 編集

最近のタイトル

2012年05月08日

2012年05月04日

2012年04月29日

2012年04月21日

2012年04月08日

2012年03月03日

2012年02月27日

2012年02月26日

2012年02月18日

2011年12月29日

2011年12月21日

2011年12月18日

2011年12月12日

2011年12月04日

2011年11月26日

2011年11月19日

2011年11月06日

2011年11月05日

2011年11月01日

2011年10月14日

2000|01|
2003|05|
2004|07|08|09|10|11|12|
2005|01|02|03|04|05|06|07|08|09|10|11|12|
2006|01|02|03|04|05|06|07|08|09|10|11|12|
2007|01|02|03|04|05|06|07|08|09|10|11|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|05|06|07|08|09|10|11|12|
2012|02|03|04|05|
<前の日記(2004年12月21日) 次の日記(2005年01月01日)> 最新 編集