[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Forward: CVS commit: htdocs
川本です。ちょっと長いです。
> > > あるいは、初期のようにurl書き換えにして、新しいファイルが
> > > importされるたびに既存の/ja/ファイルのurlをチェックする
> > > スクリプトを動かすとか。
> >
> > 自動化できるんだったら、これがベストな気がします。
> > お手軽に使える html パーサってなにがあるのかしら。
>
> perlのHTML::Parseモジュールとか?
> ・/ja/以下の全部のhtmlファイルにこれを実行して
> ・実際にファイルがあるかどうか調べる
というスクリプトを、でっちあげました。
現在の/ja/以下のファイルに対して実行した結果もつけておきます。
現在は全然patchに食わせられるような形式じゃないんですが、
やっぱりそういうののほうがよいでしょうか。
--
iかわもと よしひさ! kawamoto@es.osaka-u.ac.jp
#!/usr/pkg/bin/perl
use File::Find;
use HTML::Parse;
use HTML::Element;
%jafiles = ();
find(\&wanted, "ja");
for $jafile (sort(keys %jafiles)) {
$msg = '';
$parsed = HTML::Parse::parse_htmlfile("./$jafile");
for (@{ $parsed->extract_links() }) {
$_ = $_->[0];
$url = $_;
if (!/^\w*:/ && !/^$/ && !/^#/ && /^(.*\/)?([^\/#]*)(#.*)?$/) {
$dir = $1;
$file = $2;
$mark = $3;
if (/^\//) {
$_ = "$dir$file";
} else {
$_ = $jafile;
s/\/[^\/]+$/\/$dir$file/;
}
s/\/\.$/\//;
s/(\/\.\.?)$/$1\//;
1 while (s/\/(?!\.\.\/)[^\/]+\/\.\.\//\//);
s/\/$/\/index.html/;
if (/^\/ja\//) {
if ($jafiles{$_}) {
# The link seems to point existing file.
# This is OK.
} else {
# The link points non existent file.
# This is NG.
s/^\/ja//;
s/\/[^\/]+$/\/$file$mark/;
$msg .= "\t$url should be $_\n";
}
} elsif (/^\/[^\/\.]+\.[^\/]+\//) {
# This is probably outside link.
# This is NG.
$msg .= "\t$url should be ../$url\n";
} else {
# This is local link, maybe.
if ($jafiles{"/ja/$_"}) {
# There is a translated file.
# This is NG.
s/\/[^\/]+$/\/$file$mark/;
$msg .= "\t$url should be /ja$_\n";
} else {
# There are no traslated files.
# This is OK, or a wrong link.
}
}
}
}
print "$jafile\n$msg" if ($msg);
}
sub wanted {
$jafiles{"/$File::Find::dir/$_"} = 1 if (-f && /\.html$/);
}
/ja/Changes/index.html
../MailingLists/ should be /MailingLists/
changes-1.5.html should be /Changes/changes-1.5.html
pkg-changes.html should be /Changes/pkg-changes.html
../Ports/vax should be /Ports/vax
../Security/advisory.html should be /Security/advisory.html
../Documentation/software/pkg-wildcards.html should be /Documentation/software/pkg-wildcards.html
../Misc/features.html should be /Misc/features.html
../Ports/luna68k/ should be /Ports/luna68k/
../gallery/devotionalia.html#scotgold should be /gallery/devotionalia.html#scotgold
../Documentation/software/pkg-growth.html should be /Documentation/software/pkg-growth.html
../Sites/cdroms.html#lehmanns should be /Sites/cdroms.html#lehmanns
../Hardware/cardbus.html should be /Hardware/cardbus.html
../Sites/cdroms.html should be /Sites/cdroms.html
../Sites/cdroms.html#plathome should be /Sites/cdroms.html#plathome
../Ports/sh3/ should be /Ports/sh3/
../Releases/formal-1.4/ should be /Releases/formal-1.4/
../Sites/cdroms.html#cheapbytes should be /Sites/cdroms.html#cheapbytes
../Ports/newsmips/ should be /Ports/newsmips/
../Documentation/elf.html should be /Documentation/elf.html
cvschanges/ should be /Changes/cvschanges/
../Ports/sun3/ should be /Ports/sun3/
../gallery/reports/usenix-1999.html should be /gallery/reports/usenix-1999.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/current/index.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/BSD-demon.gif should be /images/BSD-demon.gif
../Misc/send-pr.html should be /Documentation/Misc/send-pr.html
../Ports/index.html should be /Documentation/Ports/index.html
../../Sites/net.html should be /Sites/net.html
../MailingLists/index.html#current-users should be /Documentation/MailingLists/index.html#current-users
../MailingLists/index.html#source-changes should be /Documentation/MailingLists/index.html#source-changes
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Documentation/Misc/disclaimer.html
/ja/Documentation/index.html
../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../images/BSD-demon.gif should be /images/BSD-demon.gif
../Ports/alpha/faq.html should be /Ports/alpha/faq.html
../Ports/atari/faq.html should be /Ports/atari/faq.html
../Ports/hp300/faq.html should be /Ports/hp300/faq.html
../Ports/i386/faq.html should be /Ports/i386/faq.html
../Ports/macppc/faq.html should be /Ports/macppc/faq.html
../Ports/mvme68k/faq.html should be /Ports/mvme68k/faq.html
../Ports/next68k/faq.html should be /Ports/next68k/faq.html
../Ports/pc532/faq.html should be /Ports/pc532/faq.html
../Ports/pmax/faq.html should be /Ports/pmax/faq.html
../Ports/sparc/faq.html should be /Ports/sparc/faq.html
../Ports/sun3/faq.html should be /Ports/sun3/faq.html
misc/ should be /Documentation/misc/
network/wavelan.html should be /Documentation/network/wavelan.html
network/netboot/ should be /Documentation/network/netboot/
FrameMaker-HowTo.html should be /Documentation/FrameMaker-HowTo.html
elf.html should be /Documentation/elf.html
books.html should be /Documentation/books.html
../Library/Hardware/ should be /Library/Hardware/
research/ should be /Documentation/research/
bsd/ should be /Documentation/bsd/
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/kernel/index.html
converting-ethernet-drivers.html should be /Documentation/kernel/converting-ethernet-drivers.html
elf-notes.html should be /Documentation/kernel/elf-notes.html
../../MailingLists/index.html#current-users should be /MailingLists/index.html#current-users
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/kernel/programming.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/BSD-demon.jpg should be /images/BSD-demon.jpg
bus_dma.ps should be /Documentation/kernel/bus_dma.ps
converting-ethernet-drivers.html should be /Documentation/kernel/converting-ethernet-drivers.html
porting-freebsd-net.html should be /Documentation/kernel/porting-freebsd-net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Documentation should be /Documentation
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Documentation should be /Documentation
../../images/empty.gif should be /images/empty.gif
/ja/Documentation/kernel/uvm.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/BSD-demon.gif should be /images/BSD-demon.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
/ja/Documentation/kernel/vfork.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/BSD-demon.gif should be /images/BSD-demon.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/netbsd/wscons.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/BSD-demon.jpg should be /images/BSD-demon.jpg
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Documentation should be /Documentation
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Documentation should be /Documentation
../../images/empty.gif should be /images/empty.gif
../Misc/feedback.html should be /Documentation/Misc/feedback.html
../Misc/disclaimer.html should be /Documentation/Misc/disclaimer.html
/ja/Documentation/network/dhcp.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/network/ipv6/index.html
../../../Documentation/../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../../Documentation/../images/BSD-demon.jpg should be /images/BSD-demon.jpg
../../../Documentation/../images/NetBSD-banner.jpg should be /images/NetBSD-banner.jpg
../../../Documentation/../images/NetBSD-banner.jpg should be /images/NetBSD-banner.jpg
../../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/power-mgmt/index.html
../../images/BSD-demon.gif should be /images/BSD-demon.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/software/index.html
../../gallery/software.html should be /gallery/software.html
pkg-growth.html should be /Documentation/software/pkg-growth.html
compiling.html should be /Documentation/software/compiling.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Documentation/software/packages.html
../../Sites/net.html should be /Sites/net.html
/ja/JP/sites.html#FTP should be /JP/sites.html#FTP
../../Sites/net.html should be /Sites/net.html
../../Changes/pkg-changes.html should be /Changes/pkg-changes.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Documentation/Misc/disclaimer.html
/ja/Documentation/x/index.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Goals/index.html
system.html should be /Goals/system.html
redistribution.html should be /Goals/redistribution.html
interop.html should be /Goals/interop.html
standards.html should be /Goals/standards.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Goals/portability.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/ata.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/eisa.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/i2c.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/index.html
cardbus.html should be /Hardware/cardbus.html
../gallery/hardware.html should be /gallery/hardware.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/isa.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/mii.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/ofw.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/pci.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/pcmcia.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/pseudo-device.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/sbus.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/scsipi.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/tc.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/usb.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Hardware/vme.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Library/Hardware/Machines/Apple/index.html
../../../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../../../images/BSD-demon.gif should be /images/BSD-demon.gif
../../../../../www.apple.com/index.html should be ../../../../../../www.apple.com/index.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../www.macbsd.com/openmac/refs.html should be ../../../../../../www.macbsd.com/openmac/refs.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../devworld.apple.com/dev/techsupport/insidemac/Devices/Devices-2.html should be ../../../../../../devworld.apple.com/dev/techsupport/insidemac/Devices/Devices-2.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../devworld.apple.com/dev/qa/hw/hw-1.html should be ../../../../../../devworld.apple.com/dev/qa/hw/hw-1.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../www.faqs.org/faqs/by-newsgroup/comp/comp.sys.mac.hardware.misc.html should be ../../../../../../www.faqs.org/faqs/by-newsgroup/comp/comp.sys.mac.hardware.misc.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../socs.berkeley.edu/~schrier/mhz.html should be ../../../../../../socs.berkeley.edu/~schrier/mhz.html
../../../../images/greenball.gif should be /images/greenball.gif
../../../../../www.macintoshos.com/macintosh.museum/index.shtml should be ../../../../../../www.macintoshos.com/macintosh.museum/index.shtml
../index.html should be /Library/Hardware/Machines/index.html
../../../index.html should be /Library/index.html
../../../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../../index.html should be /Library/index.html
../../../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/about.html
../Goals/redistribution.html should be /Goals/redistribution.html
../Goals/interop.html should be /Goals/interop.html
../MailingLists/index.html should be /MailingLists/index.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/call-it-a-duck.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/feedback.html
../MailingLists/index.html should be /MailingLists/index.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/history.html
../images/bsdtimeline.gif should be /images/bsdtimeline.gif
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/pr-fields.html
../Gnats/index.html should be /Gnats/index.html
query-pr.html should be /Misc/query-pr.html
pr-hints.html should be /Misc/pr-hints.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/pr-states.html
../Gnats/index.html should be /Gnats/index.html
query-pr.html should be /Misc/query-pr.html
pr-hints.html should be /Misc/pr-hints.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/send-pr.html
../Gnats/index.html should be /Gnats/index.html
query-pr.html should be /Misc/query-pr.html
pr-hints.html should be /Misc/pr-hints.html
../Gnats/index.html should be /Gnats/index.html
query-pr.html should be /Misc/query-pr.html
pr-hints.html should be /Misc/pr-hints.html
../MailingLists/#netbsd-bugs should be /MailingLists/#netbsd-bugs
query-pr.html should be /Misc/query-pr.html
../Gnats/index.html should be /Gnats/index.html
query-pr.html should be /Misc/query-pr.html
pr-hints.html should be /Misc/pr-hints.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/Misc/y2k.html
../images/banner.gif should be /images/banner.gif
disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/briggs.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/cgd.html
../../images/people/cgd-surly.gif should be /images/people/cgd-surly.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/chuck.html
../../images/people/chuck.gif should be /images/people/chuck.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/gwr.html
../../images/people/gwr.gif should be /images/people/gwr.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/jdolecek.html
../../images/people/jd.gif should be /images/people/jd.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/jtc.html
../../images/people/jtc.gif should be /images/people/jtc.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/phil.html
../../images/people/phil.gif should be /images/people/phil.gif
../../Ports/pc532/index.html should be /Ports/pc532/index.html
../../images/machines/steelhead.gif should be /images/machines/steelhead.gif
../../Ports/pc532/faq.html#what-is-a-pc532 should be /Ports/pc532/faq.html#what-is-a-pc532
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/ragge.html
../../Ports/vax/index.html should be /Ports/vax/index.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/scottr.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/Pages/thorpej.html
../../images/people/thorpej.gif should be /images/people/thorpej.gif
../../Releases/formal-0.8/index.html should be /Releases/formal-0.8/index.html
../../Releases/formal-0.9/index.html should be /Releases/formal-0.9/index.html
../../Ports/hp300/index.html should be /Ports/hp300/index.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/board.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/core.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/index.html
../Misc/disclaimer.html should be /Misc/disclaimer.html
../images/NetBSD-people.gif should be /images/NetBSD-people.gif
CSRG-contrib.html should be /People/CSRG-contrib.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/port-maintainers.html
../Ports/amiga/index.html should be /Ports/amiga/index.html
../../www.rhein.de/~is/index.html should be ../../../www.rhein.de/~is/index.html
../../www.causality.com/~amb/index.html should be ../../../www.causality.com/~amb/index.html
../Ports/atari/index.html should be /Ports/atari/index.html
../Ports/bebox/index.html should be /Ports/bebox/index.html
../../www.cec.co.jp/usr/sakamoto/index.html should be ../../../www.cec.co.jp/usr/sakamoto/index.html
../Ports/hp300/index.html should be /Ports/hp300/index.html
../../www.fwi.uva.nl/~frank/index.html should be ../../../www.fwi.uva.nl/~frank/index.html
../Ports/mvme68k/index.html should be /Ports/mvme68k/index.html
../../www.mctavish.demon.co.uk/netbsd/index.html should be ../../../www.mctavish.demon.co.uk/netbsd/index.html
../Ports/newsmips/index.html should be /Ports/newsmips/index.html
../Ports/next68k/index.html should be /Ports/next68k/index.html
../Ports/ofppc/index.html should be /Ports/ofppc/index.html
../../www.tools.de/~ws/index.html should be ../../../www.tools.de/~ws/index.html
../Ports/pc532/index.html should be /Ports/pc532/index.html
../Ports/pmax/index.html should be /Ports/pmax/index.html
../Ports/sh3/index.html should be /Ports/sh3/index.html
../Ports/sparc64/index.html should be /Ports/sparc64/index.html
../Ports/sun3/index.html should be /Ports/sun3/index.html
../Ports/vax/index.html should be /Ports/vax/index.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/People/supporting-cast.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/alpha/index.html
../../images/logos/alphapowlogo35.gif should be /images/logos/alphapowlogo35.gif
../../Sites/net.html should be /Sites/net.html
../../Sites/cdroms.html#bob_nestor should be /Sites/cdroms.html#bob_nestor
../../Releases/formal-1.4/index.html should be /Releases/formal-1.4/index.html
news.html should be /Ports/alpha/news.html
faq.html should be /Ports/alpha/faq.html
../../MailingLists/index.html#port-alpha should be /MailingLists/index.html#port-alpha
models.html should be /Ports/alpha/models.html
history.html should be /Ports/alpha/history.html
netboot.html should be /Ports/alpha/netboot.html
development.html should be /Ports/alpha/development.html
../../Changes/changes-1.4.html#port-alpha should be /Changes/changes-1.4.html#port-alpha
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/dev_acorn.html
../../images/devices.gif should be /images/devices.gif
../../images/bar.gif should be /images/bar.gif
../../images/bar.gif should be /images/bar.gif
../../images/bar.gif should be /images/bar.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/faq.html
../../images/logos/armpowered.gif should be /images/logos/armpowered.gif
../../MailingLists/ should be /MailingLists/
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Documentation should be /Documentation
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Documentation should be /Documentation
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/history.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/daemon.gif should be /images/daemon.gif
../../images/bar.gif should be /images/bar.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/index.html
../../images/logos/armpowered.gif should be /images/logos/armpowered.gif
../../Releases/formal-1.4/ should be /Releases/formal-1.4/
../../MailingLists/ should be /MailingLists/
../../Changes/changes-1.4.html#port-arm32 should be /Changes/changes-1.4.html#port-arm32
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/news.html
../../Changes/cvschanges/#port-arm32 should be /Changes/cvschanges/#port-arm32
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/arm32/resources.html
../../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../../images/daemon.gif should be /images/daemon.gif
../../MailingLists/ should be /MailingLists/
../../images/bar.gif should be /images/bar.gif
../../images/bar.gif should be /images/bar.gif
../../images/bar.gif should be /images/bar.gif
../../images/bar.gif should be /images/bar.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/compat-pmax.html
../pmax/ should be /Ports/pmax/
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/faq.html
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/howto-develop.html
www@netbsd.org should be /Ports/hpcmips/www@netbsd.org
www@netbsd.org should be /Ports/hpcmips/www@netbsd.org
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/howto-use.html
install.txt should be /Ports/hpcmips/install.txt
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/index.html
../../MailingLists/#port-hpcmips should be /MailingLists/#port-hpcmips
../../Sites/net.html should be /Sites/net.html
./keymap.txt should be /Ports/hpcmips/./keymap.txt
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/news.html
../../Changes/cvschanges/#port-hpcmips should be /Changes/cvschanges/#port-hpcmips
../../MailingLists/#port-hpcmips should be /MailingLists/#port-hpcmips
../../MailingLists/#port-hpcmips should be /MailingLists/#port-hpcmips
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/pocketv6.html
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/hpcmips/todo.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/i386/hardware.html
../../Hardware/cardbus.html should be /Hardware/cardbus.html
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/i386/history.html
../../Releases/formal-0.8/ should be /Releases/formal-0.8/
../../Releases/formal-0.9/ should be /Releases/formal-0.9/
../../Releases/formal-1.0/ should be /Releases/formal-1.0/
../../Releases/formal-1.1/ should be /Releases/formal-1.1/
../../Releases/formal-1.2/ should be /Releases/formal-1.2/
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/i386/index.html
../../images/logos/intel.gif should be /images/logos/intel.gif
../../images/logos/amd.gif should be /images/logos/amd.gif
../../images/logos/cyrix.gif should be /images/logos/cyrix.gif
../../Releases/formal-0.8/index.html should be /Releases/formal-0.8/index.html
news.html#December 23, 1998 should be /Ports/i386/news.html#December 23, 1998
news.html#December 10, 1998 should be /Ports/i386/news.html#December 10, 1998
news.html#November 18, 1998 should be /Ports/i386/news.html#November 18, 1998
news.html#November 3, 1998 should be /Ports/i386/news.html#November 3, 1998
news.html#October 12, 1998 should be /Ports/i386/news.html#October 12, 1998
news.html#September 26, 1998 should be /Ports/i386/news.html#September 26, 1998
../../Ports/i386/faq.html should be /Ports/i386/faq.html
../../MailingLists/index.html#port-i386 should be /MailingLists/index.html#port-i386
../../Changes/changes-1.4.html#port-i386 should be /Changes/changes-1.4.html#port-i386
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/index.html
../Sites/index.html should be /Sites/index.html
amiga/index.html should be /Ports/amiga/index.html
atari/index.html should be /Ports/atari/index.html
bebox/index.html should be /Ports/bebox/index.html
hp300/index.html should be /Ports/hp300/index.html
mvme68k/index.html should be /Ports/mvme68k/index.html
newsmips/index.html should be /Ports/newsmips/index.html
next68k/index.html should be /Ports/next68k/index.html
ofppc/index.html should be /Ports/ofppc/index.html
pc532/index.html should be /Ports/pc532/index.html
pmax/index.html should be /Ports/pmax/index.html
sh3/index.html should be /Ports/sh3/index.html
sparc64/index.html should be /Ports/sparc64/index.html
sun3/index.html should be /Ports/sun3/index.html
vax/index.html should be /Ports/vax/index.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/booter-manual/BooterManual.html
icon.GIF should be /Ports/mac68k/booter-manual/icon.GIF
icon2.GIF should be /Ports/mac68k/booter-manual/icon2.GIF
Booting.GIF should be /Ports/mac68k/booter-manual/Booting.GIF
Serial.GIF should be /Ports/mac68k/booter-manual/Serial.GIF
Monitors.GIF should be /Ports/mac68k/booter-manual/Monitors.GIF
Preferences.GIF should be /Ports/mac68k/booter-manual/Preferences.GIF
ChangeLog.txt should be /Ports/mac68k/booter-manual/ChangeLog.txt
TO-DO.txt should be /Ports/mac68k/booter-manual/TO-DO.txt
/ja/Ports/mac68k/curr_info.html
meta-faq/meta-faq.html should be /Ports/mac68k/meta-faq/meta-faq.html
../../Sites/index.html should be /Sites/index.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/faq/faq-3.html
../meta-faq/meta-faq.html should be /Ports/mac68k/meta-faq/meta-faq.html
../machine-status/machine-status.html should be /Ports/mac68k/machine-status/machine-status.html
/ja/Ports/mac68k/faq/faq-5.html
../meta-faq/meta-faq-5.html should be /Ports/mac68k/meta-faq/meta-faq-5.html
/ja/Ports/mac68k/faq/faq-6.html
../machine-status/machine-status.html should be /Ports/mac68k/machine-status/machine-status.html
../machine-status/machine-status.html should be /Ports/mac68k/machine-status/machine-status.html
/ja/Ports/mac68k/faq/faq-7.html
../meta-faq/meta-faq.html should be /Ports/mac68k/meta-faq/meta-faq.html
../meta-faq/meta-faq-5.html should be /Ports/mac68k/meta-faq/meta-faq-5.html
/ja/Ports/mac68k/hardware.html
../../MailingLists/index.html#port-mac68k should be /MailingLists/index.html#port-mac68k
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/history.html
../../Releases/formal-1.2/index.html should be /Releases/formal-1.2/index.html
../../../www.alt.net/~grantham/index.html should be ../../../../www.alt.net/~grantham/index.html
../../../tofu.alt.net/~lk/index.html should be ../../../../tofu.alt.net/~lk/index.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/index.html
meta-faq/meta-faq.html should be /Ports/mac68k/meta-faq/meta-faq.html
../../MailingLists/index.html#port-mac68k should be /MailingLists/index.html#port-mac68k
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../Changes/changes-1.4.html#port-mac68k should be /Changes/changes-1.4.html#port-mac68k
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/info/info-2.html
../machine-status/ should be /Ports/mac68k/machine-status/
/ja/Ports/mac68k/info/info-4.html
../../howto/video.html should be /Ports/howto/video.html
/ja/Ports/mac68k/news.html
../../Changes/cvschanges/index.html#port-mac68k should be /Changes/cvschanges/index.html#port-mac68k
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/mac68k/todo.html
../../../www.macbsd.com/macbsd/howto/cc-HOWTO should be ../../../../www.macbsd.com/macbsd/howto/cc-HOWTO
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/macppc/index.html
../../images/logos/macppc.jpg should be /images/logos/macppc.jpg
../../MailingLists/index.html#port-macppc should be /MailingLists/index.html#port-macppc
../../JP/ml.html#port-powerpc-ja should be /JP/ml.html#port-powerpc-ja
../../Changes/changes-1.4.html#port-macppc should be /Changes/changes-1.4.html#port-macppc
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/sparc/index.html
faq.html should be /Ports/sparc/faq.html
../../Changes/changes-1.4.html#port-sparc should be /Changes/changes-1.4.html#port-sparc
../sparc64/index.html should be /Ports/sparc64/index.html
faq.html should be /Ports/sparc/faq.html
../../MailingLists/index.html#port-sparc should be /MailingLists/index.html#port-sparc
../../Changes/changes-1.4.html#port-sparc should be /Changes/changes-1.4.html#port-sparc
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Ports/x68k/index.html
../../Misc/disclaimer.html should be /Misc/disclaimer.html
../../MailingLists/index.html#port-x68k should be /MailingLists/index.html#port-x68k
../../MailingLists/index.html#port-m68k should be /MailingLists/index.html#port-m68k
../../Changes/changes-1.4.html#port-x68k should be /Changes/changes-1.4.html#port-x68k
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/current.html
../Misc/query-pr.html should be /Misc/query-pr.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/formal-1.3/index.html
../../Ports/alpha/release-1.3/index.html should be /Ports/alpha/release-1.3/index.html
amiga.html should be /Releases/formal-1.3/amiga.html
hp300.html should be /Releases/formal-1.3/hp300.html
i386.html should be /Releases/formal-1.3/i386.html
sun3.html should be /Releases/formal-1.3/sun3.html
sun3x/index.html should be /Releases/formal-1.3/sun3x/index.html
../../Changes/changes-1.3.html should be /Changes/changes-1.3.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/formal-1.3/mac68k.html
../../../www.macbsd.com/macbsd/macbsd-docs/ethernet.html should be ../../../../www.macbsd.com/macbsd/macbsd-docs/ethernet.html
../../../www.macbsd.com/macbsd/macbsd-docs/machine-status should be ../../../../www.macbsd.com/macbsd/macbsd-docs/machine-status
../../../www.macbsd.com/macbsd/macbsd-docs/machine-status should be ../../../../www.macbsd.com/macbsd/macbsd-docs/machine-status
../../../www.mklinux.apple.com/index.html should be ../../../../www.mklinux.apple.com/index.html
../../../www.tools.de/~ws/NetBSD/powerpc.html should be ../../../../www.tools.de/~ws/NetBSD/powerpc.html
../../Ports/mac68k/meta-faq/index.html should be /Ports/mac68k/meta-faq/index.html
../../../www.macbsd.com/macbsd/macbsd-docs/machine-status/index.html should be ../../../../www.macbsd.com/macbsd/macbsd-docs/machine-status/index.html
../../MailingLists/index.html should be /MailingLists/index.html
../../images/envelope-large.gif should be /images/envelope-large.gif
../../MailingLists/index.html#port-mac68k should be /MailingLists/index.html#port-mac68k
../../MailingLists/index.html should be /MailingLists/index.html
../../Sites/index.html should be /Sites/index.html
../../images/sites.gif should be /images/sites.gif
../../Sites/cdroms.html should be /Sites/cdroms.html
../../Sites/net.html should be /Sites/net.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/formal.html
formal-1.4/index.html should be /Releases/formal-1.4/index.html
formal-1.2/index.html should be /Releases/formal-1.2/index.html
formal-1.1/index.html should be /Releases/formal-1.1/index.html
formal-1.0/index.html should be /Releases/formal-1.0/index.html
formal-0.9/index.html should be /Releases/formal-0.9/index.html
formal-0.8/index.html should be /Releases/formal-0.8/index.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/index.html
formal-1.4/index.html should be /Releases/formal-1.4/index.html
../Sites/cdroms.html should be /Sites/cdroms.html
../Sites/net.html should be /Sites/net.html
../Sites/cdroms.html should be /Sites/cdroms.html
../Sites/net.html should be /Sites/net.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/release-map.html
../images/release-graph.gif should be /images/release-graph.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Releases/tracking-current.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/Security/index.html
../MailingLists/index.html#tech-security should be /MailingLists/index.html#tech-security
patches-1.3.html should be /Security/patches-1.3.html
patches-1.3.1.html should be /Security/patches-1.3.1.html
patches-1.3.2.html should be /Security/patches-1.3.2.html
patches-1.3.3.html should be /Security/patches-1.3.3.html
advisory.html should be /Security/advisory.html
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/contrib/donations.html
org/ should be /contrib/org/
../Ports/sun3/ should be /Ports/sun3/
../Ports/pc532/ should be /Ports/pc532/
../Ports/sun3/ should be /Ports/sun3/
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/contrib/hardware.html
../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../images/BSD-demon.gif should be /images/BSD-demon.gif
org/help.html should be /contrib/org/help.html
../Ports/sparc64/ should be /Ports/sparc64/
../Ports/mvme68k/index.html should be /Ports/mvme68k/index.html
../Ports/pmax/index.html should be /Ports/pmax/index.html
../Ports/pmax/index.html should be /Ports/pmax/index.html
../Ports/sun3/index.html should be /Ports/sun3/index.html
../Ports/pmax/ should be /Ports/pmax/
../Ports/pmax/ should be /Ports/pmax/
../Ports/amiga/index.html should be /Ports/amiga/index.html
../Ports/pmax/index.html should be /Ports/pmax/index.html
../Ports/sun3/index.html should be /Ports/sun3/index.html
../Ports/sun3/ should be /Ports/sun3/
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/contrib/index.html
../Misc/daemon-copy.html should be /Misc/daemon-copy.html
../images/BSD-demon.gif should be /images/BSD-demon.gif
org/ should be /contrib/org/
org/help.html should be /contrib/org/help.html
howto.html should be /contrib/howto.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/PR.html
../MailingLists/index.html#netbsd-bugs should be /MailingLists/index.html#netbsd-bugs
../Gnats/index.html should be /Gnats/index.html
../Gnats/index.html should be /Gnats/index.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/cvs-repos/index.html
cvs-faq.txt should be /developers/cvs-repos/cvs-faq.txt
cvs_intro.html should be /developers/cvs-repos/cvs_intro.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/cvs-repos/modules.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/cvs-repos/moving-files.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/gnats-admin.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
disclaimer.html should be /developers/disclaimer.html
/ja/developers/index.html
features/index.html should be /developers/features/index.html
3rdparty/index.html should be /developers/3rdparty/index.html
htdocs.html should be /developers/htdocs.html
kernel-profiling.html should be /developers/kernel-profiling.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/new-port.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/pkg-import.html
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../images/empty.gif should be /images/empty.gif
../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/project-plans/index.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/releng/build-release.html
../features/index.html should be /developers/features/index.html
rsnap should be /developers/releng/rsnap
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/releng/howto-pullup.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/releng/index.html
pullups.html should be /developers/releng/pullups.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/releng/release-process.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/developers/releng/release-schedule-1.4.html
perry@netbsd.org should be /developers/releng/perry@netbsd.org
pullups.html should be /developers/releng/pullups.html
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../images/NetBSD-banner.gif should be /images/NetBSD-banner.gif
../../images/empty.gif should be /images/empty.gif
../../Misc/disclaimer.html should be /Misc/disclaimer.html
/ja/index.html
images/NetBSD.jpg should be /images/NetBSD.jpg
images/NetBSD-smaller.jpg should be /images/NetBSD-smaller.jpg
Goals/system.html should be /Goals/system.html
Misc/features.html should be /Misc/features.html
Releases/formal-1.4/ should be /Releases/formal-1.4/
MailingLists/ should be /MailingLists/
gallery/consultants.html should be /gallery/consultants.html
gallery/groups.html should be /gallery/groups.html
gallery/ should be /gallery/
gallery/events.html should be /gallery/events.html
Misc/search.html should be /Misc/search.html
gallery/sites.html should be /gallery/sites.html
images/logos/sitedrivenby.jpg should be /images/logos/sitedrivenby.jpg
Ports/amiga/ should be /Ports/amiga/
Ports/atari/ should be /Ports/atari/
Ports/bebox/ should be /Ports/bebox/
Ports/hp300/ should be /Ports/hp300/
Ports/luna68k/ should be /Ports/luna68k/
Ports/mvme68k/ should be /Ports/mvme68k/
Ports/news68k/ should be /Ports/news68k/
Ports/newsmips/ should be /Ports/newsmips/
Ports/next68k/ should be /Ports/next68k/
Ports/ofppc/ should be /Ports/ofppc/
Ports/pc532/ should be /Ports/pc532/
Ports/pmax/ should be /Ports/pmax/
Ports/sh3/ should be /Ports/sh3/
Ports/sparc64/ should be /Ports/sparc64/
Ports/sun3/ should be /Ports/sun3/
Ports/vax/ should be /Ports/vax/
Misc/disclaimer.html should be /Misc/disclaimer.html