Follow Nik's new XML framework.
This commit is contained in:
parent
f9aa781f8c
commit
d7c5844b64
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=10220
5 changed files with 1146 additions and 0 deletions
95
ja/includes.xsl
Normal file
95
ja/includes.xsl
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="EUC-JP" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
<!-- Original revision: 1.1 -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:variable name="i.daemon">
|
||||
<img src="{$base}/gifs/daemon.gif" alt="" align="left" width="80" height="76"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="i.new">
|
||||
<img src="{$base}/gifs/new.gif" alt="[New!]" width="28" height="11"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="copyright" select="'Copyright (c) 1995-2001 the FreeBSD Project. All rights reserved.'"/>
|
||||
|
||||
<xsl:variable name="email" select="'freebsd-questions'"/>
|
||||
<xsl:variable name="author">
|
||||
<a>
|
||||
<xsl:attribute name="href">
|
||||
<xsl:value-of select="concat($base, '/mailto.html')"/>
|
||||
</xsl:attribute>
|
||||
<xsl:value-of select="$email"/>@FreeBSD.org</a><br/><xsl:value-of select="$copyright"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="home">
|
||||
<a href="{$base}/index.html"><img src="{$base}/gifs/home.gif" alt="FreeBSD Home Page" border="0" align="right" width="101" height="33"/></a>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="header1">
|
||||
<head>
|
||||
<title><xsl:value-of select="$title"/></title>
|
||||
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=EUC-JP"/>
|
||||
<meta name="MSSmartTagsPreventParsing" content="TRUE"/>
|
||||
</head>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:attribute-set name="att.body">
|
||||
<xsl:attribute name="text">#000000</xsl:attribute>
|
||||
<xsl:attribute name="bgcolor">#FFFFFF</xsl:attribute>
|
||||
<xsl:attribute name="alink">#FFCC33</xsl:attribute>
|
||||
</xsl:attribute-set>
|
||||
|
||||
<xsl:variable name="header2">
|
||||
<img src="{$base}/../gifs/bar.gif" alt="メニュー" width="565"
|
||||
height="33" border="0" usemap="#bar"/>
|
||||
|
||||
<h1 align="left"><font color="#660000"><xsl:value-of select="$title"/></font></h1>
|
||||
|
||||
<br clear="all"/>
|
||||
|
||||
<map name="bar">
|
||||
<area shape="rect" coords="1,1,111,31"
|
||||
href="{$base}/index.html" alt="トップページ"/>
|
||||
<area shape="rect" coords="112,11,196,31"
|
||||
href="{$base}/ports/index.html" alt="アプリケーション"/>
|
||||
<area shape="rect" coords="196,12,257,33"
|
||||
href="{$base}/support.html" alt="サポート"/>
|
||||
<area shape="rect" coords="256,12,365,33"
|
||||
href="{$base}/docs.html" alt="ドキュメント"/>
|
||||
<area shape="rect" coords="366,13,424,32"
|
||||
href="{$base}/commercial/commercial.html" alt="ベンダ"/>
|
||||
<area shape="rect" coords="425,16,475,32"
|
||||
href="{$base}/search/search.html" alt="検索"/>
|
||||
<area shape="rect" coords="477,16,516,33"
|
||||
href="{$base}/search/index-site.html" alt="索引"/>
|
||||
<area shape="rect" coords="516,15,562,33"
|
||||
href="{$base}/index.html" alt="トップページ"/>
|
||||
<area shape="rect" coords="0,0,564,32"
|
||||
href="{$base}/index.html" alt="トップページ"/>
|
||||
</map>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="footer">
|
||||
<hr noshade="noshade"/>
|
||||
<address><xsl:copy-of select="$author"/><br/>
|
||||
<xsl:copy-of select="$date"/><br/>
|
||||
(日本語訳に関するお問い合わせは
|
||||
<a href="mailto:doc-jp@jp.FreeBSD.org">doc-jp@jp.FreeBSD.org</a>
|
||||
までお願いします)
|
||||
</address>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="rel.current" select="4.3"/>
|
||||
<xsl:variable name="u.rel.notes">
|
||||
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/notes.html</xsl:variable>
|
||||
|
||||
<xsl:variable name="u.rel.announce">
|
||||
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/announce.html</xsl:variable>
|
||||
<xsl:variable name="u.rel.errata">
|
||||
<xsl:value-of select="$base"/>/releases/<xsl:value-of select="$rel.current"/>R/errata.html</xsl:variable>
|
||||
|
||||
</xsl:stylesheet>
|
437
ja/index.xsl
Normal file
437
ja/index.xsl
Normal file
|
@ -0,0 +1,437 @@
|
|||
<?xml version="1.0" encoding="EUC-JP" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
<!-- Original revision: 1.1 -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:import href="includes.xsl"/>
|
||||
<xsl:import href="news/includes.xsl"/>
|
||||
|
||||
<xsl:variable name="base" select="'.'"/>
|
||||
<xsl:variable name="date" select="'$FreeBSD$'"/>
|
||||
<xsl:variable name="title" select="'The FreeBSD Project'"/>
|
||||
|
||||
<xsl:output type="html" encoding="EUC-JP"/>
|
||||
|
||||
<xsl:template match="/">
|
||||
<html>
|
||||
<head>
|
||||
<title><xsl:value-of select="$title"/></title>
|
||||
|
||||
<meta name="description" content="The FreeBSD Project"/>
|
||||
|
||||
<meta name="keywords" content="FreeBSD, BSD, UNIX, Support, Gallery,
|
||||
Release, Application, Software, Handbook, FAQ, Tutorials, Bugs,
|
||||
CVS, CVSup, News, Commercial Vendors, homepage, CTM, Unix"/>
|
||||
</head>
|
||||
|
||||
<body bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#840084"
|
||||
alink="#0000FF">
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="0">
|
||||
<tr>
|
||||
<td><a href="http://www.FreeBSD.org/index.html">
|
||||
<img src="../gifs/freebsd_1.gif" height="94" width="306"
|
||||
alt="FreeBSD: このパワーをあなたのために" border="0"/></a></td>
|
||||
|
||||
<td align="right" valign="bottom" width="300">
|
||||
<form action="http://www.FreeBSD.org/cgi/mirror.cgi"
|
||||
method="GET">
|
||||
|
||||
<br/>
|
||||
|
||||
<font color="#990000"><b>お近くのサーバをお選びください:</b></font>
|
||||
|
||||
<br/>
|
||||
|
||||
<select name="goto">
|
||||
<!-- Only list TRUE mirrrors here! Native language pages
|
||||
which are not mirrored should be listed in
|
||||
support.sgml. -->
|
||||
|
||||
<option value="http://www.jp.FreeBSD.org/www.FreeBSD.org/">6Bone(IPv6)</option>
|
||||
<option value="http://www.au.FreeBSD.org/">オーストラリア/1</option>
|
||||
<option value="http://www.br.FreeBSD.org/www.freebsd.org/">ブラジル/1</option>
|
||||
<option value="http://www2.br.FreeBSD.org/www.freebsd.org/">ブラジル/2</option>
|
||||
<option value="http://www3.br.FreeBSD.org/">ブラジル/3</option>
|
||||
<option value="http://www.bg.FreeBSD.org/">ブルガリア</option>
|
||||
<option value="http://www.ca.FreeBSD.org/">カナダ/1</option>
|
||||
<option value="http://www.cn.FreeBSD.org/">中国</option>
|
||||
<option value="http://www.cz.FreeBSD.org/">チェコ</option>
|
||||
<option value="http://www.dk.FreeBSD.org/">デンマーク</option>
|
||||
<option value="http://www.ee.FreeBSD.org/">エストニア</option>
|
||||
<option value="http://www.fi.FreeBSD.org/">フィンランド</option>
|
||||
<option value="http://www.fr.FreeBSD.org/">フランス</option>
|
||||
<option value="http://www.de.FreeBSD.org/">ドイツ/1</option>
|
||||
<option value="http://www1.de.FreeBSD.org/">ドイツ/2</option>
|
||||
<option value="http://www2.de.FreeBSD.org/">ドイツ/3</option>
|
||||
<option value="http://www.gr.FreeBSD.org/">ギリシア</option>
|
||||
<option value="http://www.hu.FreeBSD.org/">ハンガリー</option>
|
||||
<option value="http://www.ie.FreeBSD.org/">アイルランド</option>
|
||||
<option value="http://www.it.FreeBSD.org/">イタリア/1</option>
|
||||
<option value="http://www.gufi.org/mirrors/www.freebsd.org/data/">イタリア/2</option>
|
||||
<option value="http://www.jp.FreeBSD.org/www.FreeBSD.org/">日本</option>
|
||||
<option value="http://www.kr.FreeBSD.org/">韓国</option>
|
||||
<option value="http://www2.kr.FreeBSD.org/">韓国/2</option>
|
||||
<option value="http://www.lv.FreeBSD.org/">ラトビア</option>
|
||||
<option value="http://www.nl.FreeBSD.org/">オランダ</option>
|
||||
<option value="http://www2.nl.FreeBSD.org/">オランダ/2</option>
|
||||
<option value="http://www.nz.FreeBSD.org/">ニュージーランド</option>
|
||||
<option value="http://www.no.FreeBSD.org/">ノルウェー</option>
|
||||
<option value="http://www.pl.FreeBSD.org/">ポーランド/1</option>
|
||||
<option value="http://www2.pl.FreeBSD.org/">ポーランド/2</option>
|
||||
<option value="http://www.pt.FreeBSD.org/">ポルトガル/1</option>
|
||||
<option value="http://www2.pt.FreeBSD.org/">ポルトガル/2</option>
|
||||
<option value="http://www.ro.FreeBSD.org/">ルーマニア</option>
|
||||
<option value="http://www.ru.FreeBSD.org/">ロシア/1</option>
|
||||
<option value="http://www2.ru.FreeBSD.org/">ロシア/2</option>
|
||||
<option value="http://www3.ru.FreeBSD.org/">ロシア/3</option>
|
||||
<option value="http://www4.ru.FreeBSD.org/">ロシア/4</option>
|
||||
<option value="http://www.sg.FreeBSD.org/">シンガポール</option>
|
||||
<option value="http://www.sk.FreeBSD.org/">スロバキア</option>
|
||||
<option value="http://www.si.FreeBSD.org/">スロベニア</option>
|
||||
<option value="http://www.es.FreeBSD.org/">スペイン</option>
|
||||
<option value="http://www.za.FreeBSD.org/">南アフリカ/1</option>
|
||||
<option value="http://www2.za.FreeBSD.org/">南アフリカ/2</option>
|
||||
<option value="http://www.se.FreeBSD.org/">スウェーデン</option>
|
||||
<option value="http://www.ch.FreeBSD.org/">スイス</option>
|
||||
<option value="http://www.tw.FreeBSD.org/www.freebsd.org/data/">台湾</option>
|
||||
<option value="http://www.tr.FreeBSD.org/">トルコ</option>
|
||||
<option value="http://www.enderunix.org/freebsd/">トルコ/2</option>
|
||||
<option value="http://www.ua.FreeBSD.org/">ウクライナ/1</option>
|
||||
<option value="http://www2.ua.FreeBSD.org/">ウクライナ/2</option>
|
||||
<option value="http://www4.ua.FreeBSD.org/">ウクライナ/クリミア</option>
|
||||
<option value="http://www.uk.FreeBSD.org/">イギリス/1</option>
|
||||
<option value="http://www2.uk.FreeBSD.org/">イギリス/2</option>
|
||||
<option value="http://www3.uk.FreeBSD.org/">イギリス/3</option>
|
||||
<option value="http://www.FreeBSD.org/">アメリカ/カリフォルニア</option>
|
||||
</select>
|
||||
|
||||
<input type="submit" value=" Go "/>
|
||||
|
||||
<br/>
|
||||
<font color="#990000"><b>言語:</b></font>
|
||||
<a href="../">英語</a>,
|
||||
<a href="../es/index.html">スペイン語</a>,
|
||||
<a href="../ru/index.html">ロシア語</a>,
|
||||
<a href="support.html#web">その他</a>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<br/>
|
||||
|
||||
<!-- Security alert -->
|
||||
<table width="100%" bgcolor="#990000"
|
||||
cellpadding="4" cellspacing="0" border="0">
|
||||
<tr>
|
||||
<td>
|
||||
<h2 align="center">
|
||||
<font color="#FFFFFF">重要</font></h2>
|
||||
<p><font color="#FFFFFF">
|
||||
2001 年 7 月 23 日以前の FreeBSD には,
|
||||
リモートからの影響を受けるセキュリティ上の問題を
|
||||
含む telnet デーモンが含まれています.
|
||||
詳細は
|
||||
<a href="ftp://ftp.FreeBSD.org/pub/FreeBSD/CERT/advisories/FreeBSD-SA-01:49.telnetd.v1.1.asc">セキュリティ勧告</a>
|
||||
をご覧下さい.</font></p>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<hr size="1" noshade="noshade"/>
|
||||
|
||||
<!-- Main layout table -->
|
||||
<table border="0" cellspacing="0" cellpadding="2">
|
||||
<tr>
|
||||
<!-- Red strip down left hand of sidebar -->
|
||||
<td bgcolor="#990000"> </td>
|
||||
|
||||
<td bgcolor="#ffcc66"> </td>
|
||||
|
||||
<td></td>
|
||||
|
||||
<!-- Main body column -->
|
||||
|
||||
<td rowspan="2" align="left" valign="top">
|
||||
<!-- News / release info table -->
|
||||
<table border="0" cellspacing="0" cellpadding="1"
|
||||
bgcolor="#000000" width="100%">
|
||||
<tr>
|
||||
<td>
|
||||
<table cellpadding="4" cellspacing="0" border="0"
|
||||
bgcolor="#ffcc66" width="100%">
|
||||
<tr>
|
||||
<td valign="top"><b>最新ニュース</b><br/>
|
||||
<font size="-1">
|
||||
<!-- Code to pull in the most recent four news
|
||||
items -->
|
||||
<xsl:for-each select="descendant::event[position() <= 4]">
|
||||
>> <a>
|
||||
<xsl:attribute name="href">
|
||||
news/newsflash.html#<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
<xsl:choose>
|
||||
<xsl:when test="count(child::title)">
|
||||
<xsl:value-of select="title"/><br/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="p"/><br/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</a>
|
||||
</xsl:for-each>
|
||||
</font>
|
||||
</td>
|
||||
|
||||
<td valign="top"><b>最新リリース:
|
||||
<xsl:value-of select="$rel.current"/></b><br/>
|
||||
|
||||
<small>>> <a href="{$u.rel.announce}">アナウンス</a><br/>
|
||||
>> <a href="{$base}/doc/ja_JP.eucJP/books/handbook/install.html">インストールガイド</a><br/>
|
||||
>> <a href="{$u.rel.notes}">リリースノート</a><br/>
|
||||
>> <a href="{$u.rel.errata}">Errata</a></small></td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2><font color="#990000">FreeBSD とは?</font></h2>
|
||||
|
||||
<p>FreeBSD は Intel 互換機 (x86), DEC Alpha, PC-98
|
||||
アーキテクチャ用の先進的な BSD UNIX
|
||||
オペレーティングシステムであり,
|
||||
<a href="{$base}/handbook/staff.html">多くの人たち</a> によって
|
||||
によって保守・開発されています.
|
||||
その他の<a href="{$base}/platforms/index.html">プラットフォーム
|
||||
</a> は現在開発中です.</p>
|
||||
|
||||
<h2><font color="#990000">最先端の機能</font></h2>
|
||||
|
||||
<p>FreeBSD は (市販の最良のものも含めて) 他のオペレーティング
|
||||
システムに未だに欠けている最先端のネットワーク, パフォーマンス,
|
||||
セキュリティ, 互換性といった <a href="{$base}/features.html">
|
||||
機能</a> を今, 提供しています.</p>
|
||||
|
||||
<h2><font color="#990000">強力なインターネットサポート</font></h2>
|
||||
|
||||
<p>FreeBSD は理想的な <a href="{$base}/internet.html">
|
||||
インターネットやイントラネット</a> サーバになります. 負荷が
|
||||
極めて高くなった状態でさえ強固なネットワークサービスを提供し,
|
||||
ユーザプロセスが同時に何百, 何千になっても良好な反応時間を
|
||||
維持するようにメモリを効率的に利用します.
|
||||
FreeBSD を利用したアプリケーションやサービスの例を
|
||||
載せていますので, ぜひ我々の
|
||||
<a href="gallery/gallery.html">ギャラリー</a>
|
||||
を訪れてみてください.</p>
|
||||
|
||||
<h2><font color="#990000">利用可能な, さまざまなアプリケーション
|
||||
</font></h2>
|
||||
|
||||
<p>FreeBSD の品質と今日の低価格で高速な PC ハードウェアが
|
||||
結びつくことによって, FreeBSD は市販の UNIX ワークステーションと
|
||||
比較してとても経済的な選択肢となります.
|
||||
非常に数多くのデスクトップ用やサーバ用の
|
||||
<a href="{$base}/applications.html">アプリケーション</a>
|
||||
が整っています.</p>
|
||||
|
||||
<h2><font color="#990000">簡単インストール</font></h2>
|
||||
|
||||
<p>FreeBSD は CD-ROM やフロッピーディスク, 磁気テープ, MS-DOS
|
||||
パーティションなどのさまざまなメディアからインストールすることが
|
||||
できます. ネットワークに接続しているなら, anonymous FTP や NFS
|
||||
を用いて <i>直接</i> インストールすることもできます.
|
||||
必要なのは 1.44MB の起動フロッピー 2 枚と,
|
||||
<a href="{$base}/handbook/install.html">これらの方法</a>
|
||||
だけです.</p>
|
||||
|
||||
<h2><font color="#990000">FreeBSD は<i>無料</i>です</font></h2>
|
||||
|
||||
<a href="copyright/daemon.html"><img src="../gifs/dae_up3.gif"
|
||||
alt=""
|
||||
height="81" width="72"
|
||||
align="right"
|
||||
border="0"/></a>
|
||||
|
||||
<p>このような特色を持ったオペレーティングシステムは高い値段で
|
||||
販売されていると思われるかもしれませんが, FreeBSD
|
||||
は <a href="{$base}/copyright/index.html">無料</a> で入手でき,
|
||||
すべてのソースコードが付属しています.
|
||||
試してみようかな, という方は
|
||||
<a href="{$base}/doc/ja_JP.eucJP/books/handbook/mirrors.html">
|
||||
より詳しい情報</a> を
|
||||
ご覧ください.</p>
|
||||
|
||||
<h2><font color="#990000">FreeBSD への貢献</font></h2>
|
||||
|
||||
<p>FreeBSD に貢献するのは簡単です.
|
||||
あなたが FreeBSD の中で改善できそうな部分を探し,
|
||||
その部分に変更を (注意深く, わかりやすく) 加えて
|
||||
FreeBSD プロジェクトに届けるだけです.
|
||||
その際には send-pr を使うか,
|
||||
もし知っているなら, コミッターに直接連絡しても OK です.
|
||||
変更は, FreeBSD の文書に対するものでも, FreeBSD
|
||||
ソースコードに対するものでも構いません.
|
||||
詳しくは, FreeBSD ハンドブックの
|
||||
<a href="http://www.FreeBSD.org/ja/handbook/contrib.html">
|
||||
FreeBSD への貢献</a>
|
||||
(<a href="http://www.FreeBSD.org/handbook/contrib.html">原文</a>)
|
||||
というセクションをご覧ください.</p>
|
||||
|
||||
<br/>
|
||||
|
||||
<table border="3" cellspacing="0" cellpadding="5">
|
||||
<tr>
|
||||
<td>FreeBSD についてもっとよく知りたくなったら,
|
||||
FreeBSD に関連する
|
||||
<a href="{$base}/publish.html">出版物</a> や
|
||||
<a href="news/press.html">FreeBSD 関係の報道</a> の
|
||||
ギャラリーを訪ねたり, このウェブサイトを
|
||||
見てみてください!</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<!-- New row for the strip of links that normally runs down the
|
||||
left hand side. This is set up this way so that if you are
|
||||
viewing the site in a browser that does not support tables
|
||||
the main body copy will appear first, with the list of links
|
||||
at the end. It's not perfect, but it works. -->
|
||||
<tr>
|
||||
<td bgcolor="#990000"> </td>
|
||||
|
||||
<td align="left" valign="top" bgcolor="#ffcc66">
|
||||
<p><big><font color="#990000"><b>ニュース</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="news/newsflash.html">アナウンス</a><br/>
|
||||
  <a href="news/press.html">報道</a><br/>
|
||||
  <a href="news/index.html">さらに ...</a>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>ソフトウェア</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="{$base}/doc/ja_JP.eucjP/books/handbook/mirrors.html">FreeBSD を手に入れる</a><br/>
|
||||
  <a href="releases/index.html">リリース情報</a><br/>
|
||||
  <a href="{$base}/ports/index.html">Ports Collection</a><br/>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>ドキュメント</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="projects/newbies.html">初心者のために</a><br/>
|
||||
  <a href="{$base}/handbook/index.html">ハンドブック</a><br/>
|
||||
  <a href="{$base}/FAQ/index.html">FAQ</a><br/>
|
||||
  <a href="{$base}/docproj/index.html">Doc. Project</a><br/>
|
||||
  <a href="docs.html">さらに...</a><br/>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>サポート</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="{$base}/support.html#mailing-list">メーリングリスト</a><br/>
|
||||
  <a href="{$base}/support.html#newsgroups">ニュースグループ</a><br/>
|
||||
  <a href="{$base}/support.html#user">ユーザグループ</a><br/>
|
||||
  <a href="{$base}/support.html#web">Web 上の資料</a><br/>
|
||||
  <a href="security/index.html">セキュリティ</a><br/>
|
||||
  <a href="{$base}/support.html">さらに...</a>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>開発</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="projects/index.html">プロジェクト</a><br/>
|
||||
  <a href="{$base}/support.html#gnats">バグレポート</a><br/>
|
||||
  <a href="{$base}/support.html#cvs">CVS リポジトリ</a><br/>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>ベンダ</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="{$base}/commercial/software_bycat.html">ソフトウェア</a><br/>
|
||||
  <a href="{$base}/commercial/hardware.html">ハードウェア</a><br/>
|
||||
  <a href="{$base}/commercial/consulting_bycat.html">コンサルティング</a><br/>
|
||||
  <a href="{$base}/commercial/misc.html">その他</a><br/>
|
||||
</small></p>
|
||||
|
||||
<p><big><font color="#990000"><b>このサイトについて</b></font></big>
|
||||
|
||||
<small><br/>
|
||||
  <a href="{$base}/search/index-site.html">サイトマップ</a><br/>
|
||||
  <a href="{$base}/search/search.html">検索</a><br/>
|
||||
  <a href="internal/index.html">さらに...</a><br/>
|
||||
</small></p>
|
||||
|
||||
<form action="http://www.FreeBSD.org/cgi/search.cgi" method="get">
|
||||
<small>  検索:<br/>
|
||||
<input type="text" name="words" size="10"/>
|
||||
<input type="hidden" name="max" value="25"/>
|
||||
<input type="hidden" name="source" value="www"/>
|
||||
<input type="submit" value="実行"/></small>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<hr/>
|
||||
|
||||
<table border="0" cellspacing="0" cellpadding="3">
|
||||
<tr>
|
||||
<td><a href="http://www.freebsdmall.com/"><img
|
||||
src="../gifs/mall_title_medium.gif" alt="[FreeBSD Mall]"
|
||||
height="65" width="165" border="0"/></a></td>
|
||||
|
||||
<td><a href="http://www.ugu.com/"><img src="../gifs/ugu_icon.gif"
|
||||
alt="[Sponsor of Unix Guru Universe]"
|
||||
height="64" width="76"
|
||||
border="0"/></a></td>
|
||||
|
||||
<td><a href="http://www.daemonnews.org/"><img src="../gifs/darbylogo.gif"
|
||||
alt="[Daemon News]" height="45" width="130"
|
||||
border="0"/></a></td>
|
||||
|
||||
<td><a href="{$base}/copyright/daemon.html"><img
|
||||
src="../gifs/powerlogo.gif"
|
||||
alt="[Powered by FreeBSD]"
|
||||
height="64"
|
||||
width="160"
|
||||
border="0"/></a></td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<p><small>このウェブサイトは毎日 8:00 UTC と 20:00 UTC に更新しています.
|
||||
</small></p>
|
||||
|
||||
<hr/>
|
||||
|
||||
<table width="100%" cellpadding="0" border="0" cellspacing="0">
|
||||
<tr>
|
||||
<td align="left"
|
||||
valign="top"><small><a href="{$base}/mailto.html">お問い合わせ先
|
||||
</a> : <a href="jabout.html">日本語化について</a><br/>
|
||||
<xsl:value-of select="$date"/></small></td>
|
||||
|
||||
<td align="right"
|
||||
valign="top"><small><a href="copyright/index.html">Copyright</a> (c) 1995-2001
|
||||
The FreeBSD Project.<br/>
|
||||
All rights reserved.</small></td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
||||
|
||||
<!--
|
||||
Local Variables:
|
||||
mode: xml
|
||||
sgml-indent-data: t
|
||||
sgml-omittag: nil
|
||||
sgml-always-quote-attributes: t
|
||||
End:
|
||||
-->
|
19
ja/news/includes.xsl
Normal file
19
ja/news/includes.xsl
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="EUC-JP" ?>
|
||||
|
||||
<!-- $FreeBSD$ -->
|
||||
<!-- Original revision: 1.1 -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:variable name="newshome">
|
||||
<a href="news.html">News ¥Û¡¼¥à</a>
|
||||
</xsl:variable>
|
||||
|
||||
<!-- Generate a unique anchor for this event -->
|
||||
<xsl:template name="generate-event-anchor">
|
||||
<xsl:value-of select="ancestor::year/name"/>
|
||||
<xsl:value-of select="ancestor::month/name"/>
|
||||
<xsl:value-of select="ancestor::day/name"/>:<xsl:value-of select="count(preceding-sibling::event)"/>
|
||||
</xsl:template>
|
||||
|
||||
</xsl:stylesheet>
|
467
ja/news/news.xml
Normal file
467
ja/news/news.xml
Normal file
|
@ -0,0 +1,467 @@
|
|||
<?xml version="1.0" encoding="EUC-JP" ?>
|
||||
<!-- Simple schema for FreeBSD Project news.
|
||||
|
||||
Divide time in to <year>, <month>, and <day> elements, each of which
|
||||
has a <name>.
|
||||
|
||||
Each <day> element contains one or more <event> elements.
|
||||
|
||||
Each <event> contains an optional <title>, and then a <p>. <p> elements
|
||||
can contain <a> anchors. Within the "href" attribute of the anchor
|
||||
$base will be replaced with the base URI necessary to reach the FreeBSD
|
||||
document root, and should always be used to start URLs at www.FreeBSD.org
|
||||
or one of the mirrors.
|
||||
|
||||
Use the <title> element if the <p> content is lengthy. When generating
|
||||
synopses of this information (e.g., for syndication using RDF files),
|
||||
the contents of <title> will be preferred over <p>.
|
||||
|
||||
$FreeBSD: www/en/news/news.xml,v 1.2 2001/08/07 00:03:25 logo Exp $
|
||||
Original revision: 1.2
|
||||
-->
|
||||
|
||||
<news>
|
||||
<year>
|
||||
<name>2001</name>
|
||||
|
||||
<month>
|
||||
<name>8</name>
|
||||
|
||||
<day>
|
||||
<name>06</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:logo@FreeBSD.org">Valentino
|
||||
Vaschetto</a>(文書担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>7</name>
|
||||
|
||||
<day>
|
||||
<name>30</name>
|
||||
|
||||
<event>
|
||||
<title>FreeBSD ハンドブックタスクリスト登場</title>
|
||||
|
||||
<p><a href="handbook/">FreeBSD ハンドブック</a>の第二版がもうすぐ
|
||||
出来上がります.
|
||||
印刷された FreeBSD のドキュメントに貢献したい方は是非
|
||||
<a href="../docproj/handbook.html">タスクリスト</a>
|
||||
を見てください.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>26</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:mp@FreeBSD.org">Mark Peek</a></p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>16</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:bbraun@FreeBSD.org">Rob
|
||||
Braun</a></p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="zarzycki@FreeBSD.org">Dave
|
||||
Zarzycki</a></p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mike@FreeBSD.org">Mike Barcroft</a></p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>13</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:chern@FreeBSD.org">Chern Lee</a>
|
||||
(文書担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>6</name>
|
||||
|
||||
<day>
|
||||
<name>21</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:brooks@FreeBSD.org">Brooks
|
||||
Davis</a> (ネットワーク, モバイル担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>20</name>
|
||||
|
||||
<event>
|
||||
<title>Solid State Media を FreeBSD で使う</title>
|
||||
|
||||
<p><a href="mailto:john@kozubik.com">John Kozubik</a> は
|
||||
<a href="$base/doc/en_US.ISO8859-1/articles/solid-state/index.html">
|
||||
How to use FreeBSD with solid state media (英語版)</a>
|
||||
という記事を寄稿してくれました.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>17</name>
|
||||
|
||||
<event>
|
||||
<title>PowerPC で FreeBSD がブートしました</title>
|
||||
|
||||
<p><a href="mailto:benno@FreeBSD.org">Benno Rice</a> はついに PowerPC
|
||||
プロセッサ上で, FreeBSD の root ファイルシステムを
|
||||
マウントするためのプロンプト部分まで到達しました.
|
||||
詳しい情報については PowerPC プラットフォームの
|
||||
<a href="$base/platforms/ppc.html">ページ</a> とメーリングリストを
|
||||
参照してください.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>15</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:silby@FreeBSD.org">Mike
|
||||
Silbersack</a> (ネットワーク担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>14</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:wjv@FreeBSD.org">Johann Visagie</a>
|
||||
(Ports担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>13</name>
|
||||
|
||||
<event>
|
||||
<p><a href="mailto:rwatson@FreeBSD.org">Robert Watson</a> は
|
||||
FreeBSD プロジェクトの
|
||||
<a href="http://docs.freebsd.org/cgi/getmsg.cgi?fetch=481962+0+archive/2001/freebsd-hackers/20010617.freebsd-hackers">進捗レポート</a>
|
||||
をまとめました.
|
||||
このレポートは毎月作成されることが予定されています.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>11</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:tobez@FreeBSD.org">Anton
|
||||
Berezin</a> (Perl全域担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>6</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:dwcjr@FreeBSD.org">David
|
||||
W. Chapman Jr.</a>(Ports担当)</p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:markp@FreeBSD.org">Mark Pulford</a>
|
||||
(Ports担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>1</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:cjc@FreeBSD.org">Crist J. Clark</a>
|
||||
(ネットワーク, セキュリティ担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>5</name>
|
||||
|
||||
<day>
|
||||
<name>24</name>
|
||||
|
||||
<event>
|
||||
<p>著名な ftp サイト
|
||||
<a href="ftp://ftp.FreeBSD.org/">ftp.FreeBSD.org</a>
|
||||
は, 通常運用に復帰しました.
|
||||
ネットワークコネクションとマシンを提供してくれた
|
||||
<a href="http://www.teledanmark.com/english/menu/start.htm">
|
||||
Tele Danmark</a> に感謝します.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>16</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:pirzyk@FreeBSD.org">Jim
|
||||
Pirzyk</a></p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>2</name>
|
||||
|
||||
<event>
|
||||
<p><a href="http://www.freebsdzine.org/">FreeBSD 'zine</a>
|
||||
の 2001 年 5 月第 1 号が発行されました.
|
||||
今月から発行は月に 2 回, 1 日と 15 日に行なわれる予定です.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>4</name>
|
||||
|
||||
<day>
|
||||
<name>27</name>
|
||||
|
||||
<event>
|
||||
<p><a href="mailto:jhb@FreeBSD.org">John Baldwin</a> 氏,
|
||||
<a href="mailto:gallatin@FreeBSD.org">Andrew Gallatin</a> 氏,
|
||||
<a href="mailto:dfr@FreeBSD.org">Doug Rabson</a> 氏らの努力により,
|
||||
マルチプロセッサの Alpha システム上で FreeBSD
|
||||
が動作するようになりました.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>25</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:tshiozak@FreeBSD.org">塩崎 拓也
|
||||
</a> (国際化担当)</p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:ue@FreeBSD.org">Udo Erdelhoff</a>
|
||||
(文書担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>18</name>
|
||||
|
||||
<event>
|
||||
<p><a href="$base/../doc/en_US.ISO8859-1/books/developers-handbook/index.html">Developer's Handbook</a>
|
||||
がウェブサイトで公開されました.
|
||||
これは, FreeBSD 用ソフトウェアを開発したい人
|
||||
(FreeBSD を開発しているコミッター用でなく) 向けのものです.
|
||||
また, このサイトにある
|
||||
<a href="$base/docs.html">公開文書の完全なリスト</a> もお忘れなく.
|
||||
</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>17</name>
|
||||
|
||||
<event>
|
||||
<p>Addison Wesley より,
|
||||
<a href="http://cseng.aw.com/book/0,,0201704811,00.html">FreeBSD
|
||||
Corporate Networker's Guide</a> の
|
||||
<a href="$base/doc/en_US.ISO8859-1/books/corp-net-guide/index.html">第 8 章</a>
|
||||
を再出版する許可をいただきました.
|
||||
第 8 章では Windows, WindowsNT, FreeBSD を使っている Novell
|
||||
クライアントにプリントサービスを提供することに関して
|
||||
詳細に分析しています.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>16</name>
|
||||
|
||||
<event>
|
||||
<p>また一人, 新コミッター就任:
|
||||
<a href="mailto:schweikh@FreeBSD.org">Jens Schweikhardt</a>
|
||||
(規格適合性 (Standards compliance) 担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>12</name>
|
||||
|
||||
<event>
|
||||
<p><a href="http://www.freebsdzine.org/">The FreeBSD 'zine</a>
|
||||
の 4 月号が発行されました.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>10</name>
|
||||
|
||||
<event>
|
||||
<p><a href="$base/ports/index.html">Ports Collection</a>
|
||||
の登録エントリ数が 5,000 を超えました!</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>5</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:greid@FreeBSD.org">George Reid</a>
|
||||
(サウンド機能, ports 担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>4</name>
|
||||
|
||||
<event><p>Wind River 社が BSDi 社のソフトウェア所有権を獲得しました.
|
||||
詳細は,
|
||||
<a href="http://www.windriver.com/press/html/bsdi.html">Wind River プレスリリース</a>,
|
||||
<a href="http://www.freebsd.org/cgi/mid.cgi?20010404220529.E3AFE37B727">Jordan K. Hubbard</a>
|
||||
氏の声明, および
|
||||
<a href="http://www.freebsd.org/cgi/mid.cgi?Pine.NEB.3.96L.1010405211037.46990E-100000">FreeBSD コアチームの声明</a>
|
||||
をお読みください.</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>3</name>
|
||||
|
||||
<day>
|
||||
<name>25</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:yar@FreeBSD.org">Yar Tikhiy</a>
|
||||
(ネットワーク機能担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>24</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:eric@FreeBSD.org">Eric Melville</a>
|
||||
(システムツール担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>13</name>
|
||||
|
||||
<event>
|
||||
<p><a href="http://www.freebsdzine.org/">The FreeBSD 'zine</a>
|
||||
3 月号が発行されました.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>9</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:dd@FreeBSD.org">Dima Dorfman</a>
|
||||
(文書担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>7</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:keichii@FreeBSD.org">Michael
|
||||
C. Wu</a> (国際化, ports 担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>6</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:tmm@FreeBSD.org">Thomas
|
||||
M&ouml;stl</a> (POSIX1.e 拡張機能担当)</p>
|
||||
</event>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:orion@FreeBSD.org">Orion Hodson</a>
|
||||
(サウンド機能担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>2</name>
|
||||
|
||||
<day>
|
||||
<name>20</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:jesper@FreeBSD.org">Jesper
|
||||
Skriver</a></p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>16</name>
|
||||
|
||||
<event>
|
||||
<p><a href="http://www.freebsdzine.org/">The FreeBSD 'zine</a>
|
||||
2 月号が発行されました.</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>5</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:mikeh@FreeBSD.org">Mike Heffner</a>
|
||||
(監査プロジェクト)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
|
||||
<month>
|
||||
<name>1</name>
|
||||
|
||||
<day>
|
||||
<name>24</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:olgeni@FreeBSD.org">Jimmy
|
||||
Olgeni</a> (Ports担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>23</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:dinoex@FreeBSD.org">Dirk Meyer</a>
|
||||
(Ports担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
|
||||
<day>
|
||||
<name>20</name>
|
||||
|
||||
<event>
|
||||
<p>新コミッター就任: <a href="mailto:ijliao@FreeBSD.org">Ying-chieh
|
||||
Liao</a> (Ports担当)</p>
|
||||
</event>
|
||||
</day>
|
||||
</month>
|
||||
</year>
|
||||
</news>
|
||||
|
128
ja/news/newsflash.xsl
Normal file
128
ja/news/newsflash.xsl
Normal file
|
@ -0,0 +1,128 @@
|
|||
<?xml version="1.0" encoding="EUC-JP" ?>
|
||||
|
||||
<!-- $FreeBSD: www/en/news/newsflash.xsl,v 1.1 2001/08/06 06:59:11 nik Exp $ -->
|
||||
<!-- Original revision: 1.1 -->
|
||||
|
||||
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
||||
|
||||
<xsl:import href="../includes.xsl"/>
|
||||
<xsl:import href="includes.xsl"/>
|
||||
|
||||
|
||||
<xsl:variable name="base" select="'..'"/>
|
||||
<xsl:variable name="title" select="'FreeBSD News Flash'"/>
|
||||
<xsl:variable name="date" select="'$FreeBSD: www/en/news/newsflash.xsl,v 1.1 2001/08/06 06:59:11 nik Exp $'"/>
|
||||
|
||||
<xsl:output type="html" encoding="iso-8859-1"/>
|
||||
|
||||
<xsl:template match="news">
|
||||
<html>
|
||||
|
||||
<xsl:copy-of select="$header1"/>
|
||||
|
||||
<body xsl:use-attribute-sets="att.body">
|
||||
|
||||
<xsl:copy-of select="$header2"/>
|
||||
|
||||
<!-- Notice how entity references in SGML become variable references
|
||||
in the stylesheet, and that the syntax for referring to variables
|
||||
inside an attribute is "{$variable}".
|
||||
|
||||
This is just dis-similar enough to Perl and the shell that you
|
||||
end up writing ${variable} all the time, and then scratch your
|
||||
head wondering why the stylesheet isn't working.-->
|
||||
|
||||
<!-- Also notice that because this is now XML and not SGML, empty
|
||||
elements, like IMG, must have a trailing "/" just inside the
|
||||
closing angle bracket, like this " ... />" -->
|
||||
<img src="{$base}/../gifs/news.jpg" align="right" border="0" width="193"
|
||||
height="144" alt="FreeBSD News"/>
|
||||
|
||||
<p>FreeBSD は急速に発展を続けるオペレーティングシステムなので,
|
||||
最新の進歩について行くのが面倒になる時がありますよね.
|
||||
情報通になるために, このページを定期的にチェックするようにしましょう.
|
||||
<a href="{$base}/handbook/eresources.html#ERESOURCES-MAIL">
|
||||
freebsd-announce メーリングリスト</a>を購読したい
|
||||
という方もいるかもしれませんね.</p>
|
||||
|
||||
<p>FreeBSD Java Project の最新情報については
|
||||
<a href="{$base}/java/newsflash.html">
|
||||
FreeBSD/Java ニュースフラッシュ</a>のページをご覧ください.</p>
|
||||
|
||||
<p>過去, 現在, そして将来のリリースの詳細については,
|
||||
<strong><a href="{$base}/releases/index.html">リリース情報</a>
|
||||
</strong>
|
||||
のページをご覧ください.</p>
|
||||
|
||||
<p>FreeBSD セキュリティ勧告については, <a href="{$base}/security/#adv">
|
||||
セキュリティ情報</a> のページをご覧ください.</p>
|
||||
|
||||
<xsl:apply-templates select="descendant::month"/>
|
||||
|
||||
<p>Older announcements:
|
||||
<a href="2000/index.html">2000</a>,
|
||||
<a href="1999/index.html">1999</a>,
|
||||
<a href="1998/index.html">1998</a>,
|
||||
<a href="1997/index.html">1997</a>,
|
||||
<a href="1996/index.html">1996</a></p>
|
||||
|
||||
<xsl:copy-of select="$newshome"/>
|
||||
<xsl:copy-of select="$footer"/>
|
||||
</body>
|
||||
</html>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Everything that follows are templates for the rest of the content -->
|
||||
|
||||
<xsl:template match="month">
|
||||
<h1><xsl:value-of select="ancestor::year/name"/>
|
||||
<xsl:text>年 </xsl:text>
|
||||
<xsl:value-of select="name"/> 月</h1>
|
||||
|
||||
<ul>
|
||||
<xsl:apply-templates select="descendant::day"/>
|
||||
</ul>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="day">
|
||||
<xsl:apply-templates select="event"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="event">
|
||||
<li>
|
||||
<a>
|
||||
<xsl:attribute name="name">
|
||||
<xsl:call-template name="generate-event-anchor"/>
|
||||
</xsl:attribute>
|
||||
</a>
|
||||
|
||||
<p><b><xsl:value-of select="ancestor::year/name"/> /
|
||||
<xsl:value-of select="ancestor::month/name"/> /
|
||||
<xsl:value-of select="ancestor::day/name"/> : </b><xsl:text> </xsl:text>
|
||||
<xsl:apply-templates select="p"/>
|
||||
</p>
|
||||
|
||||
</li>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template match="date"/> <!-- Deliberately left blank -->
|
||||
|
||||
<!-- When the href attribute contains a '$base', expand it to the current
|
||||
value of the $base variable. -->
|
||||
|
||||
<!-- All your $base are belong to us. Ho ho ho -->
|
||||
<xsl:template match="a">
|
||||
<a><xsl:attribute name="href">
|
||||
<xsl:choose>
|
||||
<xsl:when test="contains(@href, '$base')">
|
||||
<xsl:value-of select="concat(substring-before(@href, '$base'), $base, substring-after(@href, '$base'))"/>
|
||||
</xsl:when>
|
||||
<xsl:otherwise>
|
||||
<xsl:value-of select="@href"/>
|
||||
</xsl:otherwise>
|
||||
</xsl:choose>
|
||||
</xsl:attribute>
|
||||
<xsl:apply-templates/>
|
||||
</a>
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
Loading…
Reference in a new issue