head	1.20;
access;
symbols
	XML_XSL_XP:1.15.0.2
	XML_XSL_XP_BP:1.15;
locks; strict;
comment	@# @;


1.20
date	2004.12.09.19.48.57;	author rushani;	state dead;
branches;
next	1.19;

1.19
date	2002.01.04.04.59.21;	author kuriyama;	state Exp;
branches;
next	1.18;

1.18
date	2001.12.13.19.30.09;	author phantom;	state Exp;
branches;
next	1.17;

1.17
date	2001.12.12.11.57.38;	author phantom;	state Exp;
branches;
next	1.16;

1.16
date	2001.11.18.22.33.58;	author hrs;	state Exp;
branches;
next	1.15;

1.15
date	2001.09.17.03.07.39;	author kuriyama;	state Exp;
branches;
next	1.14;

1.14
date	2001.09.05.08.35.15;	author kuriyama;	state Exp;
branches;
next	1.13;

1.13
date	2000.11.07.11.37.54;	author kuriyama;	state Exp;
branches;
next	1.12;

1.12
date	2000.10.02.09.16.06;	author kuriyama;	state Exp;
branches;
next	1.11;

1.11
date	2000.10.02.07.54.40;	author kuriyama;	state Exp;
branches;
next	1.10;

1.10
date	2000.04.27.02.07.19;	author kuriyama;	state Exp;
branches;
next	1.9;

1.9
date	2000.04.24.02.10.48;	author kuriyama;	state Exp;
branches;
next	1.8;

1.8
date	99.12.23.01.15.49;	author kuriyama;	state Exp;
branches;
next	1.7;

1.7
date	99.09.07.15.15.48;	author kuriyama;	state Exp;
branches;
next	1.6;

1.6
date	99.09.06.07.03.18;	author peter;	state Exp;
branches;
next	1.5;

1.5
date	98.08.12.09.04.06;	author hanai;	state Exp;
branches;
next	1.4;

1.4
date	98.08.11.05.38.31;	author hanai;	state Exp;
branches;
next	1.3;

1.3
date	98.08.09.16.22.17;	author kuriyama;	state Exp;
branches;
next	1.2;

1.2
date	98.08.04.12.32.37;	author wosch;	state Exp;
branches;
next	1.1;

1.1
date	98.08.03.16.44.12;	author wosch;	state Exp;
branches;
next	;


desc
@@


1.20
log
@Remove gallery pages and those references:

  1.106 -> 1.114  Makefile
  1.35  -> 1.39   commercial/commercial.sgml
  1.92  -> 1.100  index.xsl
  1.30  -> 1.33   internet.sgml
  1.16  -> dead   gallery/Makefile
  1.3   -> dead   gallery/gallery-entry.xsl
  1.2   -> dead   gallery/gallery.xsl
  new   -> 1.11   navigation.xml
  1.25  -> 1.27   search/index-site.sgml
  1.70  -> 1.81   search/web.atoz

Reminded by:    ceri
@
text
@# $FreeBSD: www/ja/gallery/Makefile,v 1.19 2002/01/04 04:59:21 kuriyama Exp $
# The FreeBSD Japanese Documentation Project
# Original revision: 1.16

.if exists(../Makefile.conf)
.include "../Makefile.conf"
.endif
.if exists(../Makefile.inc)
.include "../Makefile.inc"
.endif

XSLTPROCFLAGS=	--catalogs
XSLT=	${SETENV} SGML_CATALOG_FILES=${PREFIX}/share/xml/dtd/xhtml/xhtml.soc \
	${XSLTPROC} ${XSLTPROCOPTS}

SRC=	../../en/gallery/gallery.xml

INDEXLINK= gallery.html

DATA+=	gallery.html cgallery.html npgallery.html pgallery.html

CLEANFILES+= ${DATA}

gallery.html: ${SRC} gallery.xsl ../includes.xsl
	${XSLT} ${.CURDIR}/gallery.xsl ${.CURDIR}/${SRC} > ${.TARGET}
.if !defined(NO_TIDY)
	-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif

cgallery.html: ${SRC} gallery-entry.xsl
	${XSLT} --param type \'commercial\' \
		${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET}
.if !defined(NO_TIDY)
	-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif

npgallery.html: ${SRC} gallery-entry.xsl
	${XSLT} --param type \'nonprofit\' \
		${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET}
.if !defined(NO_TIDY)
	-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif

pgallery.html: ${SRC} gallery-entry.xsl
	${XSLT} --param type \'personal\' \
		${.CURDIR}/gallery-entry.xsl ${.CURDIR}/${SRC} > ${.TARGET}
.if !defined(NO_TIDY)
	-${TIDY} ${TIDYOPTS} ${.TARGET}
.endif

### Revision checking
REVCHECK=	yes

.include "${WEB_PREFIX}/share/mk/web.site.mk"
@


1.19
log
@Merge the changes in the English version.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.18 2001/12/13 19:30:09 phantom Exp $
@


1.18
log
@Wrap explicit calls of ${TIDY} with NO_TIDY define check. With this
patch build with defined(NO_TIDY) does not call tidy at all.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.17 2001/12/12 11:57:38 phantom Exp $
d3 1
a3 1
# Original revision: 1.14
d14 1
a14 1
	${XSLTPROC} ${XSLTPROCFLAGS}
@


1.17
log
@Force tidy(1) to use '-raw' and newly added '-preserve' options
to process generated HTML. This not cause any side effects except
leaving some character entities in their numeric form instead
converting them into alphabetical notation (&#60; instead of &lt;),
but since all browsers understand such cases it is not a problem.

This commit should make all translations tidy clean, since
tidy should not arise entities conversion problem as it did
for long time before. Therefore all occurences of manual settings
of TIDYFLAGS and NO_TIDY declarations for translations are removed.

Also clean *OPTS/*FLAGS variables declaration like it was done in doc/ tree
some time ago. Currently all local additions to commands parameters that used
in make process should be passed thru *FLAGS variables. All variables
with OPTS suffix are reserved for internal use of web.site.mk now.
Cleanup part is based on work done by Cyrille Lefevre <clefevre-lists@@noos.fr>

No objections from: -doc
Requested by: Russian and Japanese translation teams
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.16 2001/11/18 22:33:58 hrs Exp $
d26 1
d28 1
d33 1
d35 1
d40 1
d42 1
d47 1
d49 1
@


1.16
log
@Merge the following from the English version:

	1.11  -> 1.12 	copyright/Makefile
	1.8   -> 1.9  	docproj/Makefile
	1.13  -> 1.14 	gallery/Makefile
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.15 2001/09/17 03:07:39 kuriyama Exp $
d26 1
a26 1
#	-${TIDY} ${TIDYFLAGS} ${.TARGET}
d31 1
a31 1
#	-${TIDY} ${TIDYFLAGS} ${.TARGET}
d36 1
a36 1
#	-${TIDY} ${TIDYFLAGS} ${.TARGET}
d41 1
a41 1
#	-${TIDY} ${TIDYFLAGS} ${.TARGET}
@


1.15
log
@Merge the changes in the English version.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.14 2001/09/05 08:35:15 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.13
d12 4
a15 2
XSLT=	env SGML_CATALOG_FILES=/usr/local/share/xml/dtd/xhtml/xhtml.soc \
	xsltproc --catalogs
d22 1
a22 1
CLEANFILES+= cgallery.html npgallery.html pgallery.html gallery.html
d25 2
a26 2
	${XSLT} gallery.xsl ${SRC} > gallery.html
#	-tidy -i -m -f /dev/null gallery.html
d29 3
a31 2
	${XSLT} --param type \'commercial\' gallery-entry.xsl ${SRC} > cgallery.html
#	-tidy -i -m -f /dev/null cgallery.html
d34 3
a36 2
	${XSLT} --param type \'nonprofit\' gallery-entry.xsl ${SRC} > npgallery.html
#	-tidy -i -m -f /dev/null npgallery.html
d39 3
a41 2
	${XSLT} --param type \'personal\' gallery-entry.xsl ${SRC} > pgallery.html
#	-tidy -i -m -f /dev/null pgallery.html
@


1.14
log
@Rebirth Japanese gallery page with XML framework.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.13 2000/11/07 11:37:54 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.12
@


1.13
log
@Switch web.mk to share/mk/web.site.mk in Japanese version.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.12 2000/10/02 09:16:06 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.11
d12 3
a14 1
DOCS = gallery.sgml
d18 1
a18 1
CLEANFILES+= gallery.inc
d20 17
a36 5
gallery.html: gallery.sgml gallery.inc
gallery.inc: ../../en/gallery/gallery.db gallery.sgml
	${PERL} ${.CURDIR}/../../en/gallery/prune.pl ${.CURDIR}/../../en/gallery/gallery.db /dev/null | \
	${PERL} -ne 'chomp; m/([-\w]+):\s+(\d+)/ and print qq/<!ENTITY num./.lc($$1).qq/ CDATA "$$2">\n/'\
	> gallery.inc
@


1.12
log
@Clean-up around directory traversing and revision checking.

Submitted by:	hrs
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.11 2000/10/02 07:54:40 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.10
d5 5
a9 4
LOCALTOP= ..

.if exists(${LOCALTOP}/Makefile.conf)
.include "${LOCALTOP}/Makefile.conf"
d27 1
a27 1
.include "${LOCALTOP}/web.mk"
@


1.11
log
@Catching up recent Neil's obj-clean commit.

Thank you for your good work, Neil!
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.10 2000/04/27 02:07:19 kuriyama Exp $
d5 4
a8 2
.if exists(../Makefile.conf)
.include "../Makefile.conf"
d24 1
a24 3
REVFILES=	${DOCS:M*.sgml:S/.sgml$/.revinc/g}
BUILDTOP=	../..
DIR_IN_LOCAL=	gallery
d26 1
a26 1
.include "../../web.mk"
@


1.10
log
@ o Add an entity reference forgotten in the previous commit:

	gallery/gallery.sgml

 o perl -> ${PERL}

	gallery/Makefile

Submitted by:	Hiroki Sato <hrs@@geocities.co.jp>
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.9 2000/04/24 02:10:48 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.9
d17 1
a17 1
	${PERL} ../../en/gallery/prune.pl ../../en/gallery/gallery.db /dev/null | \
@


1.9
log
@Following changes in the English version are merged:

	1.5 -> 1.6	alpha/alpha.sgml
	1.30 -> 1.31	auditors.sgml
	1.30 -> 1.31	commercial/commercial.sgml
	1.20 -> 1.21	docproj/current.sgml
	1.13 -> 1.14	docproj/docproj.sgml
	1.13 -> 1.14	docproj/sgml.sgml
	1.30 -> 1.31	docproj/translations.sgml
	1.79 -> 1.81	docs.sgml
	1.12 -> 1.13	features.sgml
	1.7 -> 1.9	gallery/Makefile
	1.48 -> 1.50	gallery/gallery.sgml

Submitted by:	Shun SUZUKI <si006@@ccm.gs.niigata-u.ac.jp>
Reference:	[doc-jp 7314]
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.8 1999/12/23 01:15:49 kuriyama Exp $
d17 2
a18 2
	perl ../../en/gallery/prune.pl ../../en/gallery/gallery.db /dev/null | \
	perl -ne 'chomp; m/([-\w]+):\s+(\d+)/ and print qq/<!ENTITY num./.lc($$1).qq/ CDATA "$$2">\n/'\
@


1.8
log
@Add "Synchronization Status" feature in Japanese web pages.

5. Add statement to include *.revinc for each *.sgml files.
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.7 1999/09/07 15:15:48 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.7
d12 8
@


1.7
log
@Bump "Original revision" header.
($Id$ -> $FreeBSD$ migration)
@
text
@d1 1
a1 1
# $FreeBSD: www/ja/gallery/Makefile,v 1.6 1999/09/06 07:03:18 peter Exp $
d12 5
@


1.6
log
@$Id$,$Date$ -> $FreeBSD$
The jury is out on $Date$, but it's presently not being expanded..
@
text
@d1 1
a1 1
# $FreeBSD$
d3 1
a3 1
# Original revision: 1.5
@


1.5
log
@Following changes in the English version are merged.

  alpha/Makefile       1.3  -> 1.4
  commercial/Makefile  1.4  -> 1.5
  copyright/Makefile   1.2  -> 1.3
  docproj/Makefile     1.5  -> 1.6
  gallery/Makefile     1.4  -> 1.5
  internal/Makefile    1.9  -> 1.10
  news/Makefile        1.4  -> 1.5
  ports/Makefile       1.13 -> 1.14
  projects/Makefile    1.4  -> 1.5
  releases/Makefile    1.12 -> 1.13
  search/Makefile      1.3  -> 1.4
  security/Makefile    1.3  -> 1.4

Submitted by: Motoyuki Konno <motoyuki@@snipe.rim.or.jp>
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.4 1998/08/11 05:38:31 hanai Exp $
@


1.4
log
@Following changes in the English version are merged.

  alpha/Makefile       1.2  -> 1.3
  commercial/Makefile  1.3  -> 1.4
  copyright/Makefile   1.1  -> 1.2
  docproj/Makefile     1.4  -> 1.5
  gallery/Makefile     1.3  -> 1.4
  internal/Makefile    1.8  -> 1.9
  news/Makefile        1.3  -> 1.4
  ports/Makefile       1.8  -> 1.13
  projects/Makefile    1.3  -> 1.4
  releases/Makefile    1.11 -> 1.12
  search/Makefile      1.2  -> 1.3
  security/Makefile    1.2  -> 1.3

Submitted by: Motoyuki Konno <motoyuki@@snipe.rim.or.jp>
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.3 1998/08/09 16:22:17 kuriyama Exp $
d3 1
a3 1
# Original revision: 1.4
d5 1
a5 1
.if exists("../Makefile.conf")
@


1.3
log
@Changes in the English version are merged:

	Makefile:	1.36 --> 1.42
	applications.sgml:	1.7  --> 1.8
	doc.hdr:	1.6  --> 1.7
	doc.sgml:	1.47 --> 1.50
	includes.sgml:	1.20 --> 1.21
	index.html:	1.48 --> 1.53
	internet.sgml:	1.11 --> 1.12
	publish.sgml:	1.10 --> 1.12
	support.sgml:	1.89 --> 1.92
	where.sgml:	1.25 --> 1.26
	alpha/Makefile:	1.1  --> 1.2
	commercial/commercial.sgml:	1.25 --> 1.26
	commercial/Makefile:		     --> 1.3
	copyright/daemon.sgml:	1.6  --> 1.8
	copyright/license.sgml:	1.2  --> 1.3
	copyright/Makefile:	     --> 1.1
	docproj/Makefile:	1.2  --> 1.4
	docproj/docproj.sgml:	1.11 --> 1.12
	docproj/translations.sgml:	1.3  --> 1.5
	gallery/Makefile:	     --> 1.3
	gallery/gallery.sgml:	1.36 --> 1.39
	internal/Makefile:	     --> 1.7
	internal/about.sgml:	1.14 --> 1.18
	internal/mirror.sgml:	1.5  --> 1.6
	internal/machines.sgml:	1.3  --> 1.5
	internal/resignation.sgml:	1.1  --> 1.2
	news/Makefile:		1.2  --> 1.3
	news/newsflash.sgml:	1.89 --> 1.91
	news/press.sgml:	1.12 --> 1.15
	projects/Makefile:	     --> 1.3
	projects/mozilla.sgml:	1.2  --> 1.4
	projects/newvies.sgml:	1.3  --> 1.5
	release/2.2.6R/announce.sgml:	1.1  --> 1.2
	release/2.2.7R/announce.sgml:	1.3  --> 1.4
	release/index.sgml:	1.21 --> 1.22
	search/Makefile:	1.36 --> 1.2  (???)
	search/index-site.sgml:	1.15 --> 1.16
	search/search.sgml:	1.32 --> 1.33
	search/search-mid.sgml:	1.3  --> 1.4
	search/searchhints.sgml:	1.3  --> 1.4
	search/web.atoz:	1.34 --> 1.38
	security/Makefile:	1.1  --> 1.2

Submitted by:	Motoyuki Konno <motoyuki@@snipe.rim.or.jp>
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.2 1998/08/04 12:32:37 wosch Exp $
d3 5
a7 1
# Original revision: 1.3
@


1.2
log
@Include the right web.mk
@
text
@d1 3
a3 1
# $Id: Makefile,v 1.1 1998/08/03 16:44:12 wosch Exp $
d7 2
a9 1

@


1.1
log
@Added Makefiles.
@
text
@d1 1
a1 1
# $Id: Makefile,v 1.2 1998/08/03 15:37:48 wosch Exp $
d5 1
a5 1
.include "../web.mk"
@
