Mercurial > hg
annotate doc/ja/docbook.ja.xsl @ 6297:fed1a9c22076
dirstate.remove: during merges, remember the previous file state
We encode the previous state as a negative file size (AFAICS, previous
versions of hg always have size == 0 when state == 'r').
We save the state of 'm'erged and dirty files, because they're the
two states that indicate that a file has to be committed on a merge
to correctly record per-file history.
author | Alexis S. L. Carvalho <alexis@cecm.usp.br> |
---|---|
date | Tue, 18 Mar 2008 04:07:39 -0300 |
parents | cadde8ebf167 |
children |
rev | line source |
---|---|
1500
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
1 <?xml version='1.0' encoding="UTF-8"?> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
2 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version='1.0'> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
3 <xsl:import href="http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl"/> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
4 <xsl:output encoding="UTF-8"/> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
5 |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
6 <xsl:template match="refnamediv"> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
7 <xsl:text>.SH 名前 </xsl:text> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
8 <xsl:for-each select="refname"> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
9 <xsl:if test="position()>1"> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
10 <xsl:text>, </xsl:text> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
11 </xsl:if> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
12 <xsl:value-of select="."/> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
13 </xsl:for-each> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
14 <xsl:text> \- </xsl:text> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
15 <xsl:value-of select="normalize-space (refpurpose)"/> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
16 </xsl:template> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
17 |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
18 <xsl:template match="refsynopsisdiv"> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
19 <xsl:text> .SH "書式" </xsl:text> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
20 <xsl:apply-templates/> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
21 </xsl:template> |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
22 |
cadde8ebf167
Fixed to convert to man properly.
Hidetaka Iwai <tyuyu@debian.or.jp>
parents:
diff
changeset
|
23 </xsl:stylesheet> |