﻿/**
 * 新 delicious の被ブックマーク数を取得する
 * 要 md5.js by 光成滋生@サイボウズ・ラボ
 * 　　　http://labs.cybozu.co.jp/blog/mitsunari/2007/07/md5js_1.html
 */


// メイン
function getTotalPosts(url){
	var md5Code   = CybozuLabs.MD5.calc(url);
	var urlProxy  = 'http://delicious.com/url/';
	var imgUrl    = 'http://static.delicious.com/img/delicious.gif';
	var JSONProxy = 'http://feeds.delicious.com/feeds/json/url/blogbadge?hash=';

	document.write(
		'<a href="' + urlProxy + md5Code + '" title="このエントリを含む delicious" target="_blank">'
		+ '<img src="' + imgUrl + '" style="border:0;" width="16" height="16" alt="このエントリを含む delicious" />'
	);
	document.write(
		'<script type="text/javascript" src="' + JSONProxy + md5Code +'&callback=callBack"></script>'
	);

	document.write('</a>');


};

// コールバック関数
function callBack(json){
	var posts = json[0].total_posts;
	if ( posts != 0 ) { document.write(' ' + posts + 'user'); }
};

