01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
% env LDFLAGS="-L/usr/local/lib" CPPFLAGS="-I/usr/local/include/libpng" ./configure
% make
% make check
% sudo make install
% env CPPFLAGS="-I/usr/local/include/libpng" ./configure
% make
% make check
% sudo make install
cf. http://www.dlib.org/dlib/november02/almasy/11almasy.html
cf. http://www.cygwin.com/xfree/
cf. http://www.cert.org/advisories/CA-2002-07.html
my ($basedir, $dir) = @_;
$basedir =~ s/\/$//;
foreach my $d (split(/\//, $dir)) {
$basedir .= "/$d";
unless (-d $basedir) {
print "\tmkdir $basedir\n";
mkdir($basedir, 0777) || die "mkdir fail: $dir: $!"
}
}
return $basedir;
cf. http://www.vector.co.jp/vpack/filearea/winnt/util/operate/keyboard/index.html
java -Djava.endorsed.dirs=/home/masao/class ...
cf. http://java.sun.com/xml/jaxp/faq.html#override
<xsl:output method="html" encoding="EUC-JP"/>
...
<xsl:template match="keyword">
<a href="foo.cgi?search={.}"><xsl:value-of select="."/></a>
</xsl:template>
<keyword>化学</keyword>
XT: <a href="foo.cgi?search=化学">化学</a>
XalanJ: <a href="foo.cgi?search=%E5%8C%96%E5%AD%A6">化学</a>
Libxslt: <a href="foo.cgi?search=%E5%8C%96%E5%AD%A6">化学</a>
The html output method should escape non-ASCII characters in
URI attribute values using the method recommended in Section
B.2.1 of the HTML 4.0 Recommendation.
cf. http://bugzilla.gnome.org/show_bug.cgi?id=92438
cf. http://nagoya.apache.org/bugzilla/show_bug.cgi?id=13754
http://www.w3.org/TR/xslt20/
http://bugzilla.mozilla.org/show_bug.cgi?id=52821
http://bugzilla.mozilla.org/show_bug.cgi?id=108973
'(lambda ()
(insert "<div class=\"last-update\">最終更新日: "
(format-time-string "%Y年%m月%d日")
"</div>\n")))
<h1>などのフォントサイズの大きな要素で文字が重なってしまう。
cf. http://www.pugx3.com/bfi/html/howto/lineheight/index.html
ついでに、NN4とかの古いブラウザ相手にはスタイルシートを無効化する
ようにした方が良いかも…。
cf. http://www.asahi-net.or.jp/~xk3t-cb/css/CSSBugsJ.html
cf. http://www.cwi.nl/InfoVisu/
- chalow-like
- Exif 情報に基づく
- URIは以下のような感じ。
- http://www/.../album/2002/08/02/00:01.jpg
t00:01.jpg (サムネール)
- 縮小・拡大
- 回転
cf. http://cookpad.com/support/docs/about.cfm
\def\twodigits#1{\ifnum#1<10 0\fi\number#1}
\renewcommand{\today}{\sf\number\year--\twodigits\month--\twodigits\day~\twodigits\hour:\twodigits\minute}