古い記事
ランダムジャンプ
新しい記事
このブログにモバイル検索サイト用の sitemap を設置した。
以下、自分用メモ。

(1) モバイル検索サイト用の sitemap を作成するスクリプトを作った。
入力は cl.itemlist (chalow の検索用ファイル)。
コード:
#!/usr/bin/perl
# usage: cli2sitemap-mobi.pl cl.itemlist > sitemap-mobi.xml
use warnings;
use strict;
my %hash;
while (<>) {
    $hash{$1} = 1 if (/^<a href=\"(\d+-\d+-\d+-\d+)/);
}
print << "XML"
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url><loc>http://chalow.net/clkeitai.cgi</loc></url>
 @{[
   map {"<url><loc>http://chalow.net/clkeitai.cgi?date=$_</loc></url>\n"}
   (reverse sort keys %hash)
]}
</urlset>
XML
    ;

(2) これをブログアップ時に動かすことにより、
http://chalow.net/sitemap-mobi.xml ができる。

(3) そして、Google Webmaster Tools と Yahoo! Site Explore で
このサイトマップの URL を登録。「モバイルXHTML」とかの分類で登録。

以上。

ref. [を] このブログのケータイゲートウェイをリニューアル[2007-10-11-1]