Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Sep 2005 16:19:42 -0300
From:      "Alejandro Pulver" <alejandro@varnet.biz>
To:        "FreeBSD gnats submit" <FreeBSD-gnats-submit@FreeBSD.org>
Subject:   ports/85698: [UPDATE] www/amaya: update to 9.2.1, remove BROKEN
Message-ID:  <1125775182.0@phobos.mars.bsd>
Resent-Message-ID: <200509031920.j83JKMik074727@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         85698
>Category:       ports
>Synopsis:       [UPDATE] www/amaya: update to 9.2.1, remove BROKEN
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Sep 03 19:20:22 GMT 2005
>Closed-Date:
>Last-Modified:
>Originator:     Alejandro Pulver
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
>Environment:





>Description:


Changes:
* Update to version 9.2.1.
* Use %%DATADIR%% in pkg-plist.
* Remove DIST_SUBDIR (now dictionaries come with the big tarball).
* Add OPTIONS (bookmarks, opengl and templates).
* Remove BROKEN for alpha (works).


>How-To-Repeat:





>Fix:


--- amaya.diff begins here ---
diff -urN /usr/ports/www/amaya/Makefile amaya/Makefile
--- /usr/ports/www/amaya/Makefile	Fri Jul 23 16:10:17 2004
+++ amaya/Makefile	Sat Sep  3 16:16:00 2005
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	amaya
-PORTVERSION=	8.5
+PORTVERSION=	9.2.1
 CATEGORIES=	www
 MASTER_SITES=	http://www.w3.org/Amaya/Distribution/ \
 		ftp://ftp.w3.org/pub/amaya/ \
@@ -18,80 +18,64 @@
 		ftp://ftp.ntua.gr/pub/www/W3C/amaya/ \
 		ftp://nic.funet.fi/index/WWW/W3/amaya/ \
 		http://www.nic.funet.fi/index/WWW/W3/amaya/
-DISTNAME=	${PORTNAME}-src-${PORTVERSION}
+DISTNAME=	${PORTNAME}-fullsrc-${PORTVERSION}
 EXTRACT_SUFX=	.tgz
-DIST_SUBDIR=	amaya
 
 MAINTAINER=	adam-ports@blacktabby.org
 COMMENT=	The W3C's testbed web editor/browser
 
+LIB_DEPENDS=	Xft.2:${PORTSDIR}/x11-fonts/libXft \
+		jpeg.9:${PORTSDIR}/graphics/jpeg \
+		png.5:${PORTSDIR}/graphics/png
+
 WRKSRC=		${WRKDIR}/Amaya/obj
 
-USE_GNOME=	gnometarget imlib
-USE_REINPLACE=	yes
 USE_GMAKE=	yes
+USE_REINPLACE=	yes
+USE_GNOME=	gtk12 imlib
+USE_ICONV=	yes
+
 GNU_CONFIGURE=	yes
 CONFIGURE_SCRIPT=	../configure
-CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LIBS="${LDFLAGS}"
+CONFIGURE_ARGS=		--with-gtk
 
-CFLAGS+=	-fpermissive
-
-CPPFLAGS=	-I${LOCALBASE}/include
-LDFLAGS=	-L${LOCALBASE}/lib
-
-DICT?=		none
-
-.if ${DICT} != "none"
-DISTFILES=	${DISTNAME}${EXTRACT_SUFX}
-.if ${DICT} == "all"
-DISTFILES+=	Dutch.tgz
-DISTFILES+=	English.tgz
-DISTFILES+=	French.tgz
-DISTFILES+=	German.tgz
-DISTFILES+=	Italian.tgz
-DISTFILES+=	Spanish.tgz
-DISTFILES+=	Swedish.tgz
-.else
-DISTFILES+=	${DICT:S/$/.tgz/g}
-.endif
-.endif
+OPTIONS=	BOOKMARKS "Enable bookmark support (experimental)" off \
+		OPENGL "Enable OpenGL support" off \
+		TEMPLATES "Enable template support (experimental)" off
+
+REALVERSION=	8.8.1
+DATADIR=	${PREFIX}/Amaya-${REALVERSION}
+PLIST_SUB=	REALVERSION="${REALVERSION}"
 
 .include <bsd.port.pre.mk>
 
-.if ${ARCH} == "alpha"
-BROKEN=		"Does not compile on alpha"
+.if defined(WITH_BOOKMARKS)
+CONFIGURE_ARGS+=	--enable-bookmarks
+.else
+CONFIGURE_ARGS+=	--disable-bookmarks
 .endif
 
-.if ${X_WINDOW_SYSTEM:L} != xfree86-3 && defined(WITH_OPENGL)
+.if defined(WITH_OPENGL)
 LIB_DEPENDS+=	gtkgl.5:${PORTSDIR}/x11-toolkits/gtkglarea
 USE_GL=		yes
 CONFIGURE_ARGS+=	--with-gl
-CFLAGS+=	${PTHREAD_CFLAGS}
-LDFLAGS+=	-lcompat ${PTHREAD_LIBS}
+CONFIGURE_ENV+=	LIBS="-lcompat"
+PLIST_SUB+=	GUI="gl"
+.else
+PLIST_SUB+=	GUI="gtk"
 .endif
 
-pre-everything::
-.if ${DICT} == "none"
-	@${ECHO_MSG} Several spellchecking dictionaries are available.  To use
-	@${ECHO_MSG} one of them, define DICT to be the appropriate language.
+.if defined(WITH_TEMPLATES)
+CONFIGURE_ARGS+=	--enable-templates
+.else
+CONFIGURE_ARGS+=	--disable-templates
 .endif
 
 post-extract:
 	@${MKDIR} ${WRKSRC}
 
 post-patch:
-	@${GREP} -lR "<malloc\.h>" ${WRKDIR} | ${XARGS} ${REINPLACE_CMD} -e \
-		's|<malloc\.h>|<stdlib.h>|g'
-
-post-install:
-	${INSTALL_DATA} ${WRKSRC}/../amaya/COPYRIGHT.html ${PREFIX}/Amaya/amaya
-.if ${DICT} != "none"
-	${INSTALL_DATA} ${WRKDIR}/*.dic ${PREFIX}/Amaya/dicopar
-	${MV} ${TMPPLIST} ${TMPPLIST}.new
-	cd ${WRKDIR} && ${LS} -1 *.dic | \
-		${SED} -e 's|^|Amaya/dicopar/|' > ${TMPPLIST}
-	${CAT} ${TMPPLIST}.new >> ${TMPPLIST}
-	${RM} ${TMPPLIST}.new
-.endif
+	@${GREP} -lR "<malloc\.h>" ${WRKDIR} | \
+		${XARGS} ${REINPLACE_CMD} -e 's|<malloc\.h>|<stdlib.h>|g'
 
 .include <bsd.port.post.mk>
diff -urN /usr/ports/www/amaya/distinfo amaya/distinfo
--- /usr/ports/www/amaya/distinfo	Mon May 10 15:17:25 2004
+++ amaya/distinfo	Mon Aug 15 12:22:35 2005
@@ -1,16 +1,2 @@
-MD5 (amaya/amaya-src-8.5.tgz) = 0ee123988b2e09fe60f9120df8dc9012
-SIZE (amaya/amaya-src-8.5.tgz) = 9713795
-MD5 (amaya/Dutch.tgz) = 3edb9cce5ce160d7270b23808c1d5981
-SIZE (amaya/Dutch.tgz) = 1228989
-MD5 (amaya/English.tgz) = c1f7122288329dc3cbb3871ea00eb4b4
-SIZE (amaya/English.tgz) = 619699
-MD5 (amaya/French.tgz) = 2412b593ec42c7aac2a341e54a7bb936
-SIZE (amaya/French.tgz) = 803561
-MD5 (amaya/German.tgz) = 400eeeae974a64d23de4fcdd609c30bc
-SIZE (amaya/German.tgz) = 1132270
-MD5 (amaya/Italian.tgz) = 05e2d25ee8af11faaaa25a33da89d504
-SIZE (amaya/Italian.tgz) = 323845
-MD5 (amaya/Spanish.tgz) = b504a75cd0f789a3046bf2041067b18b
-SIZE (amaya/Spanish.tgz) = 525267
-MD5 (amaya/Swedish.tgz) = 6536ab2e31e3f58618ba79d9fddc7f76
-SIZE (amaya/Swedish.tgz) = 96316
+MD5 (amaya-fullsrc-9.2.1.tgz) = 7941bbbae65619f16b41f431210b7e39
+SIZE (amaya-fullsrc-9.2.1.tgz) = 23112083
diff -urN /usr/ports/www/amaya/files/patch-ad amaya/files/patch-ad
--- /usr/ports/www/amaya/files/patch-ad	Mon Mar 22 16:45:17 2004
+++ amaya/files/patch-ad	Wed Dec 31 21:00:00 1969
@@ -1,13 +0,0 @@
---- ../Options.in.orig	Fri Jan 30 01:06:42 2004
-+++ ../Options.in	Wed Mar 10 14:37:42 2004
-@@ -27,8 +27,8 @@
- DIFF	= @DIFF@
- INSTALL	= @INSTALL@
- 
--INSTALL_DATA= $(INSTALL) -m 444
--INSTALL_BIN= $(INSTALL) -m 755
-+INSTALL_DATA=@INSTALL_DATA@
-+INSTALL_BIN=@INSTALL_PROGRAM@
- 
- CEXTRACT_FLAGS=@CEXTRACT_FLAGS@
- 
diff -urN /usr/ports/www/amaya/files/patch-configure amaya/files/patch-configure
--- /usr/ports/www/amaya/files/patch-configure	Sun May  2 11:59:06 2004
+++ amaya/files/patch-configure	Wed Dec 31 21:00:00 1969
@@ -1,24 +0,0 @@
---- ../configure.orig	Thu Apr 15 16:39:55 2004
-+++ ../configure	Sat Apr 17 19:02:52 2004
-@@ -13851,9 +13851,9 @@
-     fi
-   done
- 
--  GTK_INCLUDES="${GTK_INCLUDES} `gtk-config --cflags`"
-+  GTK_INCLUDES="${GTK_INCLUDES} `imlib-config --cflags-gdk`"
- 
--  GTK_LIBRARIES="`gtk-config --libs`"
-+  GTK_LIBRARIES="`imlib-config --libs-gdk`"
-     if test "${with_gl}" != "yes" ; then
-    GTK_LIBRARIES="${GTK_LIBRARIES} -lgdk_imlib"
-   fi
-@@ -14849,6 +14849,9 @@
- if test "$with_dav" = "yes" ; then
- 
-     dav_frag=$srcdir/davlib/Makefile.dav
-+else
-+
-+    dav_frag=/dev/null
- fi
- 
- 
diff -urN /usr/ports/www/amaya/files/patch-libwww-Library-src-wwwsys.h amaya/files/patch-libwww-Library-src-wwwsys.h
--- /usr/ports/www/amaya/files/patch-libwww-Library-src-wwwsys.h	Wed Dec 31 21:00:00 1969
+++ amaya/files/patch-libwww-Library-src-wwwsys.h	Sun Aug 14 11:17:32 2005
@@ -0,0 +1,13 @@
+--- ../../libwww/Library/src/wwwsys.h.orig	Fri Aug 12 20:41:18 2005
++++ ../../libwww/Library/src/wwwsys.h	Sun Aug 14 11:16:55 2005
+@@ -1320,10 +1320,6 @@
+ #define socerrno errno
+ #endif
+ 
+-#ifndef HAVE_STRERROR				  /* Otherwise use the table */
+-extern char *sys_errlist[];
+-extern int sys_nerr;
+-#endif
+ 
+ /*
+ .
diff -urN /usr/ports/www/amaya/files/patch-thotlib-internals-h-picture.h amaya/files/patch-thotlib-internals-h-picture.h
--- /usr/ports/www/amaya/files/patch-thotlib-internals-h-picture.h	Wed Dec 31 21:00:00 1969
+++ amaya/files/patch-thotlib-internals-h-picture.h	Mon Aug 15 16:40:29 2005
@@ -0,0 +1,11 @@
+--- ../thotlib/internals/h/picture.h.orig	Thu Jun  2 07:12:22 2005
++++ ../thotlib/internals/h/picture.h	Mon Aug 15 16:39:55 2005
+@@ -9,6 +9,8 @@
+  * Definition for picture management
+  */
+ 
++#include <gdk_imlib.h>
++
+ #ifdef _WINGUI
+ #include <windows.h>
+ #endif /* _WINGUI */
diff -urN /usr/ports/www/amaya/files/patch-thotlib-presentation-presvariables.c amaya/files/patch-thotlib-presentation-presvariables.c
--- /usr/ports/www/amaya/files/patch-thotlib-presentation-presvariables.c	Wed Dec 31 21:00:00 1969
+++ amaya/files/patch-thotlib-presentation-presvariables.c	Sun Aug 14 11:20:50 2005
@@ -0,0 +1,20 @@
+--- ../thotlib/presentation/presvariables.c.orig	Tue Jun  7 10:37:13 2005
++++ ../thotlib/presentation/presvariables.c	Sat Aug 13 10:24:34 2005
+@@ -1263,7 +1263,7 @@
+ 	    /* date en anglais */
+ 	    pt = &tod;
+ 	    *pt = time (NULL);
+-	    ptm = localtime (pt);
++	    ptm = localtime ((const time_t *)pt);
+ 	    GetCounterValue (ptm->tm_year, CntDecimal, number, &l);
+ 	    CopyStringToBuffer ((unsigned char *)number, pAb->AbText, &l);
+ 	    pAb->AbVolume += l;
+@@ -1283,7 +1283,7 @@
+ 	    /* date en francais */
+ 	    pt = &tod;
+ 	    *pt = time (NULL);
+-	    ptm = localtime (pt);
++	    ptm = localtime ((const time_t *)pt);
+ 	    GetCounterValue (ptm->tm_mday, CntDecimal, number, &l);
+ 	    CopyStringToBuffer ((unsigned char *)number, pAb->AbText, &l);
+ 	    pAb->AbVolume += l;
diff -urN /usr/ports/www/amaya/pkg-plist amaya/pkg-plist
--- /usr/ports/www/amaya/pkg-plist	Sun May  2 11:59:06 2004
+++ amaya/pkg-plist	Fri Sep  2 14:33:01 2005
@@ -1,911 +1,1471 @@
-Amaya/amaya/Amaya.svg
-Amaya/amaya/AmayaPage.html
-Amaya/amaya/AmayaPage.html.de
-Amaya/amaya/AmayaPage.html.es
-Amaya/amaya/AmayaPage.html.fr
-Amaya/amaya/AmayaSrcSyncIndex.gif
-Amaya/amaya/Annot.conf
-Amaya/amaya/COPYRIGHT.html
-Amaya/amaya/HTML.STR
-Amaya/amaya/HTML.conf
-Amaya/amaya/HTML.en
-Amaya/amaya/HTML.trans
-Amaya/amaya/HTML.trans.es
-Amaya/amaya/HTML.trans.fr
-Amaya/amaya/HTMLP.PRS
-Amaya/amaya/HTMLPBW.PRS
-Amaya/amaya/HTMLPL.PRS
-Amaya/amaya/HTMLPLL.PRS
-Amaya/amaya/HTMLPLP.PRS
-Amaya/amaya/HTMLPLPUS.PRS
-Amaya/amaya/HTMLPP.PRS
-Amaya/amaya/HTMLPPUS.PRS
-Amaya/amaya/HTMLT.TRA
-Amaya/amaya/HTMLT11.TRA
-Amaya/amaya/HTMLTT.TRA
-Amaya/amaya/HTMLTX.TRA
-Amaya/amaya/HTMLUSL.PRS
-Amaya/amaya/HTMLUSLL.PRS
-Amaya/amaya/MathML.STR
-Amaya/amaya/MathML.conf
-Amaya/amaya/MathML.en
-Amaya/amaya/MathML.trans
-Amaya/amaya/MathML.trans.es
-Amaya/amaya/MathML.trans.fr
-Amaya/amaya/MathMLP.PRS
-Amaya/amaya/MathMLT.TRA
-Amaya/amaya/MathMLTX.TRA
-Amaya/amaya/SVG.STR
-Amaya/amaya/SVG.conf
-Amaya/amaya/SVG.en
-Amaya/amaya/SVGP.PRS
-Amaya/amaya/SVGT.TRA
-Amaya/amaya/SVGTX.TRA
-Amaya/amaya/TextFile.STR
-Amaya/amaya/TextFile.conf
-Amaya/amaya/TextFile.en
-Amaya/amaya/TextFileP.PRS
-Amaya/amaya/TextFilePL.PRS
-Amaya/amaya/TextFilePP.PRS
-Amaya/amaya/TextFilePPUS.PRS
-Amaya/amaya/TextFileT.TRA
-Amaya/amaya/TextFileUSL.PRS
-Amaya/amaya/Timeline.STR
-Amaya/amaya/Timeline.conf
-Amaya/amaya/Timeline.en
-Amaya/amaya/TimelineP.PRS
-Amaya/amaya/TimelineT.TRA
-Amaya/amaya/TimelineTX.TRA
-Amaya/amaya/Topics.conf
-Amaya/amaya/XLink.STR
-Amaya/amaya/XLink.en
-Amaya/amaya/XLinkP.PRS
-Amaya/amaya/XLinkT.TRA
-Amaya/amaya/XML.STR
-Amaya/amaya/XML.conf
-Amaya/amaya/XML.en
-Amaya/amaya/XMLP.PRS
-Amaya/amaya/XMLPL.PRS
-Amaya/amaya/XMLPP.PRS
-Amaya/amaya/XMLPPUS.PRS
-Amaya/amaya/XMLT.TRA
-Amaya/amaya/XMLUSL.PRS
-Amaya/amaya/advice.png
-Amaya/amaya/amaya.png
-Amaya/amaya/anim_color_sh.png
-Amaya/amaya/anim_color_sh_db.png
-Amaya/amaya/anim_help_sh.png
-Amaya/amaya/anim_motion_sh.png
-Amaya/amaya/anim_motion_sh_db.png
-Amaya/amaya/annot.gif
-Amaya/amaya/annot.png
-Amaya/amaya/annotorp.gif
-Amaya/amaya/change.png
-Amaya/amaya/collapse1.png
-Amaya/amaya/collapse2.png
-Amaya/amaya/comment.png
-Amaya/amaya/example.png
-Amaya/amaya/explanation.png
-Amaya/amaya/lost.gif
-Amaya/amaya/option.gif
-Amaya/amaya/question.png
-Amaya/amaya/radio-s.gif
-Amaya/amaya/radio.gif
-Amaya/amaya/seealso.png
-Amaya/amaya/slider.gif
-Amaya/amaya/slidergl.gif
-Amaya/amaya/target.gif
-Amaya/amaya/timeline_arrow.gif
-Amaya/amaya/timeline_cross.gif
-Amaya/amaya/timelinetoolbar_sh4.png
-Amaya/amaya/toggle-s.gif
-Amaya/amaya/toggle.gif
-Amaya/annotlib/Annot.STR
-Amaya/annotlib/AnnotP.PRS
-Amaya/annotlib/AnnotT.TRA
-Amaya/annotlib/Topics.STR
-Amaya/annotlib/Topics.en
-Amaya/annotlib/TopicsP.PRS
-Amaya/annotlib/closed.png
-Amaya/annotlib/open.png
-Amaya/annotlib/selected.gif
-Amaya/applis/bin/amaya
-@exec ln -sf %D/%F %D/bin/amaya
-@unexec rm -f %D/bin/amaya
-Amaya/applis/bin/print
-Amaya/config/XKeysymDB
-Amaya/config/amaya.emacs
-Amaya/config/amaya.keyboard
-Amaya/config/amaya.profiles
-Amaya/config/annot.schemas
-Amaya/config/annotschema.rdf
-Amaya/config/annottypes.rdf
-Amaya/config/de-amayadialogue
-Amaya/config/de-amayamsg
-Amaya/config/de-corrdialogue
-Amaya/config/de-libdialogue
-Amaya/config/en-amayadialogue
-Amaya/config/en-amayamsg
-Amaya/config/en-corrdialogue
-Amaya/config/en-libdialogue
-Amaya/config/es-amayadialogue
-Amaya/config/es-amayamsg
-Amaya/config/es-corrdialogue
-Amaya/config/es-libdialogue
-Amaya/config/fi-amayadialogue
-Amaya/config/fi-amayamsg
-Amaya/config/fi-corrdialogue
-Amaya/config/fi-libdialogue
-Amaya/config/fonts.gl
-Amaya/config/fonts.gl.deb
-Amaya/config/fonts.gl.win
-Amaya/config/fonts.tmpl
-Amaya/config/fonts.unix
-Amaya/config/fonts.unix.deb
-Amaya/config/fonts.win
-Amaya/config/fr-amayadialogue
-Amaya/config/fr-amayamsg
-Amaya/config/fr-corrdialogue
-Amaya/config/fr-libdialogue
-Amaya/config/it-amayadialogue
-Amaya/config/it-amayamsg
-Amaya/config/it-corrdialogue
-Amaya/config/it-libdialogue
-Amaya/config/libconfig/Forward.png
-Amaya/config/libconfig/Forward.svg
-Amaya/config/libconfig/arrow1.png
-Amaya/config/libconfig/arrow1.svg
-Amaya/config/libconfig/arrow2.png
-Amaya/config/libconfig/arrow2.svg
-Amaya/config/libconfig/arrow3.png
-Amaya/config/libconfig/arrow3.svg
-Amaya/config/libconfig/arrow4.png
-Amaya/config/libconfig/arrow4.svg
-Amaya/config/libconfig/arrow5.png
-Amaya/config/libconfig/arrow5.svg
-Amaya/config/libconfig/arrow6.png
-Amaya/config/libconfig/arrow6.svg
-Amaya/config/libconfig/arrow7.png
-Amaya/config/libconfig/arrow7.svg
-Amaya/config/libconfig/audio.png
-Amaya/config/libconfig/audio.svg
-Amaya/config/libconfig/catalogue.css
-Amaya/config/libconfig/colorbox.png
-Amaya/config/libconfig/colorbox.svg
-Amaya/config/libconfig/default_cat.lhtml
-Amaya/config/libconfig/trash.png
-Amaya/config/libconfig/trash.svg
-Amaya/config/pt-amayadialogue
-Amaya/config/pt-amayamsg
-Amaya/config/pt-corrdialogue
-Amaya/config/pt-libdialogue
-Amaya/config/replytypes.rdf
-Amaya/config/thread.rdf
-Amaya/config/tr-amayadialogue
-Amaya/config/tr-amayamsg
-Amaya/config/tr-corrdialogue
-Amaya/config/tr-libdialogue
-Amaya/config/typeIcon.rdf
-Amaya/config/unix-thot.rc
-Amaya/dicopar/Eperso.dic
-Amaya/dicopar/Eprinc.dic
-Amaya/dicopar/Fperso.dic
-Amaya/dicopar/Fprinc.dic
-Amaya/dicopar/alphabet
-Amaya/dicopar/american.ptn
-Amaya/dicopar/clavier
-Amaya/dicopar/deutsch.ptn
-Amaya/dicopar/english.ptn
-Amaya/dicopar/espanol.ptn
-Amaya/dicopar/finish.ptn
-Amaya/dicopar/francais.ptn
-Amaya/dicopar/italiano.ptn
-Amaya/dicopar/nederl.ptn
-Amaya/dicopar/portug.ptn
-Amaya/dicopar/swedish.ptn
-Amaya/doc/html/Access.html
-Amaya/doc/html/Access.html.de
-Amaya/doc/html/Access.html.es
-Amaya/doc/html/Access.html.fr
-Amaya/doc/html/Annotations.html
-Amaya/doc/html/Annotations.html.de
-Amaya/doc/html/Annotations.html.es
-Amaya/doc/html/Annotations.html.fr
-Amaya/doc/html/Attributes.html
-Amaya/doc/html/Attributes.html.de
-Amaya/doc/html/Attributes.html.es
-Amaya/doc/html/Attributes.html.fr
-Amaya/doc/html/Browsing.html
-Amaya/doc/html/Browsing.html.de
-Amaya/doc/html/Browsing.html.es
-Amaya/doc/html/Browsing.html.fr
-Amaya/doc/html/Changing.html
-Amaya/doc/html/Changing.html.de
-Amaya/doc/html/Changing.html.es
-Amaya/doc/html/Changing.html.fr
-Amaya/doc/html/Configure.html
-Amaya/doc/html/Configure.html.de
-Amaya/doc/html/Configure.html.es
-Amaya/doc/html/Configure.html.fr
-Amaya/doc/html/Cover.html.de
-Amaya/doc/html/Creating.html
-Amaya/doc/html/Creating.html.de
-Amaya/doc/html/Creating.html.es
-Amaya/doc/html/Creating.html.fr
-Amaya/doc/html/Document.html
-Amaya/doc/html/Document.html.de
-Amaya/doc/html/Document.html.es
-Amaya/doc/html/Document.html.fr
-Amaya/doc/html/EditChar.html
-Amaya/doc/html/EditChar.html.de
-Amaya/doc/html/EditChar.html.es
-Amaya/doc/html/EditChar.html.fr
-Amaya/doc/html/HTML-elements/40styling.html
-Amaya/doc/html/HTML-elements/40styling.html.de
-Amaya/doc/html/HTML-elements/40styling.html.es
-Amaya/doc/html/HTML-elements/40styling.html.fr
-Amaya/doc/html/HTML-elements/address.html
-Amaya/doc/html/HTML-elements/address.html.de
-Amaya/doc/html/HTML-elements/address.html.es
-Amaya/doc/html/HTML-elements/address.html.fr
-Amaya/doc/html/HTML-elements/creating_new_documents.html.de
-Amaya/doc/html/HTML-elements/headings.html
-Amaya/doc/html/HTML-elements/headings.html.de
-Amaya/doc/html/HTML-elements/headings.html.es
-Amaya/doc/html/HTML-elements/headings.html.fr
-Amaya/doc/html/HTML-elements/infoTypes.html
-Amaya/doc/html/HTML-elements/infoTypes.html.de
-Amaya/doc/html/HTML-elements/infoTypes.html.es
-Amaya/doc/html/HTML-elements/infoTypes.html.fr
-Amaya/doc/html/HTML-elements/inline.html
-Amaya/doc/html/HTML-elements/inline.html.de
-Amaya/doc/html/HTML-elements/inline.html.es
-Amaya/doc/html/HTML-elements/inline.html.fr
-Amaya/doc/html/HTML-elements/lists.html
-Amaya/doc/html/HTML-elements/lists.html.de
-Amaya/doc/html/HTML-elements/lists.html.es
-Amaya/doc/html/HTML-elements/lists.html.fr
-Amaya/doc/html/HTML-elements/structure.html
-Amaya/doc/html/HTML-elements/structure.html.de
-Amaya/doc/html/HTML-elements/structure.html.es
-Amaya/doc/html/HTML-elements/structure.html.fr
-Amaya/doc/html/HTML.html
-Amaya/doc/html/HTML.html.de
-Amaya/doc/html/HTML.html.es
-Amaya/doc/html/HTML.html.fr
-Amaya/doc/html/ImageMaps.html
-Amaya/doc/html/ImageMaps.html.de
-Amaya/doc/html/ImageMaps.html.es
-Amaya/doc/html/ImageMaps.html.fr
-Amaya/doc/html/Index-org.html.de
-Amaya/doc/html/Index.html
-Amaya/doc/html/Index.html.de
-Amaya/doc/html/Index.html.es
-Amaya/doc/html/Index.html.fr
-Amaya/doc/html/Keyboard.html.es
-Amaya/doc/html/Links.html
-Amaya/doc/html/Links.html.de
-Amaya/doc/html/Links.html.es
-Amaya/doc/html/Links.html.fr
-Amaya/doc/html/MakeBook.html
-Amaya/doc/html/MakeBook.html.de
-Amaya/doc/html/MakeBook.html.es
-Amaya/doc/html/MakeBook.html.fr
-Amaya/doc/html/Manual.html
-Amaya/doc/html/Manual.html.de
-Amaya/doc/html/Manual.html.es
-Amaya/doc/html/Manual.html.fr
-Amaya/doc/html/Math.html
-Amaya/doc/html/Math.html.de
-Amaya/doc/html/Math.html.es
-Amaya/doc/html/Math.html.fr
-Amaya/doc/html/Numbering.html
-Amaya/doc/html/Numbering.html.de
-Amaya/doc/html/Numbering.html.es
-Amaya/doc/html/Numbering.html.fr
-Amaya/doc/html/Printing.html
-Amaya/doc/html/Printing.html.de
-Amaya/doc/html/Printing.html.es
-Amaya/doc/html/Printing.html.fr
-Amaya/doc/html/Publishing.html
-Amaya/doc/html/Publishing.html.de
-Amaya/doc/html/Publishing.html.es
-Amaya/doc/html/Publishing.html.fr
-Amaya/doc/html/SVG.html
-Amaya/doc/html/SVG.html.de
-Amaya/doc/html/SVG.html.es
-Amaya/doc/html/SVG.html.fr
-Amaya/doc/html/Searching.html
-Amaya/doc/html/Searching.html.de
-Amaya/doc/html/Searching.html.es
-Amaya/doc/html/Searching.html.fr
-Amaya/doc/html/Selecting.html
-Amaya/doc/html/Selecting.html.de
-Amaya/doc/html/Selecting.html.es
-Amaya/doc/html/Selecting.html.fr
-Amaya/doc/html/ShortCuts.html
-Amaya/doc/html/ShortCuts.html.de
-Amaya/doc/html/ShortCuts.html.es
-Amaya/doc/html/ShortCuts.html.fr
-Amaya/doc/html/SpellChecking.html
-Amaya/doc/html/SpellChecking.html.de
-Amaya/doc/html/SpellChecking.html.es
-Amaya/doc/html/SpellChecking.html.fr
-Amaya/doc/html/StyleSheets.html
-Amaya/doc/html/StyleSheets.html.de
-Amaya/doc/html/StyleSheets.html.es
-Amaya/doc/html/StyleSheets.html.fr
-Amaya/doc/html/Tables.html
-Amaya/doc/html/Tables.html.de
-Amaya/doc/html/Tables.html.es
-Amaya/doc/html/Tables.html.fr
-Amaya/doc/html/Transform.html
-Amaya/doc/html/Transform.html.es
-Amaya/doc/html/Tutorial.html.fr
-Amaya/doc/html/Views.html
-Amaya/doc/html/Views.html.de
-Amaya/doc/html/Views.html.es
-Amaya/doc/html/Views.html.fr
-Amaya/doc/html/WebDAV.html
-Amaya/doc/html/WebDAV.html.es
-Amaya/doc/html/Xml.html
-Amaya/doc/html/Xml.html.de
-Amaya/doc/html/Xml.html.es
-Amaya/doc/html/Xml.html.fr
-Amaya/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html
-Amaya/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html.de
-Amaya/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html.es
-Amaya/doc/html/accessibility_in_amaya/about_producing_accessible_content.html
-Amaya/doc/html/accessibility_in_amaya/about_producing_accessible_content.html.de
-Amaya/doc/html/accessibility_in_amaya/about_producing_accessible_content.html.es
-Amaya/doc/html/accessibility_in_amaya/accessibility_in_amaya.html
-Amaya/doc/html/accessibility_in_amaya/accessibility_in_amaya.html.de
-Amaya/doc/html/accessibility_in_amaya/accessibility_in_amaya.html.es
-Amaya/doc/html/attaching_annotations/about_reading_annotations.html
-Amaya/doc/html/attaching_annotations/about_reading_annotations.html.de
-Amaya/doc/html/attaching_annotations/about_reading_annotations.html.es
-Amaya/doc/html/attaching_annotations/about_storing_local_annotations.html
-Amaya/doc/html/attaching_annotations/about_storing_local_annotations.html.de
-Amaya/doc/html/attaching_annotations/about_storing_local_annotations.html.es
-Amaya/doc/html/attaching_annotations/about_storing_remote_annotations.html
-Amaya/doc/html/attaching_annotations/about_storing_remote_annotations.html.de
-Amaya/doc/html/attaching_annotations/about_storing_remote_annotations.html.es
-Amaya/doc/html/attaching_annotations/annotation_issues.html
-Amaya/doc/html/attaching_annotations/annotation_issues.html.de
-Amaya/doc/html/attaching_annotations/annotation_issues.html.es
-Amaya/doc/html/attaching_annotations/annotation_menu.html
-Amaya/doc/html/attaching_annotations/annotation_menu.html.de
-Amaya/doc/html/attaching_annotations/annotation_menu.html.es
-Amaya/doc/html/attaching_annotations/configuring_annotation_settings.html
-Amaya/doc/html/attaching_annotations/configuring_annotation_settings.html.de
-Amaya/doc/html/attaching_annotations/configuring_annotation_settings.html.es
-Amaya/doc/html/attaching_annotations/configuring_icons.html
-Amaya/doc/html/attaching_annotations/configuring_icons.html.de
-Amaya/doc/html/attaching_annotations/configuring_icons.html.es
-Amaya/doc/html/attaching_annotations/creating_an_annotation.html
-Amaya/doc/html/attaching_annotations/creating_an_annotation.html.de
-Amaya/doc/html/attaching_annotations/creating_an_annotation.html.es
-Amaya/doc/html/attaching_annotations/deleting_an_annotation.html
-Amaya/doc/html/attaching_annotations/deleting_an_annotation.html.de
-Amaya/doc/html/attaching_annotations/deleting_an_annotation.html.es
-Amaya/doc/html/attaching_annotations/loading_and_presenting_annotations.html
-Amaya/doc/html/attaching_annotations/loading_and_presenting_annotations.html.de
-Amaya/doc/html/attaching_annotations/loading_and_presenting_annotations.html.es
-Amaya/doc/html/attaching_annotations/moving_annotations.html
-Amaya/doc/html/attaching_annotations/moving_annotations.html.de
-Amaya/doc/html/attaching_annotations/moving_annotations.html.es
-Amaya/doc/html/attaching_annotations/navigating_annotations.html
-Amaya/doc/html/attaching_annotations/navigating_annotations.html.de
-Amaya/doc/html/attaching_annotations/navigating_annotations.html.es
-Amaya/doc/html/attaching_annotations/replying_to_annotations.html
-Amaya/doc/html/attaching_annotations/replying_to_annotations.html.de
-Amaya/doc/html/attaching_annotations/replying_to_annotations.html.es
-Amaya/doc/html/attaching_annotations/what_is_an_annotation.html
-Amaya/doc/html/attaching_annotations/what_is_an_annotation.html.de
-Amaya/doc/html/attaching_annotations/what_is_an_annotation.html.es
-Amaya/doc/html/bookmarks.html
-Amaya/doc/html/bookmarks.html.es
-Amaya/doc/html/browsing/about_access_keys.html
-Amaya/doc/html/browsing/about_access_keys.html.de
-Amaya/doc/html/browsing/about_access_keys.html.es
-Amaya/doc/html/browsing/about_moving_backward_and_forward.html
-Amaya/doc/html/browsing/about_moving_backward_and_forward.html.de
-Amaya/doc/html/browsing/about_moving_backward_and_forward.html.es
-Amaya/doc/html/browsing/about_target_anchors.html
-Amaya/doc/html/browsing/about_target_anchors.html.de
-Amaya/doc/html/browsing/about_target_anchors.html.es
-Amaya/doc/html/browsing/activating_a_link.html
-Amaya/doc/html/browsing/activating_a_link.html.de
-Amaya/doc/html/browsing/activating_a_link.html.es
-Amaya/doc/html/browsing/forms.html
-Amaya/doc/html/browsing/forms.html.de
-Amaya/doc/html/browsing/forms.html.es
-Amaya/doc/html/browsing/opening_documents.html
-Amaya/doc/html/browsing/opening_documents.html.de
-Amaya/doc/html/browsing/opening_documents.html.es
-Amaya/doc/html/browsing/reloading_a_page.html
-Amaya/doc/html/browsing/reloading_a_page.html.de
-Amaya/doc/html/browsing/reloading_a_page.html.es
-Amaya/doc/html/browsing/working_with_the_amaya_browser_and_editor.html
-Amaya/doc/html/browsing/working_with_the_amaya_browser_and_editor.html.de
-Amaya/doc/html/browsing/working_with_the_amaya_browser_and_editor.html.es
-Amaya/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html
-Amaya/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html.de
-Amaya/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html.es
-Amaya/doc/html/configuring_amaya/about_keyboard_shortcuts.html
-Amaya/doc/html/configuring_amaya/about_keyboard_shortcuts.html.de
-Amaya/doc/html/configuring_amaya/about_keyboard_shortcuts.html.es
-Amaya/doc/html/configuring_amaya/configuring_amaya.html
-Amaya/doc/html/configuring_amaya/configuring_amaya.html.de
-Amaya/doc/html/configuring_amaya/configuring_amaya.html.es
-Amaya/doc/html/configuring_amaya/menu_preferences.html
-Amaya/doc/html/configuring_amaya/menu_preferences.html.de
-Amaya/doc/html/configuring_amaya/menu_preferences.html.es
-Amaya/doc/html/editing_attributes/copying_attributes.html
-Amaya/doc/html/editing_attributes/copying_attributes.html.de
-Amaya/doc/html/editing_attributes/copying_attributes.html.es
-Amaya/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html
-Amaya/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html.de
-Amaya/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html.es
-Amaya/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html
-Amaya/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html.de
-Amaya/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html.es
-Amaya/doc/html/editing_attributes/working_with_attributes.html
-Amaya/doc/html/editing_attributes/working_with_attributes.html.de
-Amaya/doc/html/editing_attributes/working_with_attributes.html.es
-Amaya/doc/html/editing_documents/Transform.html.de
-Amaya/doc/html/editing_documents/about_inserting_a_division.html
-Amaya/doc/html/editing_documents/about_inserting_a_division.html.de
-Amaya/doc/html/editing_documents/about_inserting_a_division.html.es
-Amaya/doc/html/editing_documents/about_merging_elements.html
-Amaya/doc/html/editing_documents/about_merging_elements.html.de
-Amaya/doc/html/editing_documents/about_merging_elements.html.es
-Amaya/doc/html/editing_documents/changing_the_document_structure.html
-Amaya/doc/html/editing_documents/changing_the_document_structure.html.de
-Amaya/doc/html/editing_documents/changing_the_document_structure.html.es
-Amaya/doc/html/editing_documents/creating_new_documents.html
-Amaya/doc/html/editing_documents/creating_new_documents.html.es
-Amaya/doc/html/editing_documents/the_transform_command.html
-Amaya/doc/html/editing_documents/the_transform_command.html.de
-Amaya/doc/html/editing_documents/the_transform_command.html.es
-Amaya/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html
-Amaya/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html.de
-Amaya/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html.es
-Amaya/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html
-Amaya/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html.de
-Amaya/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html.es
-Amaya/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html
-Amaya/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html.de
-Amaya/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html.es
-Amaya/doc/html/editing_mathematics/about_entering_math_characters.html
-Amaya/doc/html/editing_mathematics/about_entering_math_characters.html.de
-Amaya/doc/html/editing_mathematics/about_entering_math_characters.html.es
-Amaya/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html
-Amaya/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html.de
-Amaya/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html.es
-Amaya/doc/html/editing_mathematics/about_linking_in_mathml.html
-Amaya/doc/html/editing_mathematics/about_linking_in_mathml.html.de
-Amaya/doc/html/editing_mathematics/about_linking_in_mathml.html.es
-Amaya/doc/html/editing_mathematics/editing_math_expressions.html
-Amaya/doc/html/editing_mathematics/editing_math_expressions.html.de
-Amaya/doc/html/editing_mathematics/editing_math_expressions.html.es
-Amaya/doc/html/editing_mathematics/math_issues.html
-Amaya/doc/html/editing_mathematics/math_issues.html.de
-Amaya/doc/html/editing_mathematics/math_issues.html.es
-Amaya/doc/html/editing_mathematics/the_math_palette_and_the_types.html
-Amaya/doc/html/editing_mathematics/the_math_palette_and_the_types.html.de
-Amaya/doc/html/editing_mathematics/the_math_palette_and_the_types.html.es
-Amaya/doc/html/editing_mathematics/viewing_structure_in_mathml.html
-Amaya/doc/html/editing_mathematics/viewing_structure_in_mathml.html.de
-Amaya/doc/html/editing_mathematics/viewing_structure_in_mathml.html.es
-Amaya/doc/html/editing_mathematics/working_with_math_expressions.html
-Amaya/doc/html/editing_mathematics/working_with_math_expressions.html.de
-Amaya/doc/html/editing_mathematics/working_with_math_expressions.html.es
-Amaya/doc/html/editing_tables/add_column.html
-Amaya/doc/html/editing_tables/add_column.html.de
-Amaya/doc/html/editing_tables/add_column.html.es
-Amaya/doc/html/editing_tables/add_row.html
-Amaya/doc/html/editing_tables/add_row.html.de
-Amaya/doc/html/editing_tables/add_row.html.es
-Amaya/doc/html/editing_tables/add_tbody.html
-Amaya/doc/html/editing_tables/add_tbody.html.de
-Amaya/doc/html/editing_tables/add_tbody.html.es
-Amaya/doc/html/editing_tables/create_table.html
-Amaya/doc/html/editing_tables/create_table.html.de
-Amaya/doc/html/editing_tables/create_table.html.es
-Amaya/doc/html/editing_tables/remove_column.html
-Amaya/doc/html/editing_tables/remove_column.html.de
-Amaya/doc/html/editing_tables/remove_column.html.es
-Amaya/doc/html/editing_tables/working_with_tables.html
-Amaya/doc/html/editing_tables/working_with_tables.html.de
-Amaya/doc/html/editing_tables/working_with_tables.html.es
-Amaya/doc/html/elements/buttons_and_types_menu.html
-Amaya/doc/html/elements/buttons_and_types_menu.html.de
-Amaya/doc/html/elements/buttons_and_types_menu.html.es
-Amaya/doc/html/elements/changing_the_document_title.html
-Amaya/doc/html/elements/changing_the_document_title.html.de
-Amaya/doc/html/elements/changing_the_document_title.html.es
-Amaya/doc/html/elements/creating_nested_structures.html
-Amaya/doc/html/elements/creating_nested_structures.html.de
-Amaya/doc/html/elements/creating_nested_structures.html.es
-Amaya/doc/html/elements/exiting_anchors.html
-Amaya/doc/html/elements/exiting_anchors.html.de
-Amaya/doc/html/elements/exiting_anchors.html.es
-Amaya/doc/html/elements/the_enter_key.html
-Amaya/doc/html/elements/the_enter_key.html.de
-Amaya/doc/html/elements/the_enter_key.html.es
-Amaya/doc/html/elements/the_structure_menu.html
-Amaya/doc/html/elements/the_structure_menu.html.de
-Amaya/doc/html/elements/the_structure_menu.html.es
-Amaya/doc/html/index.css
-Amaya/doc/html/linking/changing_a_link.html
-Amaya/doc/html/linking/changing_a_link.html.de
-Amaya/doc/html/linking/changing_a_link.html.es
-Amaya/doc/html/linking/creating_a_target_anchor.html
-Amaya/doc/html/linking/creating_a_target_anchor.html.de
-Amaya/doc/html/linking/creating_a_target_anchor.html.es
-Amaya/doc/html/linking/creating_a_target_element.html
-Amaya/doc/html/linking/creating_a_target_element.html.de
-Amaya/doc/html/linking/creating_a_target_element.html.es
-Amaya/doc/html/linking/creating_an_external_link.html
-Amaya/doc/html/linking/creating_an_external_link.html.de
-Amaya/doc/html/linking/creating_an_external_link.html.es
-Amaya/doc/html/linking/creating_an_internal_link.html
-Amaya/doc/html/linking/creating_an_internal_link.html.de
-Amaya/doc/html/linking/creating_an_internal_link.html.es
-Amaya/doc/html/linking/removing_a_link_or_a_target_anchor.html
-Amaya/doc/html/linking/removing_a_link_or_a_target_anchor.html.de
-Amaya/doc/html/linking/removing_a_link_or_a_target_anchor.html.es
-Amaya/doc/html/numbering_sections/numbering_sections.html
-Amaya/doc/html/numbering_sections/numbering_sections.html.de
-Amaya/doc/html/numbering_sections/numbering_sections.html.es
-Amaya/doc/html/printing/about_controlling_printing_with_css.html
-Amaya/doc/html/printing/about_controlling_printing_with_css.html.de
-Amaya/doc/html/printing/about_controlling_printing_with_css.html.es
-Amaya/doc/html/printing/print_command.html
-Amaya/doc/html/printing/print_command.html.de
-Amaya/doc/html/printing/print_command.html.es
-Amaya/doc/html/printing/printing_documents.html
-Amaya/doc/html/printing/printing_documents.html.de
-Amaya/doc/html/printing/printing_documents.html.es
-Amaya/doc/html/printing/unix_platforms.html
-Amaya/doc/html/printing/unix_platforms.html.de
-Amaya/doc/html/printing/unix_platforms.html.es
-Amaya/doc/html/printing/using_the_setup_and_print_command.html
-Amaya/doc/html/printing/using_the_setup_and_print_command.html.de
-Amaya/doc/html/printing/using_the_setup_and_print_command.html.es
-Amaya/doc/html/printing/windows_platforms.html
-Amaya/doc/html/printing/windows_platforms.html.de
-Amaya/doc/html/printing/windows_platforms.html.es
-Amaya/doc/html/saving_and_publishing_documents/about_saving_in_html.html
-Amaya/doc/html/saving_and_publishing_documents/about_saving_in_html.html.de
-Amaya/doc/html/saving_and_publishing_documents/about_saving_in_html.html.es
-Amaya/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html
-Amaya/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html.de
-Amaya/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html.es
-Amaya/doc/html/saving_and_publishing_documents/saving_documents_as_text.html
-Amaya/doc/html/saving_and_publishing_documents/saving_documents_as_text.html.de
-Amaya/doc/html/saving_and_publishing_documents/saving_documents_as_text.html.es
-Amaya/doc/html/saving_and_publishing_documents/the_save_command.html
-Amaya/doc/html/saving_and_publishing_documents/the_save_command.html.de
-Amaya/doc/html/saving_and_publishing_documents/the_save_command.html.es
-Amaya/doc/html/saving_and_publishing_documents/the_saveas_command.html
-Amaya/doc/html/saving_and_publishing_documents/the_saveas_command.html.de
-Amaya/doc/html/saving_and_publishing_documents/the_saveas_command.html.es
-Amaya/doc/html/searching_and_replacing_text/searching_and_replacing_text.html
-Amaya/doc/html/searching_and_replacing_text/searching_and_replacing_text.html.de
-Amaya/doc/html/searching_and_replacing_text/searching_and_replacing_text.html.es
-Amaya/doc/html/selecting/selecting_by_structure.html
-Amaya/doc/html/selecting/selecting_by_structure.html.de
-Amaya/doc/html/selecting/selecting_by_structure.html.es
-Amaya/doc/html/selecting/selecting_images.html
-Amaya/doc/html/selecting/selecting_images.html.de
-Amaya/doc/html/selecting/selecting_images.html.es
-Amaya/doc/html/selecting/selecting_with_keyboard_and_mouse.html
-Amaya/doc/html/selecting/selecting_with_keyboard_and_mouse.html.de
-Amaya/doc/html/selecting/selecting_with_keyboard_and_mouse.html.es
-Amaya/doc/html/spell_checking/spell_checking.html
-Amaya/doc/html/spell_checking/spell_checking.html.de
-Amaya/doc/html/spell_checking/spell_checking.html.es
-Amaya/doc/html/style.css
-Amaya/doc/html/style_sheets/about_applying_style_using_html_elements.html
-Amaya/doc/html/style_sheets/about_applying_style_using_html_elements.html.de
-Amaya/doc/html/style_sheets/about_applying_style_using_html_elements.html.es
-Amaya/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html
-Amaya/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html.de
-Amaya/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html.es
-Amaya/doc/html/style_sheets/creating_and_updating_a_style_attribute.html
-Amaya/doc/html/style_sheets/creating_and_updating_a_style_attribute.html.de
-Amaya/doc/html/style_sheets/creating_and_updating_a_style_attribute.html.es
-Amaya/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html
-Amaya/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html.de
-Amaya/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html.es
-Amaya/doc/html/style_sheets/creating_html_style_elements.html
-Amaya/doc/html/style_sheets/creating_html_style_elements.html.de
-Amaya/doc/html/style_sheets/creating_html_style_elements.html.es
-Amaya/doc/html/style_sheets/handling_external_css.html
-Amaya/doc/html/style_sheets/handling_external_css.html.de
-Amaya/doc/html/style_sheets/handling_external_css.html.es
-Amaya/doc/html/style_sheets/removing_style.html
-Amaya/doc/html/style_sheets/removing_style.html.de
-Amaya/doc/html/style_sheets/removing_style.html.es
-Amaya/doc/html/style_sheets/working_with_styles.html
-Amaya/doc/html/style_sheets/working_with_styles.html.de
-Amaya/doc/html/style_sheets/working_with_styles.html.es
-Amaya/doc/html/tans_annot.html.de
-Amaya/doc/html/timeline_help.html
-Amaya/doc/html/using_graphics/AddSVGLib.html
-Amaya/doc/html/using_graphics/AddSVGLib.html.es
-Amaya/doc/html/using_graphics/ChangeSVGLibPresentation.html
-Amaya/doc/html/using_graphics/ChangeSVGLibPresentation.html.es
-Amaya/doc/html/using_graphics/SVGLibrary.html
-Amaya/doc/html/using_graphics/SVGLibrary.html.es
-Amaya/doc/html/using_graphics/UseSVGLib.html
-Amaya/doc/html/using_graphics/UseSVGLib.html.es
-Amaya/doc/html/using_graphics/creating_graphics_with_the_palette.html
-Amaya/doc/html/using_graphics/creating_graphics_with_the_palette.html.de
-Amaya/doc/html/using_graphics/creating_graphics_with_the_palette.html.es
-Amaya/doc/html/using_graphics/moving_graphics.html
-Amaya/doc/html/using_graphics/moving_graphics.html.de
-Amaya/doc/html/using_graphics/moving_graphics.html.es
-Amaya/doc/html/using_graphics/painting_graphics.html
-Amaya/doc/html/using_graphics/painting_graphics.html.de
-Amaya/doc/html/using_graphics/painting_graphics.html.es
-Amaya/doc/html/using_graphics/resizing_graphics.html
-Amaya/doc/html/using_graphics/resizing_graphics.html.de
-Amaya/doc/html/using_graphics/resizing_graphics.html.es
-Amaya/doc/html/using_graphics/working_with_graphics.html
-Amaya/doc/html/using_graphics/working_with_graphics.html.de
-Amaya/doc/html/using_graphics/working_with_graphics.html.es
-Amaya/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html
-Amaya/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html.de
-Amaya/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html.es
-Amaya/doc/html/using_image_maps/adding_an_image.html
-Amaya/doc/html/using_image_maps/adding_an_image.html.de
-Amaya/doc/html/using_image_maps/adding_an_image.html.es
-Amaya/doc/html/using_image_maps/creating_clientside_image_maps.html
-Amaya/doc/html/using_image_maps/creating_clientside_image_maps.html.de
-Amaya/doc/html/using_image_maps/creating_clientside_image_maps.html.es
-Amaya/doc/html/using_image_maps/moving_image_map_areas.html
-Amaya/doc/html/using_image_maps/moving_image_map_areas.html.de
-Amaya/doc/html/using_image_maps/moving_image_map_areas.html.es
-Amaya/doc/html/using_image_maps/resizing_image_map_areas.html
-Amaya/doc/html/using_image_maps/resizing_image_map_areas.html.de
-Amaya/doc/html/using_image_maps/resizing_image_map_areas.html.es
-Amaya/doc/html/using_image_maps/using_clientside_image_maps.html
-Amaya/doc/html/using_image_maps/using_clientside_image_maps.html.de
-Amaya/doc/html/using_image_maps/using_clientside_image_maps.html.es
-Amaya/doc/html/using_image_maps/working_with_image_maps.html
-Amaya/doc/html/using_image_maps/working_with_image_maps.html.de
-Amaya/doc/html/using_image_maps/working_with_image_maps.html.es
-Amaya/doc/html/using_the_makebook_function/assembling_large_document_collections.html
-Amaya/doc/html/using_the_makebook_function/assembling_large_document_collections.html.de
-Amaya/doc/html/using_the_makebook_function/assembling_large_document_collections.html.es
-Amaya/doc/html/using_xml/editing_xml_document.html
-Amaya/doc/html/using_xml/editing_xml_document.html.de
-Amaya/doc/html/using_xml/editing_xml_document.html.es
-Amaya/doc/html/using_xml/loading_xml_document.html
-Amaya/doc/html/using_xml/loading_xml_document.html.de
-Amaya/doc/html/using_xml/loading_xml_document.html.es
-Amaya/doc/html/using_xml/xml_using_style.html
-Amaya/doc/html/using_xml/xml_using_style.html.de
-Amaya/doc/html/using_xml/xml_using_style.html.es
-Amaya/doc/html/viewing/about_synchronized_views.html
-Amaya/doc/html/viewing/about_synchronized_views.html.de
-Amaya/doc/html/viewing/about_synchronized_views.html.es
-Amaya/doc/html/viewing/closing_a_view.html
-Amaya/doc/html/viewing/closing_a_view.html.de
-Amaya/doc/html/viewing/closing_a_view.html.es
-Amaya/doc/html/viewing/opening_a_view.html
-Amaya/doc/html/viewing/opening_a_view.html.de
-Amaya/doc/html/viewing/opening_a_view.html.es
-Amaya/doc/html/viewing/working_with_document_views.html
-Amaya/doc/html/viewing/working_with_document_views.html.de
-Amaya/doc/html/viewing/working_with_document_views.html.es
-Amaya/doc/images/Back.gif
-Amaya/doc/images/Browser.gif
-Amaya/doc/images/BrowsingMenu-fr.gif
-Amaya/doc/images/CacheMenu-fr.gif
-Amaya/doc/images/CacheMenu.gif
-Amaya/doc/images/ColorMenu-de.gif
-Amaya/doc/images/ColorMenu-fr.gif
-Amaya/doc/images/ColorMenu.gif
-Amaya/doc/images/CooperationMenu.gif
-Amaya/doc/images/CooperationPreferences.gif
-Amaya/doc/images/DL.gif
-Amaya/doc/images/Editor.gif
-Amaya/doc/images/Em.gif
-Amaya/doc/images/Forward.gif
-Amaya/doc/images/GeneralMenu-fr.gif
-Amaya/doc/images/GeomMenu-fr.gif
-Amaya/doc/images/GeomMenu.gif
-Amaya/doc/images/Graph.gif
-Amaya/doc/images/H1.gif
-Amaya/doc/images/H2.gif
-Amaya/doc/images/H3.gif
-Amaya/doc/images/IDMenu.png
-Amaya/doc/images/Image.gif
-Amaya/doc/images/Langue.png
-Amaya/doc/images/LangueNegotiation-fr.gif
-Amaya/doc/images/LangueNegotiation.gif
-Amaya/doc/images/LibraryDocDefaultStyle.gif
-Amaya/doc/images/Link.gif
-Amaya/doc/images/Math.gif
-Amaya/doc/images/MathSymbols-de.png
-Amaya/doc/images/NoLibraryDocStyle.gif
-Amaya/doc/images/NumList.gif
-Amaya/doc/images/OList.gif
-Amaya/doc/images/Print.gif
-Amaya/doc/images/ProfilesMenu-fr.gif
-Amaya/doc/images/ProfilesMenu.gif
-Amaya/doc/images/ProxyMenu-fr.gif
-Amaya/doc/images/ProxyMenu.gif
-Amaya/doc/images/PublishMenu-fr.gif
-Amaya/doc/images/PublishMenu.gif
-Amaya/doc/images/Reload.gif
-Amaya/doc/images/Reload.png
-Amaya/doc/images/SVGLibrary.gif
-Amaya/doc/images/SaveAs-fr.gif
-Amaya/doc/images/SaveAs.gif
-Amaya/doc/images/Strong.gif
-Amaya/doc/images/TemplatesMenu-fr.gif
-Amaya/doc/images/TemplatesMenu.gif
-Amaya/doc/images/View.png
-Amaya/doc/images/align-de.png
-Amaya/doc/images/alternateview-de.jpg
-Amaya/doc/images/alternateview.jpg
-Amaya/doc/images/amaya.gif
-Amaya/doc/images/anim.gif
-Amaya/doc/images/annot.png
-Amaya/doc/images/annotationicon-de.png
-Amaya/doc/images/annotationicon-es.png
-Amaya/doc/images/annotationicon.png
-Amaya/doc/images/annotationsmenu-de.png
-Amaya/doc/images/annotationsmenu-es.png
-Amaya/doc/images/annotationsmenu-fr.png
-Amaya/doc/images/annotationsmenu.png
-Amaya/doc/images/annotationwindow-de.png
-Amaya/doc/images/annotationwindow-es.png
-Amaya/doc/images/annotationwindow.png
-Amaya/doc/images/annotorp.png
-Amaya/doc/images/background-de.png
-Amaya/doc/images/bmbprop.png
-Amaya/doc/images/bmmenu.png
-Amaya/doc/images/bmtprop.png
-Amaya/doc/images/bmview1.png
-Amaya/doc/images/bmview2.png
-Amaya/doc/images/browser_preferences-de.png
-Amaya/doc/images/browsing_preferences-es.png
-Amaya/doc/images/browsing_preferences.png
-Amaya/doc/images/cache_preferences-de.png
-Amaya/doc/images/cache_preferences-es.png
-Amaya/doc/images/cache_preferences.png
-Amaya/doc/images/check.gif
-Amaya/doc/images/closed.png
-Amaya/doc/images/code.gif
-Amaya/doc/images/color-de.png
-Amaya/doc/images/color_preferences-de.png
-Amaya/doc/images/color_preferences-es.png
-Amaya/doc/images/color_preferences.png
-Amaya/doc/images/configuration_for_annotations-de.png
-Amaya/doc/images/configuration_for_annotations-es.png
-Amaya/doc/images/configuration_for_annotations.png
-Amaya/doc/images/configurebox-fr.png
-Amaya/doc/images/configurebox.png
-Amaya/doc/images/createRule-de.png
-Amaya/doc/images/create_image-fr.png
-Amaya/doc/images/create_link-fr.png
-Amaya/doc/images/create_table-fr.png
-Amaya/doc/images/css-fr.gif
-Amaya/doc/images/css.gif
-Amaya/doc/images/dialog_save_as-de.png
-Amaya/doc/images/doc48x.gif
-Amaya/doc/images/enrichissement_lib.png
-Amaya/doc/images/find.gif
-Amaya/doc/images/floppy.gif
-Amaya/doc/images/font-de.png
-Amaya/doc/images/formattedview-de.jpg
-Amaya/doc/images/formattedview.jpg
-Amaya/doc/images/general_preferences-de.png
-Amaya/doc/images/general_preferences-es.png
-Amaya/doc/images/general_preferences.png
-Amaya/doc/images/geometry_preferences-de.png
-Amaya/doc/images/geometry_preferences-es.png
-Amaya/doc/images/geometry_preferences.png
-Amaya/doc/images/graphics_palette-de.png
-Amaya/doc/images/home.gif
-Amaya/doc/images/image_button.gif
-Amaya/doc/images/invalid_profile-fr.png
-Amaya/doc/images/language_negotiation-de.png
-Amaya/doc/images/language_negotiation-es.png
-Amaya/doc/images/language_negotiation.png
-Amaya/doc/images/left.gif
-Amaya/doc/images/libsvg.gif
-Amaya/doc/images/linksview-de.jpg
-Amaya/doc/images/linksview.jpg
-Amaya/doc/images/linkwindow.png
-Amaya/doc/images/localfilter-es.png
-Amaya/doc/images/localfilter.png
-Amaya/doc/images/math_palette-de.png
-Amaya/doc/images/not_well_formed-fr.png
-Amaya/doc/images/open.png
-Amaya/doc/images/printoptions_w32-de.png
-Amaya/doc/images/profiles_preferences-de.png
-Amaya/doc/images/profiles_preferences-es.png
-Amaya/doc/images/profiles_preferences.png
-Amaya/doc/images/proxy_preferences-de.png
-Amaya/doc/images/proxy_preferences-es.png
-Amaya/doc/images/proxy_preferences.png
-Amaya/doc/images/publishing_preferences-de.png
-Amaya/doc/images/publishing_preferences-es.png
-Amaya/doc/images/publishing_preferences.png
-Amaya/doc/images/put.gif
-Amaya/doc/images/right.gif
-Amaya/doc/images/scenario_graphique.png
-Amaya/doc/images/search_and_replace-de.png
-Amaya/doc/images/search_and_replace-fr.png
-Amaya/doc/images/sourceview-de.jpg
-Amaya/doc/images/sourceview.jpg
-Amaya/doc/images/spellchecking-de.png
-Amaya/doc/images/spellchecking-fr.png
-Amaya/doc/images/stop.gif
-Amaya/doc/images/structureview-de.jpg
-Amaya/doc/images/structureview.jpg
-Amaya/doc/images/table.gif
-Amaya/doc/images/target.gif
-Amaya/doc/images/templates_preferences-de.png
-Amaya/doc/images/templates_preferences-es.png
-Amaya/doc/images/templates_preferences.png
-Amaya/doc/images/threads-de.png
-Amaya/doc/images/threads.png
-Amaya/doc/images/tocview-de.jpg
-Amaya/doc/images/tocview.jpg
-Amaya/doc/images/up.gif
-Amaya/doc/images/w3c_home
-Amaya/fonts/Families.list
-Amaya/fonts/fonts.dir
-Amaya/fonts/icones.ff
-Amaya/fonts/icones.pcf
-Amaya/fonts/icones1.fb
-Amaya/fonts/icones11.fb
-Amaya/resources/xrc/InitConfirmDlgWX.xrc
-@dirrm Amaya/resources/xrc
-@dirrm Amaya/resources
-@dirrm Amaya/fonts
-@dirrm Amaya/doc/images
-@dirrm Amaya/doc/html/viewing
-@dirrm Amaya/doc/html/using_xml
-@dirrm Amaya/doc/html/using_the_makebook_function
-@dirrm Amaya/doc/html/using_image_maps
-@dirrm Amaya/doc/html/using_graphics
-@dirrm Amaya/doc/html/style_sheets
-@dirrm Amaya/doc/html/spell_checking
-@dirrm Amaya/doc/html/selecting
-@dirrm Amaya/doc/html/searching_and_replacing_text
-@dirrm Amaya/doc/html/saving_and_publishing_documents
-@dirrm Amaya/doc/html/printing
-@dirrm Amaya/doc/html/numbering_sections
-@dirrm Amaya/doc/html/linking
-@dirrm Amaya/doc/html/elements
-@dirrm Amaya/doc/html/editing_tables
-@dirrm Amaya/doc/html/editing_mathematics
-@dirrm Amaya/doc/html/editing_iso-latin-1_characters
-@dirrm Amaya/doc/html/editing_documents
-@dirrm Amaya/doc/html/editing_attributes
-@dirrm Amaya/doc/html/configuring_amaya
-@dirrm Amaya/doc/html/browsing
-@dirrm Amaya/doc/html/attaching_annotations
-@dirrm Amaya/doc/html/accessibility_in_amaya
-@dirrm Amaya/doc/html/HTML-elements
-@dirrm Amaya/doc/html
-@dirrm Amaya/doc
-@dirrm Amaya/dicopar
-@dirrm Amaya/config/libconfig
-@dirrm Amaya/config
-@dirrm Amaya/applis/bin
-@dirrm Amaya/applis
-@dirrm Amaya/annotlib
-@dirrm Amaya/amaya
-@exec mkdir -p %D/Amaya/davlib
-@unexec rmdir %D/Amaya/davlib 2>/dev/null || true
-@unexec rmdir %D/Amaya 2>/dev/null || true
+bin/amaya
+bin/amaya-%%GUI%%
+%%DATADIR%%/amaya/Amaya.svg
+%%DATADIR%%/amaya/AmayaPage.html
+%%DATADIR%%/amaya/AmayaPage.html.de
+%%DATADIR%%/amaya/AmayaPage.html.es
+%%DATADIR%%/amaya/AmayaPage.html.fr
+%%DATADIR%%/amaya/AmayaPage_WX.html
+%%DATADIR%%/amaya/AmayaPage_WX.html.de
+%%DATADIR%%/amaya/AmayaPage_WX.html.es
+%%DATADIR%%/amaya/AmayaPage_WX.html.fr
+%%DATADIR%%/amaya/AmayaPage_WX.html.ru
+%%DATADIR%%/amaya/AmayaSrcSyncIndex.gif
+%%DATADIR%%/amaya/Annot.conf
+%%DATADIR%%/amaya/HTML.STR
+%%DATADIR%%/amaya/HTML.conf
+%%DATADIR%%/amaya/HTML.en
+%%DATADIR%%/amaya/HTML.trans
+%%DATADIR%%/amaya/HTML.trans.es
+%%DATADIR%%/amaya/HTML.trans.fr
+%%DATADIR%%/amaya/HTMLP.PRS
+%%DATADIR%%/amaya/HTMLPBW.PRS
+%%DATADIR%%/amaya/HTMLPL.PRS
+%%DATADIR%%/amaya/HTMLPLL.PRS
+%%DATADIR%%/amaya/HTMLPLP.PRS
+%%DATADIR%%/amaya/HTMLPLPUS.PRS
+%%DATADIR%%/amaya/HTMLPP.PRS
+%%DATADIR%%/amaya/HTMLPPUS.PRS
+%%DATADIR%%/amaya/HTMLT.TRA
+%%DATADIR%%/amaya/HTMLT11.TRA
+%%DATADIR%%/amaya/HTMLTT.TRA
+%%DATADIR%%/amaya/HTMLTX.TRA
+%%DATADIR%%/amaya/HTMLUSL.PRS
+%%DATADIR%%/amaya/HTMLUSLL.PRS
+%%DATADIR%%/amaya/MathML.STR
+%%DATADIR%%/amaya/MathML.conf
+%%DATADIR%%/amaya/MathML.en
+%%DATADIR%%/amaya/MathML.trans
+%%DATADIR%%/amaya/MathML.trans.es
+%%DATADIR%%/amaya/MathML.trans.fr
+%%DATADIR%%/amaya/MathMLP.PRS
+%%DATADIR%%/amaya/MathMLT.TRA
+%%DATADIR%%/amaya/MathMLTX.TRA
+%%DATADIR%%/amaya/SVG.STR
+%%DATADIR%%/amaya/SVG.conf
+%%DATADIR%%/amaya/SVG.en
+%%DATADIR%%/amaya/SVGP.PRS
+%%DATADIR%%/amaya/SVGT.TRA
+%%DATADIR%%/amaya/SVGTX.TRA
+%%DATADIR%%/amaya/TextFile.STR
+%%DATADIR%%/amaya/TextFile.conf
+%%DATADIR%%/amaya/TextFile.en
+%%DATADIR%%/amaya/TextFileP.PRS
+%%DATADIR%%/amaya/TextFilePL.PRS
+%%DATADIR%%/amaya/TextFilePP.PRS
+%%DATADIR%%/amaya/TextFilePPUS.PRS
+%%DATADIR%%/amaya/TextFileT.TRA
+%%DATADIR%%/amaya/TextFileUSL.PRS
+%%DATADIR%%/amaya/Timeline.STR
+%%DATADIR%%/amaya/Timeline.conf
+%%DATADIR%%/amaya/Timeline.en
+%%DATADIR%%/amaya/TimelineP.PRS
+%%DATADIR%%/amaya/TimelineT.TRA
+%%DATADIR%%/amaya/TimelineTX.TRA
+%%DATADIR%%/amaya/Topics.conf
+%%DATADIR%%/amaya/XLink.STR
+%%DATADIR%%/amaya/XLink.en
+%%DATADIR%%/amaya/XLinkP.PRS
+%%DATADIR%%/amaya/XLinkT.TRA
+%%DATADIR%%/amaya/XML.STR
+%%DATADIR%%/amaya/XML.conf
+%%DATADIR%%/amaya/XML.en
+%%DATADIR%%/amaya/XMLP.PRS
+%%DATADIR%%/amaya/XMLPL.PRS
+%%DATADIR%%/amaya/XMLPP.PRS
+%%DATADIR%%/amaya/XMLPPUS.PRS
+%%DATADIR%%/amaya/XMLT.TRA
+%%DATADIR%%/amaya/XMLUSL.PRS
+%%DATADIR%%/amaya/advice.png
+%%DATADIR%%/amaya/amaya.css
+%%DATADIR%%/amaya/amaya.png
+%%DATADIR%%/amaya/anim_color_sh.png
+%%DATADIR%%/amaya/anim_color_sh_db.png
+%%DATADIR%%/amaya/anim_help_sh.png
+%%DATADIR%%/amaya/anim_motion_sh.png
+%%DATADIR%%/amaya/anim_motion_sh_db.png
+%%DATADIR%%/amaya/annot.gif
+%%DATADIR%%/amaya/annot.png
+%%DATADIR%%/amaya/annotorp.gif
+%%DATADIR%%/amaya/change.png
+%%DATADIR%%/amaya/collapse1.png
+%%DATADIR%%/amaya/collapse2.png
+%%DATADIR%%/amaya/comment.png
+%%DATADIR%%/amaya/example.png
+%%DATADIR%%/amaya/explanation.png
+%%DATADIR%%/amaya/lost.gif
+%%DATADIR%%/amaya/option.gif
+%%DATADIR%%/amaya/question.png
+%%DATADIR%%/amaya/radio-s.gif
+%%DATADIR%%/amaya/radio.gif
+%%DATADIR%%/amaya/seealso.png
+%%DATADIR%%/amaya/slider.gif
+%%DATADIR%%/amaya/slidergl.gif
+%%DATADIR%%/amaya/target.gif
+%%DATADIR%%/amaya/timeline_arrow.gif
+%%DATADIR%%/amaya/timeline_cross.gif
+%%DATADIR%%/amaya/timelinetoolbar_sh4.png
+%%DATADIR%%/amaya/toggle-s.gif
+%%DATADIR%%/amaya/toggle.gif
+%%DATADIR%%/annotlib/Annot.STR
+%%DATADIR%%/annotlib/AnnotP.PRS
+%%DATADIR%%/annotlib/AnnotT.TRA
+%%DATADIR%%/annotlib/Topics.STR
+%%DATADIR%%/annotlib/Topics.en
+%%DATADIR%%/annotlib/TopicsP.PRS
+%%DATADIR%%/annotlib/closed.png
+%%DATADIR%%/annotlib/open.png
+%%DATADIR%%/annotlib/selected.gif
+%%DATADIR%%/config/XKeysymDB
+%%DATADIR%%/config/amaya.emacs
+%%DATADIR%%/config/amaya.kb
+%%DATADIR%%/config/amaya.keyboard
+%%DATADIR%%/config/amaya.profiles
+%%DATADIR%%/config/annot.schemas
+%%DATADIR%%/config/annotschema.rdf
+%%DATADIR%%/config/annottypes.rdf
+%%DATADIR%%/config/de-amayadialogue
+%%DATADIR%%/config/de-amayamsg
+%%DATADIR%%/config/de-libdialogue
+%%DATADIR%%/config/en-amayadialogue
+%%DATADIR%%/config/en-amayamsg
+%%DATADIR%%/config/en-libdialogue
+%%DATADIR%%/config/es-amayadialogue
+%%DATADIR%%/config/es-amayamsg
+%%DATADIR%%/config/es-libdialogue
+%%DATADIR%%/config/fi-amayadialogue
+%%DATADIR%%/config/fi-amayamsg
+%%DATADIR%%/config/fi-libdialogue
+%%DATADIR%%/config/fonts.gl
+%%DATADIR%%/config/fonts.gl.deb
+%%DATADIR%%/config/fonts.gl.mac
+%%DATADIR%%/config/fonts.gl.mac.def
+%%DATADIR%%/config/fonts.gl.rd
+%%DATADIR%%/config/fonts.gl.win
+%%DATADIR%%/config/fonts.gl.win.nt
+%%DATADIR%%/config/fonts.tmpl
+%%DATADIR%%/config/fonts.unix
+%%DATADIR%%/config/fonts.unix.deb
+%%DATADIR%%/config/fonts.win
+%%DATADIR%%/config/fr-amayadialogue
+%%DATADIR%%/config/fr-amayamsg
+%%DATADIR%%/config/fr-libdialogue
+%%DATADIR%%/config/gtkrc
+%%DATADIR%%/config/hu-amayadialogue
+%%DATADIR%%/config/hu-amayamsg
+%%DATADIR%%/config/hu-libdialogue
+%%DATADIR%%/config/it-amayadialogue
+%%DATADIR%%/config/it-amayamsg
+%%DATADIR%%/config/it-libdialogue
+%%DATADIR%%/config/libconfig/Forward.png
+%%DATADIR%%/config/libconfig/Forward.svg
+%%DATADIR%%/config/libconfig/arrow1.png
+%%DATADIR%%/config/libconfig/arrow1.svg
+%%DATADIR%%/config/libconfig/arrow2.png
+%%DATADIR%%/config/libconfig/arrow2.svg
+%%DATADIR%%/config/libconfig/arrow3.png
+%%DATADIR%%/config/libconfig/arrow3.svg
+%%DATADIR%%/config/libconfig/arrow4.png
+%%DATADIR%%/config/libconfig/arrow4.svg
+%%DATADIR%%/config/libconfig/arrow5.png
+%%DATADIR%%/config/libconfig/arrow5.svg
+%%DATADIR%%/config/libconfig/arrow6.png
+%%DATADIR%%/config/libconfig/arrow6.svg
+%%DATADIR%%/config/libconfig/arrow7.png
+%%DATADIR%%/config/libconfig/arrow7.svg
+%%DATADIR%%/config/libconfig/audio.png
+%%DATADIR%%/config/libconfig/audio.svg
+%%DATADIR%%/config/libconfig/catalogue.css
+%%DATADIR%%/config/libconfig/colorbox.png
+%%DATADIR%%/config/libconfig/colorbox.svg
+%%DATADIR%%/config/libconfig/default_cat.lhtml
+%%DATADIR%%/config/libconfig/trash.png
+%%DATADIR%%/config/libconfig/trash.svg
+%%DATADIR%%/config/pt-amayadialogue
+%%DATADIR%%/config/pt-amayamsg
+%%DATADIR%%/config/pt-libdialogue
+%%DATADIR%%/config/replytypes.rdf
+%%DATADIR%%/config/ru-amayadialogue
+%%DATADIR%%/config/ru-amayamsg
+%%DATADIR%%/config/ru-libdialogue
+%%DATADIR%%/config/thread.rdf
+%%DATADIR%%/config/tr-amayadialogue
+%%DATADIR%%/config/tr-amayamsg
+%%DATADIR%%/config/tr-libdialogue
+%%DATADIR%%/config/typeIcon.rdf
+%%DATADIR%%/config/unix-thot.rc
+%%DATADIR%%/dicopar/Eperso.dic
+%%DATADIR%%/dicopar/Eprinc.dic
+%%DATADIR%%/dicopar/Fperso.dic
+%%DATADIR%%/dicopar/Fprinc.dic
+%%DATADIR%%/dicopar/alphabet
+%%DATADIR%%/dicopar/american.ptn
+%%DATADIR%%/dicopar/clavier
+%%DATADIR%%/dicopar/deutsch.ptn
+%%DATADIR%%/dicopar/english.ptn
+%%DATADIR%%/dicopar/espanol.ptn
+%%DATADIR%%/dicopar/finish.ptn
+%%DATADIR%%/dicopar/francais.ptn
+%%DATADIR%%/dicopar/italiano.ptn
+%%DATADIR%%/dicopar/nederl.ptn
+%%DATADIR%%/dicopar/portug.ptn
+%%DATADIR%%/dicopar/swedish.ptn
+%%DATADIR%%/doc/WX/Access.html
+%%DATADIR%%/doc/WX/Access.html.fr
+%%DATADIR%%/doc/WX/Animation.html.fr
+%%DATADIR%%/doc/WX/Annotations.html
+%%DATADIR%%/doc/WX/Annotations.html.fr
+%%DATADIR%%/doc/WX/Attributes.html
+%%DATADIR%%/doc/WX/Attributes.html.fr
+%%DATADIR%%/doc/WX/Browsing.html
+%%DATADIR%%/doc/WX/Browsing.html.fr
+%%DATADIR%%/doc/WX/Changing.html
+%%DATADIR%%/doc/WX/Changing.html.fr
+%%DATADIR%%/doc/WX/Configure.html
+%%DATADIR%%/doc/WX/Configure.html.fr
+%%DATADIR%%/doc/WX/Creating.html
+%%DATADIR%%/doc/WX/Creating.html.fr
+%%DATADIR%%/doc/WX/Document.html
+%%DATADIR%%/doc/WX/Document.html.fr
+%%DATADIR%%/doc/WX/EditChar.html
+%%DATADIR%%/doc/WX/EditChar.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/40styling.html
+%%DATADIR%%/doc/WX/HTML-elements/40styling.html.de
+%%DATADIR%%/doc/WX/HTML-elements/40styling.html.es
+%%DATADIR%%/doc/WX/HTML-elements/40styling.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/40styling.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/address.html
+%%DATADIR%%/doc/WX/HTML-elements/address.html.de
+%%DATADIR%%/doc/WX/HTML-elements/address.html.es
+%%DATADIR%%/doc/WX/HTML-elements/address.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/address.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/headings.html
+%%DATADIR%%/doc/WX/HTML-elements/headings.html.de
+%%DATADIR%%/doc/WX/HTML-elements/headings.html.es
+%%DATADIR%%/doc/WX/HTML-elements/headings.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/headings.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/infoTypes.html
+%%DATADIR%%/doc/WX/HTML-elements/infoTypes.html.de
+%%DATADIR%%/doc/WX/HTML-elements/infoTypes.html.es
+%%DATADIR%%/doc/WX/HTML-elements/infoTypes.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/infoTypes.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/inline.html
+%%DATADIR%%/doc/WX/HTML-elements/inline.html.de
+%%DATADIR%%/doc/WX/HTML-elements/inline.html.es
+%%DATADIR%%/doc/WX/HTML-elements/inline.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/inline.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/lists.html
+%%DATADIR%%/doc/WX/HTML-elements/lists.html.de
+%%DATADIR%%/doc/WX/HTML-elements/lists.html.es
+%%DATADIR%%/doc/WX/HTML-elements/lists.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/lists.html.ru
+%%DATADIR%%/doc/WX/HTML-elements/structure.html
+%%DATADIR%%/doc/WX/HTML-elements/structure.html.de
+%%DATADIR%%/doc/WX/HTML-elements/structure.html.es
+%%DATADIR%%/doc/WX/HTML-elements/structure.html.fr
+%%DATADIR%%/doc/WX/HTML-elements/structure.html.ru
+%%DATADIR%%/doc/WX/HTML.html
+%%DATADIR%%/doc/WX/HTML.html.de
+%%DATADIR%%/doc/WX/HTML.html.es
+%%DATADIR%%/doc/WX/HTML.html.fr
+%%DATADIR%%/doc/WX/HTML.html.ru
+%%DATADIR%%/doc/WX/ImageMaps.html
+%%DATADIR%%/doc/WX/ImageMaps.html.fr
+%%DATADIR%%/doc/WX/Index.html
+%%DATADIR%%/doc/WX/Index.html.fr
+%%DATADIR%%/doc/WX/Links.html
+%%DATADIR%%/doc/WX/Links.html.fr
+%%DATADIR%%/doc/WX/MakeBook.html
+%%DATADIR%%/doc/WX/MakeBook.html.fr
+%%DATADIR%%/doc/WX/Manual.html
+%%DATADIR%%/doc/WX/Manual.html.fr
+%%DATADIR%%/doc/WX/Math.html
+%%DATADIR%%/doc/WX/Math.html.fr
+%%DATADIR%%/doc/WX/Numbering.html
+%%DATADIR%%/doc/WX/Numbering.html.fr
+%%DATADIR%%/doc/WX/Printing.html
+%%DATADIR%%/doc/WX/Printing.html.fr
+%%DATADIR%%/doc/WX/Publishing.html
+%%DATADIR%%/doc/WX/Publishing.html.fr
+%%DATADIR%%/doc/WX/SVG.html
+%%DATADIR%%/doc/WX/SVG.html.fr
+%%DATADIR%%/doc/WX/Searching.html
+%%DATADIR%%/doc/WX/Searching.html.fr
+%%DATADIR%%/doc/WX/Selecting.html
+%%DATADIR%%/doc/WX/Selecting.html.fr
+%%DATADIR%%/doc/WX/ShortCuts.html
+%%DATADIR%%/doc/WX/ShortCuts.html.fr
+%%DATADIR%%/doc/WX/SpellChecking.html
+%%DATADIR%%/doc/WX/SpellChecking.html.fr
+%%DATADIR%%/doc/WX/StyleSheets.html
+%%DATADIR%%/doc/WX/StyleSheets.html.fr
+%%DATADIR%%/doc/WX/Tables.html
+%%DATADIR%%/doc/WX/Tables.html.fr
+%%DATADIR%%/doc/WX/Transform.html
+%%DATADIR%%/doc/WX/Tutorial.html.fr
+%%DATADIR%%/doc/WX/Views.html
+%%DATADIR%%/doc/WX/Views.html.fr
+%%DATADIR%%/doc/WX/WebDAV.html
+%%DATADIR%%/doc/WX/Xml.html
+%%DATADIR%%/doc/WX/Xml.html.fr
+%%DATADIR%%/doc/WX/bookmarks.html
+%%DATADIR%%/doc/WX/style.css
+%%DATADIR%%/doc/WX/timeline_help.html
+%%DATADIR%%/doc/html/Access.html
+%%DATADIR%%/doc/html/Access.html.de
+%%DATADIR%%/doc/html/Access.html.es
+%%DATADIR%%/doc/html/Access.html.fr
+%%DATADIR%%/doc/html/Access.html.ru
+%%DATADIR%%/doc/html/Animation.html.fr
+%%DATADIR%%/doc/html/Annotations.html
+%%DATADIR%%/doc/html/Annotations.html.de
+%%DATADIR%%/doc/html/Annotations.html.es
+%%DATADIR%%/doc/html/Annotations.html.fr
+%%DATADIR%%/doc/html/Annotations.html.ru
+%%DATADIR%%/doc/html/Attributes.html
+%%DATADIR%%/doc/html/Attributes.html.de
+%%DATADIR%%/doc/html/Attributes.html.es
+%%DATADIR%%/doc/html/Attributes.html.fr
+%%DATADIR%%/doc/html/Attributes.html.ru
+%%DATADIR%%/doc/html/Browsing.html
+%%DATADIR%%/doc/html/Browsing.html.de
+%%DATADIR%%/doc/html/Browsing.html.es
+%%DATADIR%%/doc/html/Browsing.html.fr
+%%DATADIR%%/doc/html/Browsing.html.ru
+%%DATADIR%%/doc/html/Changing.html
+%%DATADIR%%/doc/html/Changing.html.de
+%%DATADIR%%/doc/html/Changing.html.es
+%%DATADIR%%/doc/html/Changing.html.fr
+%%DATADIR%%/doc/html/Changing.html.ru
+%%DATADIR%%/doc/html/Configure.html
+%%DATADIR%%/doc/html/Configure.html.de
+%%DATADIR%%/doc/html/Configure.html.es
+%%DATADIR%%/doc/html/Configure.html.fr
+%%DATADIR%%/doc/html/Configure.html.ru
+%%DATADIR%%/doc/html/Cover.html.de
+%%DATADIR%%/doc/html/Creating.html
+%%DATADIR%%/doc/html/Creating.html.de
+%%DATADIR%%/doc/html/Creating.html.es
+%%DATADIR%%/doc/html/Creating.html.fr
+%%DATADIR%%/doc/html/Creating.html.ru
+%%DATADIR%%/doc/html/Document.html
+%%DATADIR%%/doc/html/Document.html.de
+%%DATADIR%%/doc/html/Document.html.es
+%%DATADIR%%/doc/html/Document.html.fr
+%%DATADIR%%/doc/html/Document.html.ru
+%%DATADIR%%/doc/html/EditChar.html
+%%DATADIR%%/doc/html/EditChar.html.de
+%%DATADIR%%/doc/html/EditChar.html.es
+%%DATADIR%%/doc/html/EditChar.html.fr
+%%DATADIR%%/doc/html/EditChar.html.ru
+%%DATADIR%%/doc/html/HTML-elements/40styling.html
+%%DATADIR%%/doc/html/HTML-elements/40styling.html.de
+%%DATADIR%%/doc/html/HTML-elements/40styling.html.es
+%%DATADIR%%/doc/html/HTML-elements/40styling.html.fr
+%%DATADIR%%/doc/html/HTML-elements/40styling.html.ru
+%%DATADIR%%/doc/html/HTML-elements/address.html
+%%DATADIR%%/doc/html/HTML-elements/address.html.de
+%%DATADIR%%/doc/html/HTML-elements/address.html.es
+%%DATADIR%%/doc/html/HTML-elements/address.html.fr
+%%DATADIR%%/doc/html/HTML-elements/address.html.ru
+%%DATADIR%%/doc/html/HTML-elements/creating_new_documents.html.de
+%%DATADIR%%/doc/html/HTML-elements/headings.html
+%%DATADIR%%/doc/html/HTML-elements/headings.html.de
+%%DATADIR%%/doc/html/HTML-elements/headings.html.es
+%%DATADIR%%/doc/html/HTML-elements/headings.html.fr
+%%DATADIR%%/doc/html/HTML-elements/headings.html.ru
+%%DATADIR%%/doc/html/HTML-elements/infoTypes.html
+%%DATADIR%%/doc/html/HTML-elements/infoTypes.html.de
+%%DATADIR%%/doc/html/HTML-elements/infoTypes.html.es
+%%DATADIR%%/doc/html/HTML-elements/infoTypes.html.fr
+%%DATADIR%%/doc/html/HTML-elements/infoTypes.html.ru
+%%DATADIR%%/doc/html/HTML-elements/inline.html
+%%DATADIR%%/doc/html/HTML-elements/inline.html.de
+%%DATADIR%%/doc/html/HTML-elements/inline.html.es
+%%DATADIR%%/doc/html/HTML-elements/inline.html.fr
+%%DATADIR%%/doc/html/HTML-elements/inline.html.ru
+%%DATADIR%%/doc/html/HTML-elements/lists.html
+%%DATADIR%%/doc/html/HTML-elements/lists.html.de
+%%DATADIR%%/doc/html/HTML-elements/lists.html.es
+%%DATADIR%%/doc/html/HTML-elements/lists.html.fr
+%%DATADIR%%/doc/html/HTML-elements/lists.html.ru
+%%DATADIR%%/doc/html/HTML-elements/structure.html
+%%DATADIR%%/doc/html/HTML-elements/structure.html.de
+%%DATADIR%%/doc/html/HTML-elements/structure.html.es
+%%DATADIR%%/doc/html/HTML-elements/structure.html.fr
+%%DATADIR%%/doc/html/HTML-elements/structure.html.ru
+%%DATADIR%%/doc/html/HTML.html
+%%DATADIR%%/doc/html/HTML.html.de
+%%DATADIR%%/doc/html/HTML.html.es
+%%DATADIR%%/doc/html/HTML.html.fr
+%%DATADIR%%/doc/html/HTML.html.ru
+%%DATADIR%%/doc/html/ImageMaps.html
+%%DATADIR%%/doc/html/ImageMaps.html.de
+%%DATADIR%%/doc/html/ImageMaps.html.es
+%%DATADIR%%/doc/html/ImageMaps.html.fr
+%%DATADIR%%/doc/html/ImageMaps.html.ru
+%%DATADIR%%/doc/html/Index-org.html.de
+%%DATADIR%%/doc/html/Index.html
+%%DATADIR%%/doc/html/Index.html.de
+%%DATADIR%%/doc/html/Index.html.es
+%%DATADIR%%/doc/html/Index.html.fr
+%%DATADIR%%/doc/html/Index.html.ru
+%%DATADIR%%/doc/html/Keyboard.html.es
+%%DATADIR%%/doc/html/Links.html
+%%DATADIR%%/doc/html/Links.html.de
+%%DATADIR%%/doc/html/Links.html.es
+%%DATADIR%%/doc/html/Links.html.fr
+%%DATADIR%%/doc/html/Links.html.ru
+%%DATADIR%%/doc/html/MakeBook.html
+%%DATADIR%%/doc/html/MakeBook.html.de
+%%DATADIR%%/doc/html/MakeBook.html.es
+%%DATADIR%%/doc/html/MakeBook.html.fr
+%%DATADIR%%/doc/html/MakeBook.html.ru
+%%DATADIR%%/doc/html/Manual.html
+%%DATADIR%%/doc/html/Manual.html.de
+%%DATADIR%%/doc/html/Manual.html.es
+%%DATADIR%%/doc/html/Manual.html.fr
+%%DATADIR%%/doc/html/Manual.html.ru
+%%DATADIR%%/doc/html/Math.html
+%%DATADIR%%/doc/html/Math.html.de
+%%DATADIR%%/doc/html/Math.html.es
+%%DATADIR%%/doc/html/Math.html.fr
+%%DATADIR%%/doc/html/Math.html.ru
+%%DATADIR%%/doc/html/Numbering.html
+%%DATADIR%%/doc/html/Numbering.html.de
+%%DATADIR%%/doc/html/Numbering.html.es
+%%DATADIR%%/doc/html/Numbering.html.fr
+%%DATADIR%%/doc/html/Numbering.html.ru
+%%DATADIR%%/doc/html/Printing.html
+%%DATADIR%%/doc/html/Printing.html.de
+%%DATADIR%%/doc/html/Printing.html.es
+%%DATADIR%%/doc/html/Printing.html.fr
+%%DATADIR%%/doc/html/Printing.html.ru
+%%DATADIR%%/doc/html/Publishing.html
+%%DATADIR%%/doc/html/Publishing.html.de
+%%DATADIR%%/doc/html/Publishing.html.es
+%%DATADIR%%/doc/html/Publishing.html.fr
+%%DATADIR%%/doc/html/Publishing.html.ru
+%%DATADIR%%/doc/html/SVG.html
+%%DATADIR%%/doc/html/SVG.html.de
+%%DATADIR%%/doc/html/SVG.html.es
+%%DATADIR%%/doc/html/SVG.html.fr
+%%DATADIR%%/doc/html/SVG.html.ru
+%%DATADIR%%/doc/html/Searching.html
+%%DATADIR%%/doc/html/Searching.html.de
+%%DATADIR%%/doc/html/Searching.html.es
+%%DATADIR%%/doc/html/Searching.html.fr
+%%DATADIR%%/doc/html/Searching.html.ru
+%%DATADIR%%/doc/html/Selecting.html
+%%DATADIR%%/doc/html/Selecting.html.de
+%%DATADIR%%/doc/html/Selecting.html.es
+%%DATADIR%%/doc/html/Selecting.html.fr
+%%DATADIR%%/doc/html/Selecting.html.ru
+%%DATADIR%%/doc/html/ShortCuts.html
+%%DATADIR%%/doc/html/ShortCuts.html.de
+%%DATADIR%%/doc/html/ShortCuts.html.es
+%%DATADIR%%/doc/html/ShortCuts.html.fr
+%%DATADIR%%/doc/html/ShortCuts.html.ru
+%%DATADIR%%/doc/html/SpellChecking.html
+%%DATADIR%%/doc/html/SpellChecking.html.de
+%%DATADIR%%/doc/html/SpellChecking.html.es
+%%DATADIR%%/doc/html/SpellChecking.html.fr
+%%DATADIR%%/doc/html/SpellChecking.html.ru
+%%DATADIR%%/doc/html/StyleSheets.html
+%%DATADIR%%/doc/html/StyleSheets.html.de
+%%DATADIR%%/doc/html/StyleSheets.html.es
+%%DATADIR%%/doc/html/StyleSheets.html.fr
+%%DATADIR%%/doc/html/StyleSheets.html.ru
+%%DATADIR%%/doc/html/Tables.html
+%%DATADIR%%/doc/html/Tables.html.de
+%%DATADIR%%/doc/html/Tables.html.es
+%%DATADIR%%/doc/html/Tables.html.fr
+%%DATADIR%%/doc/html/Tables.html.ru
+%%DATADIR%%/doc/html/Transform.html
+%%DATADIR%%/doc/html/Transform.html.es
+%%DATADIR%%/doc/html/Transform.html.ru
+%%DATADIR%%/doc/html/Tutorial.html.fr
+%%DATADIR%%/doc/html/Views.html
+%%DATADIR%%/doc/html/Views.html.de
+%%DATADIR%%/doc/html/Views.html.es
+%%DATADIR%%/doc/html/Views.html.fr
+%%DATADIR%%/doc/html/Views.html.ru
+%%DATADIR%%/doc/html/WebDAV.html
+%%DATADIR%%/doc/html/WebDAV.html.es
+%%DATADIR%%/doc/html/WebDAV.html.ru
+%%DATADIR%%/doc/html/Xml.html
+%%DATADIR%%/doc/html/Xml.html.de
+%%DATADIR%%/doc/html/Xml.html.es
+%%DATADIR%%/doc/html/Xml.html.fr
+%%DATADIR%%/doc/html/Xml.html.ru
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html.de
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html.es
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_amayas_accessibility_features.html.ru
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_producing_accessible_content.html
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_producing_accessible_content.html.de
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_producing_accessible_content.html.es
+%%DATADIR%%/doc/html/accessibility_in_amaya/about_producing_accessible_content.html.ru
+%%DATADIR%%/doc/html/accessibility_in_amaya/accessibility_in_amaya.html
+%%DATADIR%%/doc/html/accessibility_in_amaya/accessibility_in_amaya.html.de
+%%DATADIR%%/doc/html/accessibility_in_amaya/accessibility_in_amaya.html.es
+%%DATADIR%%/doc/html/accessibility_in_amaya/accessibility_in_amaya.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/about_reading_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/about_reading_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/about_reading_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/about_reading_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_local_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_local_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_local_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_local_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_remote_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_remote_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_remote_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/about_storing_remote_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/annotation_issues.html
+%%DATADIR%%/doc/html/attaching_annotations/annotation_issues.html.de
+%%DATADIR%%/doc/html/attaching_annotations/annotation_issues.html.es
+%%DATADIR%%/doc/html/attaching_annotations/annotation_issues.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/annotation_menu.html
+%%DATADIR%%/doc/html/attaching_annotations/annotation_menu.html.de
+%%DATADIR%%/doc/html/attaching_annotations/annotation_menu.html.es
+%%DATADIR%%/doc/html/attaching_annotations/annotation_menu.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/configuring_annotation_settings.html
+%%DATADIR%%/doc/html/attaching_annotations/configuring_annotation_settings.html.de
+%%DATADIR%%/doc/html/attaching_annotations/configuring_annotation_settings.html.es
+%%DATADIR%%/doc/html/attaching_annotations/configuring_annotation_settings.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/configuring_icons.html
+%%DATADIR%%/doc/html/attaching_annotations/configuring_icons.html.de
+%%DATADIR%%/doc/html/attaching_annotations/configuring_icons.html.es
+%%DATADIR%%/doc/html/attaching_annotations/configuring_icons.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/creating_an_annotation.html
+%%DATADIR%%/doc/html/attaching_annotations/creating_an_annotation.html.de
+%%DATADIR%%/doc/html/attaching_annotations/creating_an_annotation.html.es
+%%DATADIR%%/doc/html/attaching_annotations/creating_an_annotation.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/deleting_an_annotation.html
+%%DATADIR%%/doc/html/attaching_annotations/deleting_an_annotation.html.de
+%%DATADIR%%/doc/html/attaching_annotations/deleting_an_annotation.html.es
+%%DATADIR%%/doc/html/attaching_annotations/deleting_an_annotation.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/loading_and_presenting_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/loading_and_presenting_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/loading_and_presenting_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/loading_and_presenting_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/moving_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/moving_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/moving_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/moving_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/navigating_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/navigating_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/navigating_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/navigating_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/replying_to_annotations.html
+%%DATADIR%%/doc/html/attaching_annotations/replying_to_annotations.html.de
+%%DATADIR%%/doc/html/attaching_annotations/replying_to_annotations.html.es
+%%DATADIR%%/doc/html/attaching_annotations/replying_to_annotations.html.ru
+%%DATADIR%%/doc/html/attaching_annotations/what_is_an_annotation.html
+%%DATADIR%%/doc/html/attaching_annotations/what_is_an_annotation.html.de
+%%DATADIR%%/doc/html/attaching_annotations/what_is_an_annotation.html.es
+%%DATADIR%%/doc/html/attaching_annotations/what_is_an_annotation.html.ru
+%%DATADIR%%/doc/html/bookmarks.html
+%%DATADIR%%/doc/html/bookmarks.html.es
+%%DATADIR%%/doc/html/bookmarks.html.ru
+%%DATADIR%%/doc/html/browsing/about_access_keys.html
+%%DATADIR%%/doc/html/browsing/about_access_keys.html.de
+%%DATADIR%%/doc/html/browsing/about_access_keys.html.es
+%%DATADIR%%/doc/html/browsing/about_access_keys.html.ru
+%%DATADIR%%/doc/html/browsing/about_moving_backward_and_forward.html
+%%DATADIR%%/doc/html/browsing/about_moving_backward_and_forward.html.de
+%%DATADIR%%/doc/html/browsing/about_moving_backward_and_forward.html.es
+%%DATADIR%%/doc/html/browsing/about_moving_backward_and_forward.html.ru
+%%DATADIR%%/doc/html/browsing/about_target_anchors.html
+%%DATADIR%%/doc/html/browsing/about_target_anchors.html.de
+%%DATADIR%%/doc/html/browsing/about_target_anchors.html.es
+%%DATADIR%%/doc/html/browsing/about_target_anchors.html.ru
+%%DATADIR%%/doc/html/browsing/activating_a_link.html
+%%DATADIR%%/doc/html/browsing/activating_a_link.html.de
+%%DATADIR%%/doc/html/browsing/activating_a_link.html.es
+%%DATADIR%%/doc/html/browsing/activating_a_link.html.ru
+%%DATADIR%%/doc/html/browsing/forms.html
+%%DATADIR%%/doc/html/browsing/forms.html.de
+%%DATADIR%%/doc/html/browsing/forms.html.es
+%%DATADIR%%/doc/html/browsing/forms.html.ru
+%%DATADIR%%/doc/html/browsing/opening_documents.html
+%%DATADIR%%/doc/html/browsing/opening_documents.html.de
+%%DATADIR%%/doc/html/browsing/opening_documents.html.es
+%%DATADIR%%/doc/html/browsing/opening_documents.html.ru
+%%DATADIR%%/doc/html/browsing/reloading_a_page.html
+%%DATADIR%%/doc/html/browsing/reloading_a_page.html.de
+%%DATADIR%%/doc/html/browsing/reloading_a_page.html.es
+%%DATADIR%%/doc/html/browsing/reloading_a_page.html.ru
+%%DATADIR%%/doc/html/browsing/working_with_the_amaya_browser_and_editor.html
+%%DATADIR%%/doc/html/browsing/working_with_the_amaya_browser_and_editor.html.de
+%%DATADIR%%/doc/html/browsing/working_with_the_amaya_browser_and_editor.html.es
+%%DATADIR%%/doc/html/browsing/working_with_the_amaya_browser_and_editor.html.ru
+%%DATADIR%%/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html
+%%DATADIR%%/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html.de
+%%DATADIR%%/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html.es
+%%DATADIR%%/doc/html/configuring_amaya/about_configuration_directory_and_file_conventions.html.ru
+%%DATADIR%%/doc/html/configuring_amaya/about_keyboard_shortcuts.html
+%%DATADIR%%/doc/html/configuring_amaya/about_keyboard_shortcuts.html.de
+%%DATADIR%%/doc/html/configuring_amaya/about_keyboard_shortcuts.html.es
+%%DATADIR%%/doc/html/configuring_amaya/about_keyboard_shortcuts.html.ru
+%%DATADIR%%/doc/html/configuring_amaya/configuring_amaya.html
+%%DATADIR%%/doc/html/configuring_amaya/configuring_amaya.html.de
+%%DATADIR%%/doc/html/configuring_amaya/configuring_amaya.html.es
+%%DATADIR%%/doc/html/configuring_amaya/configuring_amaya.html.ru
+%%DATADIR%%/doc/html/configuring_amaya/menu_preferences.html
+%%DATADIR%%/doc/html/configuring_amaya/menu_preferences.html.de
+%%DATADIR%%/doc/html/configuring_amaya/menu_preferences.html.es
+%%DATADIR%%/doc/html/configuring_amaya/menu_preferences.html.ru
+%%DATADIR%%/doc/html/editing_attributes/copying_attributes.html
+%%DATADIR%%/doc/html/editing_attributes/copying_attributes.html.de
+%%DATADIR%%/doc/html/editing_attributes/copying_attributes.html.es
+%%DATADIR%%/doc/html/editing_attributes/copying_attributes.html.ru
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html.de
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html.es
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_in_the_structure_view.html.ru
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html.de
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html.es
+%%DATADIR%%/doc/html/editing_attributes/editing_attributes_through_the_attributes_menu.html.ru
+%%DATADIR%%/doc/html/editing_attributes/working_with_attributes.html
+%%DATADIR%%/doc/html/editing_attributes/working_with_attributes.html.de
+%%DATADIR%%/doc/html/editing_attributes/working_with_attributes.html.es
+%%DATADIR%%/doc/html/editing_attributes/working_with_attributes.html.ru
+%%DATADIR%%/doc/html/editing_documents/Transform.html.de
+%%DATADIR%%/doc/html/editing_documents/about_inserting_a_division.html
+%%DATADIR%%/doc/html/editing_documents/about_inserting_a_division.html.de
+%%DATADIR%%/doc/html/editing_documents/about_inserting_a_division.html.es
+%%DATADIR%%/doc/html/editing_documents/about_inserting_a_division.html.ru
+%%DATADIR%%/doc/html/editing_documents/about_merging_elements.html
+%%DATADIR%%/doc/html/editing_documents/about_merging_elements.html.de
+%%DATADIR%%/doc/html/editing_documents/about_merging_elements.html.es
+%%DATADIR%%/doc/html/editing_documents/about_merging_elements.html.ru
+%%DATADIR%%/doc/html/editing_documents/changing_the_document_structure.html
+%%DATADIR%%/doc/html/editing_documents/changing_the_document_structure.html.de
+%%DATADIR%%/doc/html/editing_documents/changing_the_document_structure.html.es
+%%DATADIR%%/doc/html/editing_documents/changing_the_document_structure.html.ru
+%%DATADIR%%/doc/html/editing_documents/creating_new_documents.html
+%%DATADIR%%/doc/html/editing_documents/creating_new_documents.html.es
+%%DATADIR%%/doc/html/editing_documents/creating_new_documents.html.ru
+%%DATADIR%%/doc/html/editing_documents/the_transform_command.html
+%%DATADIR%%/doc/html/editing_documents/the_transform_command.html.de
+%%DATADIR%%/doc/html/editing_documents/the_transform_command.html.es
+%%DATADIR%%/doc/html/editing_documents/the_transform_command.html.ru
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html.de
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html.es
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_standard_multikey_support.html.ru
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html.de
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html.es
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/about_white_space_handling.html.ru
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html.de
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html.es
+%%DATADIR%%/doc/html/editing_iso-latin-1_characters/entering_ISOLatin1_characters_in_amaya.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_characters.html
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_characters.html.de
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_characters.html.es
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_characters.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html.de
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html.es
+%%DATADIR%%/doc/html/editing_mathematics/about_entering_math_constructs_using_the_keyboard.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/about_linking_in_mathml.html
+%%DATADIR%%/doc/html/editing_mathematics/about_linking_in_mathml.html.de
+%%DATADIR%%/doc/html/editing_mathematics/about_linking_in_mathml.html.es
+%%DATADIR%%/doc/html/editing_mathematics/about_linking_in_mathml.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/editing_math_expressions.html
+%%DATADIR%%/doc/html/editing_mathematics/editing_math_expressions.html.de
+%%DATADIR%%/doc/html/editing_mathematics/editing_math_expressions.html.es
+%%DATADIR%%/doc/html/editing_mathematics/editing_math_expressions.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/math_issues.html
+%%DATADIR%%/doc/html/editing_mathematics/math_issues.html.de
+%%DATADIR%%/doc/html/editing_mathematics/math_issues.html.es
+%%DATADIR%%/doc/html/editing_mathematics/math_issues.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/the_math_palette_and_the_types.html
+%%DATADIR%%/doc/html/editing_mathematics/the_math_palette_and_the_types.html.de
+%%DATADIR%%/doc/html/editing_mathematics/the_math_palette_and_the_types.html.es
+%%DATADIR%%/doc/html/editing_mathematics/the_math_palette_and_the_types.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/viewing_structure_in_mathml.html
+%%DATADIR%%/doc/html/editing_mathematics/viewing_structure_in_mathml.html.de
+%%DATADIR%%/doc/html/editing_mathematics/viewing_structure_in_mathml.html.es
+%%DATADIR%%/doc/html/editing_mathematics/viewing_structure_in_mathml.html.ru
+%%DATADIR%%/doc/html/editing_mathematics/working_with_math_expressions.html
+%%DATADIR%%/doc/html/editing_mathematics/working_with_math_expressions.html.de
+%%DATADIR%%/doc/html/editing_mathematics/working_with_math_expressions.html.es
+%%DATADIR%%/doc/html/editing_mathematics/working_with_math_expressions.html.ru
+%%DATADIR%%/doc/html/editing_tables/add_column.html
+%%DATADIR%%/doc/html/editing_tables/add_column.html.de
+%%DATADIR%%/doc/html/editing_tables/add_column.html.es
+%%DATADIR%%/doc/html/editing_tables/add_column.html.ru
+%%DATADIR%%/doc/html/editing_tables/add_row.html
+%%DATADIR%%/doc/html/editing_tables/add_row.html.de
+%%DATADIR%%/doc/html/editing_tables/add_row.html.es
+%%DATADIR%%/doc/html/editing_tables/add_row.html.ru
+%%DATADIR%%/doc/html/editing_tables/add_tbody.html
+%%DATADIR%%/doc/html/editing_tables/add_tbody.html.de
+%%DATADIR%%/doc/html/editing_tables/add_tbody.html.es
+%%DATADIR%%/doc/html/editing_tables/add_tbody.html.ru
+%%DATADIR%%/doc/html/editing_tables/create_table.html
+%%DATADIR%%/doc/html/editing_tables/create_table.html.de
+%%DATADIR%%/doc/html/editing_tables/create_table.html.es
+%%DATADIR%%/doc/html/editing_tables/create_table.html.ru
+%%DATADIR%%/doc/html/editing_tables/remove_column.html
+%%DATADIR%%/doc/html/editing_tables/remove_column.html.de
+%%DATADIR%%/doc/html/editing_tables/remove_column.html.es
+%%DATADIR%%/doc/html/editing_tables/remove_column.html.ru
+%%DATADIR%%/doc/html/editing_tables/working_with_tables.html
+%%DATADIR%%/doc/html/editing_tables/working_with_tables.html.de
+%%DATADIR%%/doc/html/editing_tables/working_with_tables.html.es
+%%DATADIR%%/doc/html/editing_tables/working_with_tables.html.ru
+%%DATADIR%%/doc/html/elements/buttons_and_types_menu.html
+%%DATADIR%%/doc/html/elements/buttons_and_types_menu.html.de
+%%DATADIR%%/doc/html/elements/buttons_and_types_menu.html.es
+%%DATADIR%%/doc/html/elements/buttons_and_types_menu.html.ru
+%%DATADIR%%/doc/html/elements/changing_the_document_title.html
+%%DATADIR%%/doc/html/elements/changing_the_document_title.html.de
+%%DATADIR%%/doc/html/elements/changing_the_document_title.html.es
+%%DATADIR%%/doc/html/elements/changing_the_document_title.html.ru
+%%DATADIR%%/doc/html/elements/creating_nested_structures.html
+%%DATADIR%%/doc/html/elements/creating_nested_structures.html.de
+%%DATADIR%%/doc/html/elements/creating_nested_structures.html.es
+%%DATADIR%%/doc/html/elements/creating_nested_structures.html.ru
+%%DATADIR%%/doc/html/elements/exiting_anchors.html
+%%DATADIR%%/doc/html/elements/exiting_anchors.html.de
+%%DATADIR%%/doc/html/elements/exiting_anchors.html.es
+%%DATADIR%%/doc/html/elements/exiting_anchors.html.ru
+%%DATADIR%%/doc/html/elements/the_enter_key.html
+%%DATADIR%%/doc/html/elements/the_enter_key.html.de
+%%DATADIR%%/doc/html/elements/the_enter_key.html.es
+%%DATADIR%%/doc/html/elements/the_enter_key.html.ru
+%%DATADIR%%/doc/html/elements/the_structure_menu.html
+%%DATADIR%%/doc/html/elements/the_structure_menu.html.de
+%%DATADIR%%/doc/html/elements/the_structure_menu.html.es
+%%DATADIR%%/doc/html/elements/the_structure_menu.html.ru
+%%DATADIR%%/doc/html/index.css
+%%DATADIR%%/doc/html/linking/changing_a_link.html
+%%DATADIR%%/doc/html/linking/changing_a_link.html.de
+%%DATADIR%%/doc/html/linking/changing_a_link.html.es
+%%DATADIR%%/doc/html/linking/changing_a_link.html.ru
+%%DATADIR%%/doc/html/linking/creating_a_target_anchor.html
+%%DATADIR%%/doc/html/linking/creating_a_target_anchor.html.de
+%%DATADIR%%/doc/html/linking/creating_a_target_anchor.html.es
+%%DATADIR%%/doc/html/linking/creating_a_target_anchor.html.ru
+%%DATADIR%%/doc/html/linking/creating_a_target_element.html
+%%DATADIR%%/doc/html/linking/creating_a_target_element.html.de
+%%DATADIR%%/doc/html/linking/creating_a_target_element.html.es
+%%DATADIR%%/doc/html/linking/creating_a_target_element.html.ru
+%%DATADIR%%/doc/html/linking/creating_an_external_link.html
+%%DATADIR%%/doc/html/linking/creating_an_external_link.html.de
+%%DATADIR%%/doc/html/linking/creating_an_external_link.html.es
+%%DATADIR%%/doc/html/linking/creating_an_external_link.html.ru
+%%DATADIR%%/doc/html/linking/creating_an_internal_link.html
+%%DATADIR%%/doc/html/linking/creating_an_internal_link.html.de
+%%DATADIR%%/doc/html/linking/creating_an_internal_link.html.es
+%%DATADIR%%/doc/html/linking/creating_an_internal_link.html.ru
+%%DATADIR%%/doc/html/linking/removing_a_link_or_a_target_anchor.html
+%%DATADIR%%/doc/html/linking/removing_a_link_or_a_target_anchor.html.de
+%%DATADIR%%/doc/html/linking/removing_a_link_or_a_target_anchor.html.es
+%%DATADIR%%/doc/html/linking/removing_a_link_or_a_target_anchor.html.ru
+%%DATADIR%%/doc/html/printing/about_controlling_printing_with_css.html
+%%DATADIR%%/doc/html/printing/about_controlling_printing_with_css.html.de
+%%DATADIR%%/doc/html/printing/about_controlling_printing_with_css.html.es
+%%DATADIR%%/doc/html/printing/about_controlling_printing_with_css.html.ru
+%%DATADIR%%/doc/html/printing/print_command.html
+%%DATADIR%%/doc/html/printing/print_command.html.de
+%%DATADIR%%/doc/html/printing/print_command.html.es
+%%DATADIR%%/doc/html/printing/print_command.html.ru
+%%DATADIR%%/doc/html/printing/printing_documents.html
+%%DATADIR%%/doc/html/printing/printing_documents.html.de
+%%DATADIR%%/doc/html/printing/printing_documents.html.es
+%%DATADIR%%/doc/html/printing/printing_documents.html.ru
+%%DATADIR%%/doc/html/printing/unix_platforms.html
+%%DATADIR%%/doc/html/printing/unix_platforms.html.de
+%%DATADIR%%/doc/html/printing/unix_platforms.html.es
+%%DATADIR%%/doc/html/printing/unix_platforms.html.ru
+%%DATADIR%%/doc/html/printing/using_the_setup_and_print_command.html
+%%DATADIR%%/doc/html/printing/using_the_setup_and_print_command.html.de
+%%DATADIR%%/doc/html/printing/using_the_setup_and_print_command.html.es
+%%DATADIR%%/doc/html/printing/using_the_setup_and_print_command.html.ru
+%%DATADIR%%/doc/html/printing/windows_platforms.html
+%%DATADIR%%/doc/html/printing/windows_platforms.html.de
+%%DATADIR%%/doc/html/printing/windows_platforms.html.es
+%%DATADIR%%/doc/html/printing/windows_platforms.html.ru
+%%DATADIR%%/doc/html/saving_and_publishing_documents/about_saving_in_html.html
+%%DATADIR%%/doc/html/saving_and_publishing_documents/about_saving_in_html.html.de
+%%DATADIR%%/doc/html/saving_and_publishing_documents/about_saving_in_html.html.es
+%%DATADIR%%/doc/html/saving_and_publishing_documents/about_saving_in_html.html.ru
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html.de
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html.es
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_and_publishing_documents.html.ru
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_documents_as_text.html
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_documents_as_text.html.de
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_documents_as_text.html.es
+%%DATADIR%%/doc/html/saving_and_publishing_documents/saving_documents_as_text.html.ru
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_save_command.html
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_save_command.html.de
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_save_command.html.es
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_save_command.html.ru
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_saveas_command.html
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_saveas_command.html.de
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_saveas_command.html.es
+%%DATADIR%%/doc/html/saving_and_publishing_documents/the_saveas_command.html.ru
+%%DATADIR%%/doc/html/searching_and_replacing_text/searching_and_replacing_text.html
+%%DATADIR%%/doc/html/searching_and_replacing_text/searching_and_replacing_text.html.de
+%%DATADIR%%/doc/html/searching_and_replacing_text/searching_and_replacing_text.html.es
+%%DATADIR%%/doc/html/searching_and_replacing_text/searching_and_replacing_text.html.ru
+%%DATADIR%%/doc/html/selecting/selecting_by_structure.html
+%%DATADIR%%/doc/html/selecting/selecting_by_structure.html.de
+%%DATADIR%%/doc/html/selecting/selecting_by_structure.html.es
+%%DATADIR%%/doc/html/selecting/selecting_by_structure.html.ru
+%%DATADIR%%/doc/html/selecting/selecting_images.html
+%%DATADIR%%/doc/html/selecting/selecting_images.html.de
+%%DATADIR%%/doc/html/selecting/selecting_images.html.es
+%%DATADIR%%/doc/html/selecting/selecting_images.html.ru
+%%DATADIR%%/doc/html/selecting/selecting_with_keyboard_and_mouse.html
+%%DATADIR%%/doc/html/selecting/selecting_with_keyboard_and_mouse.html.de
+%%DATADIR%%/doc/html/selecting/selecting_with_keyboard_and_mouse.html.es
+%%DATADIR%%/doc/html/selecting/selecting_with_keyboard_and_mouse.html.ru
+%%DATADIR%%/doc/html/spell_checking/spell_checking.html
+%%DATADIR%%/doc/html/spell_checking/spell_checking.html.de
+%%DATADIR%%/doc/html/spell_checking/spell_checking.html.es
+%%DATADIR%%/doc/html/spell_checking/spell_checking.html.ru
+%%DATADIR%%/doc/html/style.css
+%%DATADIR%%/doc/html/style_sheets/about_applying_style_using_html_elements.html
+%%DATADIR%%/doc/html/style_sheets/about_applying_style_using_html_elements.html.de
+%%DATADIR%%/doc/html/style_sheets/about_applying_style_using_html_elements.html.es
+%%DATADIR%%/doc/html/style_sheets/about_applying_style_using_html_elements.html.ru
+%%DATADIR%%/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html
+%%DATADIR%%/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html.de
+%%DATADIR%%/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html.es
+%%DATADIR%%/doc/html/style_sheets/about_linking_external_and_user_style_sheets.html.ru
+%%DATADIR%%/doc/html/style_sheets/creating_and_updating_a_style_attribute.html
+%%DATADIR%%/doc/html/style_sheets/creating_and_updating_a_style_attribute.html.de
+%%DATADIR%%/doc/html/style_sheets/creating_and_updating_a_style_attribute.html.es
+%%DATADIR%%/doc/html/style_sheets/creating_and_updating_a_style_attribute.html.ru
+%%DATADIR%%/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html
+%%DATADIR%%/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html.de
+%%DATADIR%%/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html.es
+%%DATADIR%%/doc/html/style_sheets/creating_generic_style_for_an_element_or_a_class.html.ru
+%%DATADIR%%/doc/html/style_sheets/creating_html_style_elements.html
+%%DATADIR%%/doc/html/style_sheets/creating_html_style_elements.html.de
+%%DATADIR%%/doc/html/style_sheets/creating_html_style_elements.html.es
+%%DATADIR%%/doc/html/style_sheets/creating_html_style_elements.html.ru
+%%DATADIR%%/doc/html/style_sheets/handling_external_css.html
+%%DATADIR%%/doc/html/style_sheets/handling_external_css.html.de
+%%DATADIR%%/doc/html/style_sheets/handling_external_css.html.es
+%%DATADIR%%/doc/html/style_sheets/handling_external_css.html.ru
+%%DATADIR%%/doc/html/style_sheets/removing_style.html
+%%DATADIR%%/doc/html/style_sheets/removing_style.html.de
+%%DATADIR%%/doc/html/style_sheets/removing_style.html.es
+%%DATADIR%%/doc/html/style_sheets/removing_style.html.ru
+%%DATADIR%%/doc/html/style_sheets/working_with_styles.html
+%%DATADIR%%/doc/html/style_sheets/working_with_styles.html.de
+%%DATADIR%%/doc/html/style_sheets/working_with_styles.html.es
+%%DATADIR%%/doc/html/style_sheets/working_with_styles.html.ru
+%%DATADIR%%/doc/html/tans_annot.html.de
+%%DATADIR%%/doc/html/timeline_help.html
+%%DATADIR%%/doc/html/translate.html.ru
+%%DATADIR%%/doc/html/using_graphics/AddSVGLib.html
+%%DATADIR%%/doc/html/using_graphics/AddSVGLib.html.de
+%%DATADIR%%/doc/html/using_graphics/AddSVGLib.html.es
+%%DATADIR%%/doc/html/using_graphics/AddSVGLib.html.ru
+%%DATADIR%%/doc/html/using_graphics/Animation.html
+%%DATADIR%%/doc/html/using_graphics/Animation.html.de
+%%DATADIR%%/doc/html/using_graphics/Animation.html.es
+%%DATADIR%%/doc/html/using_graphics/Animation.html.ru
+%%DATADIR%%/doc/html/using_graphics/ChangeSVGLibPresentation.html
+%%DATADIR%%/doc/html/using_graphics/ChangeSVGLibPresentation.html.de
+%%DATADIR%%/doc/html/using_graphics/ChangeSVGLibPresentation.html.es
+%%DATADIR%%/doc/html/using_graphics/ChangeSVGLibPresentation.html.ru
+%%DATADIR%%/doc/html/using_graphics/SVGLibrary.html
+%%DATADIR%%/doc/html/using_graphics/SVGLibrary.html.de
+%%DATADIR%%/doc/html/using_graphics/SVGLibrary.html.es
+%%DATADIR%%/doc/html/using_graphics/SVGLibrary.html.ru
+%%DATADIR%%/doc/html/using_graphics/UseSVGLib.html
+%%DATADIR%%/doc/html/using_graphics/UseSVGLib.html.de
+%%DATADIR%%/doc/html/using_graphics/UseSVGLib.html.es
+%%DATADIR%%/doc/html/using_graphics/UseSVGLib.html.ru
+%%DATADIR%%/doc/html/using_graphics/creating_graphics_with_the_palette.html
+%%DATADIR%%/doc/html/using_graphics/creating_graphics_with_the_palette.html.de
+%%DATADIR%%/doc/html/using_graphics/creating_graphics_with_the_palette.html.es
+%%DATADIR%%/doc/html/using_graphics/creating_graphics_with_the_palette.html.ru
+%%DATADIR%%/doc/html/using_graphics/moving_graphics.html
+%%DATADIR%%/doc/html/using_graphics/moving_graphics.html.de
+%%DATADIR%%/doc/html/using_graphics/moving_graphics.html.es
+%%DATADIR%%/doc/html/using_graphics/moving_graphics.html.ru
+%%DATADIR%%/doc/html/using_graphics/painting_graphics.html
+%%DATADIR%%/doc/html/using_graphics/painting_graphics.html.de
+%%DATADIR%%/doc/html/using_graphics/painting_graphics.html.es
+%%DATADIR%%/doc/html/using_graphics/painting_graphics.html.ru
+%%DATADIR%%/doc/html/using_graphics/resizing_graphics.html
+%%DATADIR%%/doc/html/using_graphics/resizing_graphics.html.de
+%%DATADIR%%/doc/html/using_graphics/resizing_graphics.html.es
+%%DATADIR%%/doc/html/using_graphics/resizing_graphics.html.ru
+%%DATADIR%%/doc/html/using_graphics/working_with_graphics.html
+%%DATADIR%%/doc/html/using_graphics/working_with_graphics.html.de
+%%DATADIR%%/doc/html/using_graphics/working_with_graphics.html.es
+%%DATADIR%%/doc/html/using_graphics/working_with_graphics.html.ru
+%%DATADIR%%/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html
+%%DATADIR%%/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html.de
+%%DATADIR%%/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html.es
+%%DATADIR%%/doc/html/using_image_maps/about_alternative_text_and_long_descriptions.html.ru
+%%DATADIR%%/doc/html/using_image_maps/adding_an_image.html
+%%DATADIR%%/doc/html/using_image_maps/adding_an_image.html.de
+%%DATADIR%%/doc/html/using_image_maps/adding_an_image.html.es
+%%DATADIR%%/doc/html/using_image_maps/adding_an_image.html.ru
+%%DATADIR%%/doc/html/using_image_maps/creating_clientside_image_maps.html
+%%DATADIR%%/doc/html/using_image_maps/creating_clientside_image_maps.html.de
+%%DATADIR%%/doc/html/using_image_maps/creating_clientside_image_maps.html.es
+%%DATADIR%%/doc/html/using_image_maps/creating_clientside_image_maps.html.ru
+%%DATADIR%%/doc/html/using_image_maps/moving_image_map_areas.html
+%%DATADIR%%/doc/html/using_image_maps/moving_image_map_areas.html.de
+%%DATADIR%%/doc/html/using_image_maps/moving_image_map_areas.html.es
+%%DATADIR%%/doc/html/using_image_maps/moving_image_map_areas.html.ru
+%%DATADIR%%/doc/html/using_image_maps/resizing_image_map_areas.html
+%%DATADIR%%/doc/html/using_image_maps/resizing_image_map_areas.html.de
+%%DATADIR%%/doc/html/using_image_maps/resizing_image_map_areas.html.es
+%%DATADIR%%/doc/html/using_image_maps/resizing_image_map_areas.html.ru
+%%DATADIR%%/doc/html/using_image_maps/using_clientside_image_maps.html
+%%DATADIR%%/doc/html/using_image_maps/using_clientside_image_maps.html.de
+%%DATADIR%%/doc/html/using_image_maps/using_clientside_image_maps.html.es
+%%DATADIR%%/doc/html/using_image_maps/using_clientside_image_maps.html.ru
+%%DATADIR%%/doc/html/using_image_maps/working_with_image_maps.html
+%%DATADIR%%/doc/html/using_image_maps/working_with_image_maps.html.de
+%%DATADIR%%/doc/html/using_image_maps/working_with_image_maps.html.es
+%%DATADIR%%/doc/html/using_image_maps/working_with_image_maps.html.ru
+%%DATADIR%%/doc/html/using_the_makebook_function/assembling_large_document_collections.html
+%%DATADIR%%/doc/html/using_the_makebook_function/assembling_large_document_collections.html.de
+%%DATADIR%%/doc/html/using_the_makebook_function/assembling_large_document_collections.html.es
+%%DATADIR%%/doc/html/using_the_makebook_function/assembling_large_document_collections.html.ru
+%%DATADIR%%/doc/html/using_xml/editing_xml_document.html
+%%DATADIR%%/doc/html/using_xml/editing_xml_document.html.de
+%%DATADIR%%/doc/html/using_xml/editing_xml_document.html.es
+%%DATADIR%%/doc/html/using_xml/editing_xml_document.html.ru
+%%DATADIR%%/doc/html/using_xml/loading_xml_document.html
+%%DATADIR%%/doc/html/using_xml/loading_xml_document.html.de
+%%DATADIR%%/doc/html/using_xml/loading_xml_document.html.es
+%%DATADIR%%/doc/html/using_xml/loading_xml_document.html.ru
+%%DATADIR%%/doc/html/using_xml/xml_using_style.html
+%%DATADIR%%/doc/html/using_xml/xml_using_style.html.de
+%%DATADIR%%/doc/html/using_xml/xml_using_style.html.es
+%%DATADIR%%/doc/html/using_xml/xml_using_style.html.ru
+%%DATADIR%%/doc/html/viewing/about_synchronized_views.html
+%%DATADIR%%/doc/html/viewing/about_synchronized_views.html.de
+%%DATADIR%%/doc/html/viewing/about_synchronized_views.html.es
+%%DATADIR%%/doc/html/viewing/about_synchronized_views.html.ru
+%%DATADIR%%/doc/html/viewing/closing_a_view.html
+%%DATADIR%%/doc/html/viewing/closing_a_view.html.de
+%%DATADIR%%/doc/html/viewing/closing_a_view.html.es
+%%DATADIR%%/doc/html/viewing/closing_a_view.html.ru
+%%DATADIR%%/doc/html/viewing/opening_a_view.html
+%%DATADIR%%/doc/html/viewing/opening_a_view.html.de
+%%DATADIR%%/doc/html/viewing/opening_a_view.html.es
+%%DATADIR%%/doc/html/viewing/opening_a_view.html.ru
+%%DATADIR%%/doc/html/viewing/working_with_document_views.html
+%%DATADIR%%/doc/html/viewing/working_with_document_views.html.de
+%%DATADIR%%/doc/html/viewing/working_with_document_views.html.es
+%%DATADIR%%/doc/html/viewing/working_with_document_views.html.ru
+%%DATADIR%%/doc/images/Back.gif
+%%DATADIR%%/doc/images/Browser.gif
+%%DATADIR%%/doc/images/BrowsingMenu-fr.gif
+%%DATADIR%%/doc/images/CacheMenu-fr.gif
+%%DATADIR%%/doc/images/CacheMenu.gif
+%%DATADIR%%/doc/images/ColorMenu-de.gif
+%%DATADIR%%/doc/images/ColorMenu-fr.gif
+%%DATADIR%%/doc/images/ColorMenu.gif
+%%DATADIR%%/doc/images/CooperationMenu.gif
+%%DATADIR%%/doc/images/CooperationPreferences.gif
+%%DATADIR%%/doc/images/DL.gif
+%%DATADIR%%/doc/images/Editor.gif
+%%DATADIR%%/doc/images/Em.gif
+%%DATADIR%%/doc/images/Forward.gif
+%%DATADIR%%/doc/images/GeneralMenu-fr.gif
+%%DATADIR%%/doc/images/GeomMenu-fr.gif
+%%DATADIR%%/doc/images/GeomMenu.gif
+%%DATADIR%%/doc/images/Graph.gif
+%%DATADIR%%/doc/images/H1.gif
+%%DATADIR%%/doc/images/H2.gif
+%%DATADIR%%/doc/images/H3.gif
+%%DATADIR%%/doc/images/IDMenu.png
+%%DATADIR%%/doc/images/Image.gif
+%%DATADIR%%/doc/images/Langue.png
+%%DATADIR%%/doc/images/LangueNegotiation-fr.gif
+%%DATADIR%%/doc/images/LangueNegotiation.gif
+%%DATADIR%%/doc/images/LibraryDocDefaultStyle.gif
+%%DATADIR%%/doc/images/Link.gif
+%%DATADIR%%/doc/images/Math.gif
+%%DATADIR%%/doc/images/MathSymbols-de.png
+%%DATADIR%%/doc/images/NoLibraryDocStyle.gif
+%%DATADIR%%/doc/images/NumList.gif
+%%DATADIR%%/doc/images/OList.gif
+%%DATADIR%%/doc/images/Print.gif
+%%DATADIR%%/doc/images/ProfilesMenu-fr.gif
+%%DATADIR%%/doc/images/ProfilesMenu.gif
+%%DATADIR%%/doc/images/ProxyMenu-fr.gif
+%%DATADIR%%/doc/images/ProxyMenu.gif
+%%DATADIR%%/doc/images/PublishMenu-fr.gif
+%%DATADIR%%/doc/images/PublishMenu.gif
+%%DATADIR%%/doc/images/Reload.gif
+%%DATADIR%%/doc/images/Reload.png
+%%DATADIR%%/doc/images/SVGLibrary.gif
+%%DATADIR%%/doc/images/SaveAs-fr.gif
+%%DATADIR%%/doc/images/SaveAs.gif
+%%DATADIR%%/doc/images/Strong.gif
+%%DATADIR%%/doc/images/align-de.png
+%%DATADIR%%/doc/images/alternateview-de.jpg
+%%DATADIR%%/doc/images/alternateview.jpg
+%%DATADIR%%/doc/images/amaya.gif
+%%DATADIR%%/doc/images/anim.gif
+%%DATADIR%%/doc/images/annot.png
+%%DATADIR%%/doc/images/annotationicon-de.png
+%%DATADIR%%/doc/images/annotationicon-es.png
+%%DATADIR%%/doc/images/annotationicon.png
+%%DATADIR%%/doc/images/annotationsmenu-de.png
+%%DATADIR%%/doc/images/annotationsmenu-es.png
+%%DATADIR%%/doc/images/annotationsmenu-fr.png
+%%DATADIR%%/doc/images/annotationsmenu.png
+%%DATADIR%%/doc/images/annotationwindow-de.png
+%%DATADIR%%/doc/images/annotationwindow-es.png
+%%DATADIR%%/doc/images/annotationwindow.png
+%%DATADIR%%/doc/images/annotorp.png
+%%DATADIR%%/doc/images/background-de.png
+%%DATADIR%%/doc/images/bmbprop.png
+%%DATADIR%%/doc/images/bmmenu.png
+%%DATADIR%%/doc/images/bmtprop.png
+%%DATADIR%%/doc/images/bmview1.png
+%%DATADIR%%/doc/images/bmview2.png
+%%DATADIR%%/doc/images/check.gif
+%%DATADIR%%/doc/images/closed.png
+%%DATADIR%%/doc/images/code.gif
+%%DATADIR%%/doc/images/color-de.png
+%%DATADIR%%/doc/images/configuration_for_annotations-de.png
+%%DATADIR%%/doc/images/configuration_for_annotations-es.png
+%%DATADIR%%/doc/images/configuration_for_annotations.png
+%%DATADIR%%/doc/images/configurebox-fr.png
+%%DATADIR%%/doc/images/configurebox.png
+%%DATADIR%%/doc/images/createRule-de.png
+%%DATADIR%%/doc/images/create_image-fr.png
+%%DATADIR%%/doc/images/create_link-fr.png
+%%DATADIR%%/doc/images/create_table-fr.png
+%%DATADIR%%/doc/images/css-fr.gif
+%%DATADIR%%/doc/images/css.gif
+%%DATADIR%%/doc/images/dialog_save_as-de.png
+%%DATADIR%%/doc/images/doc48x.gif
+%%DATADIR%%/doc/images/enrichissement_lib.png
+%%DATADIR%%/doc/images/find.gif
+%%DATADIR%%/doc/images/floppy.gif
+%%DATADIR%%/doc/images/font-de.png
+%%DATADIR%%/doc/images/formattedview-de.jpg
+%%DATADIR%%/doc/images/formattedview.jpg
+%%DATADIR%%/doc/images/graphics_palette-de.png
+%%DATADIR%%/doc/images/home.gif
+%%DATADIR%%/doc/images/image_button.gif
+%%DATADIR%%/doc/images/invalid_profile-fr.png
+%%DATADIR%%/doc/images/language_negotiation-de.png
+%%DATADIR%%/doc/images/language_negotiation-es.png
+%%DATADIR%%/doc/images/language_negotiation.png
+%%DATADIR%%/doc/images/left.gif
+%%DATADIR%%/doc/images/libsvg.gif
+%%DATADIR%%/doc/images/linksview-de.jpg
+%%DATADIR%%/doc/images/linksview.jpg
+%%DATADIR%%/doc/images/linkwindow.png
+%%DATADIR%%/doc/images/localfilter-es.png
+%%DATADIR%%/doc/images/localfilter.png
+%%DATADIR%%/doc/images/math_palette-de.png
+%%DATADIR%%/doc/images/not_well_formed-fr.png
+%%DATADIR%%/doc/images/open.png
+%%DATADIR%%/doc/images/printoptions_w32-de.png
+%%DATADIR%%/doc/images/put.gif
+%%DATADIR%%/doc/images/right.gif
+%%DATADIR%%/doc/images/scenario_graphique.png
+%%DATADIR%%/doc/images/search_and_replace-de.png
+%%DATADIR%%/doc/images/search_and_replace-fr.png
+%%DATADIR%%/doc/images/sourceview-de.jpg
+%%DATADIR%%/doc/images/sourceview.jpg
+%%DATADIR%%/doc/images/spellchecking-de.png
+%%DATADIR%%/doc/images/spellchecking-fr.png
+%%DATADIR%%/doc/images/stop.gif
+%%DATADIR%%/doc/images/structureview-de.jpg
+%%DATADIR%%/doc/images/structureview.jpg
+%%DATADIR%%/doc/images/table.gif
+%%DATADIR%%/doc/images/target.gif
+%%DATADIR%%/doc/images/threads-de.png
+%%DATADIR%%/doc/images/threads.png
+%%DATADIR%%/doc/images/timeline_view.png
+%%DATADIR%%/doc/images/tocview-de.jpg
+%%DATADIR%%/doc/images/tocview.jpg
+%%DATADIR%%/doc/images/up.gif
+%%DATADIR%%/doc/images/w3c_home
+%%DATADIR%%/fonts/ESSTIX10.TTF
+%%DATADIR%%/fonts/ESSTIX11.TTF
+%%DATADIR%%/fonts/ESSTIX12.TTF
+%%DATADIR%%/fonts/ESSTIX13.TTF
+%%DATADIR%%/fonts/ESSTIX14.TTF
+%%DATADIR%%/fonts/ESSTIX15.TTF
+%%DATADIR%%/fonts/ESSTIX16.TTF
+%%DATADIR%%/fonts/ESSTIX17.TTF
+%%DATADIR%%/fonts/ESSTIX1_.TTF
+%%DATADIR%%/fonts/ESSTIX2_.TTF
+%%DATADIR%%/fonts/ESSTIX3_.TTF
+%%DATADIR%%/fonts/ESSTIX4_.TTF
+%%DATADIR%%/fonts/ESSTIX5_.TTF
+%%DATADIR%%/fonts/ESSTIX6_.TTF
+%%DATADIR%%/fonts/ESSTIX7_.TTF
+%%DATADIR%%/fonts/ESSTIX8_.TTF
+%%DATADIR%%/fonts/ESSTIX9_.TTF
+%%DATADIR%%/fonts/Families.list
+%%DATADIR%%/fonts/FreeMono.ttf
+%%DATADIR%%/fonts/FreeMonoBold.ttf
+%%DATADIR%%/fonts/FreeMonoBoldOblique.ttf
+%%DATADIR%%/fonts/FreeMonoOblique.ttf
+%%DATADIR%%/fonts/FreeSans.ttf
+%%DATADIR%%/fonts/FreeSansBold.ttf
+%%DATADIR%%/fonts/FreeSansBoldOblique.ttf
+%%DATADIR%%/fonts/FreeSansOblique.ttf
+%%DATADIR%%/fonts/FreeSerif.ttf
+%%DATADIR%%/fonts/FreeSerifBold.ttf
+%%DATADIR%%/fonts/FreeSerifBoldItalic.ttf
+%%DATADIR%%/fonts/FreeSerifItalic.ttf
+%%DATADIR%%/fonts/fonts.dir
+%%DATADIR%%/fonts/icones.ff
+%%DATADIR%%/fonts/icones.pcf
+%%DATADIR%%/fonts/icones1.fb
+%%DATADIR%%/fonts/icones11.fb
+%%DATADIR%%/%%GUI%%/bin/amaya
+%%DATADIR%%/%%GUI%%/bin/print
+%%DATADIR%%/resources/icons/16x16/BG_norepeat.png
+%%DATADIR%%/resources/icons/16x16/BG_repeat.png
+%%DATADIR%%/resources/icons/16x16/BG_repeat_x.png
+%%DATADIR%%/resources/icons/16x16/BG_repeat_y.png
+%%DATADIR%%/resources/icons/16x16/MATHML_Bmath.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_divers.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_fleches.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_greek.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_greek_maj.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_maths.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_operateurs.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_relations_binaires.png
+%%DATADIR%%/resources/icons/16x16/MATHML_F_relations_negation.png
+%%DATADIR%%/resources/icons/16x16/MATHML_fence.png
+%%DATADIR%%/resources/icons/16x16/MATHML_frac.png
+%%DATADIR%%/resources/icons/16x16/MATHML_greek.png
+%%DATADIR%%/resources/icons/16x16/MATHML_insert.png
+%%DATADIR%%/resources/icons/16x16/MATHML_matrix.png
+%%DATADIR%%/resources/icons/16x16/MATHML_mscript.png
+%%DATADIR%%/resources/icons/16x16/MATHML_over.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_root.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sqrt.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sub.png
+%%DATADIR%%/resources/icons/16x16/MATHML_subsup.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sup.png
+%%DATADIR%%/resources/icons/16x16/MATHML_under.png
+%%DATADIR%%/resources/icons/16x16/XHTML_B.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Bullet.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Comment.png
+%%DATADIR%%/resources/icons/16x16/XHTML_DL.png
+%%DATADIR%%/resources/icons/16x16/XHTML_DelTarget.png
+%%DATADIR%%/resources/icons/16x16/XHTML_H1.png
+%%DATADIR%%/resources/icons/16x16/XHTML_H2.png
+%%DATADIR%%/resources/icons/16x16/XHTML_H3.png
+%%DATADIR%%/resources/icons/16x16/XHTML_I.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Image.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Link.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Num.png
+%%DATADIR%%/resources/icons/16x16/XHTML_T.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Table.png
+%%DATADIR%%/resources/icons/16x16/XHTML_Target.png
+%%DATADIR%%/resources/icons/16x16/XHTML_br.png
+%%DATADIR%%/resources/icons/16x16/XHTML_hr.png
+%%DATADIR%%/resources/icons/16x16/XHTML_quote.png
+%%DATADIR%%/resources/icons/16x16/about.png
+%%DATADIR%%/resources/icons/16x16/append.png
+%%DATADIR%%/resources/icons/16x16/back.png
+%%DATADIR%%/resources/icons/16x16/border_bottom.png
+%%DATADIR%%/resources/icons/16x16/border_left.png
+%%DATADIR%%/resources/icons/16x16/border_right.png
+%%DATADIR%%/resources/icons/16x16/border_top.png
+%%DATADIR%%/resources/icons/16x16/cancel.png
+%%DATADIR%%/resources/icons/16x16/char.png
+%%DATADIR%%/resources/icons/16x16/circle.png
+%%DATADIR%%/resources/icons/16x16/close_tab.png
+%%DATADIR%%/resources/icons/16x16/colorize.png
+%%DATADIR%%/resources/icons/16x16/copy.png
+%%DATADIR%%/resources/icons/16x16/cut.png
+%%DATADIR%%/resources/icons/16x16/default.png
+%%DATADIR%%/resources/icons/16x16/document_annot.gif
+%%DATADIR%%/resources/icons/16x16/document_annot.png
+%%DATADIR%%/resources/icons/16x16/document_bookmark.gif
+%%DATADIR%%/resources/icons/16x16/document_bookmark.png
+%%DATADIR%%/resources/icons/16x16/document_css.gif
+%%DATADIR%%/resources/icons/16x16/document_css.png
+%%DATADIR%%/resources/icons/16x16/document_default.gif
+%%DATADIR%%/resources/icons/16x16/document_default.png
+%%DATADIR%%/resources/icons/16x16/document_html.gif
+%%DATADIR%%/resources/icons/16x16/document_html.png
+%%DATADIR%%/resources/icons/16x16/document_image.gif
+%%DATADIR%%/resources/icons/16x16/document_image.png
+%%DATADIR%%/resources/icons/16x16/document_info.png
+%%DATADIR%%/resources/icons/16x16/document_library.gif
+%%DATADIR%%/resources/icons/16x16/document_library.png
+%%DATADIR%%/resources/icons/16x16/document_log.gif
+%%DATADIR%%/resources/icons/16x16/document_log.png
+%%DATADIR%%/resources/icons/16x16/document_math.gif
+%%DATADIR%%/resources/icons/16x16/document_math.png
+%%DATADIR%%/resources/icons/16x16/document_source.gif
+%%DATADIR%%/resources/icons/16x16/document_source.png
+%%DATADIR%%/resources/icons/16x16/document_svg.gif
+%%DATADIR%%/resources/icons/16x16/document_svg.png
+%%DATADIR%%/resources/icons/16x16/document_text.gif
+%%DATADIR%%/resources/icons/16x16/document_text.png
+%%DATADIR%%/resources/icons/16x16/document_xml.gif
+%%DATADIR%%/resources/icons/16x16/document_xml.png
+%%DATADIR%%/resources/icons/16x16/dummy.gif
+%%DATADIR%%/resources/icons/16x16/dummy.ico
+%%DATADIR%%/resources/icons/16x16/dummy.png
+%%DATADIR%%/resources/icons/16x16/editdelete.png
+%%DATADIR%%/resources/icons/16x16/error.png
+%%DATADIR%%/resources/icons/16x16/exit.png
+%%DATADIR%%/resources/icons/16x16/find.png
+%%DATADIR%%/resources/icons/16x16/format_center.png
+%%DATADIR%%/resources/icons/16x16/format_justify.png
+%%DATADIR%%/resources/icons/16x16/format_left.png
+%%DATADIR%%/resources/icons/16x16/format_right.png
+%%DATADIR%%/resources/icons/16x16/forward.png
+%%DATADIR%%/resources/icons/16x16/fullscreen.png
+%%DATADIR%%/resources/icons/16x16/home.png
+%%DATADIR%%/resources/icons/16x16/insert.png
+%%DATADIR%%/resources/icons/16x16/insert_table_col_after.png
+%%DATADIR%%/resources/icons/16x16/insert_table_col_before.png
+%%DATADIR%%/resources/icons/16x16/insert_table_row_after.png
+%%DATADIR%%/resources/icons/16x16/insert_table_row_before.png
+%%DATADIR%%/resources/icons/16x16/ledgreen.png
+%%DATADIR%%/resources/icons/16x16/ledred.png
+%%DATADIR%%/resources/icons/16x16/logo.png
+%%DATADIR%%/resources/icons/16x16/ok.png
+%%DATADIR%%/resources/icons/16x16/open.png
+%%DATADIR%%/resources/icons/16x16/paste.png
+%%DATADIR%%/resources/icons/16x16/polygon.png
+%%DATADIR%%/resources/icons/16x16/preferences.png
+%%DATADIR%%/resources/icons/16x16/print.png
+%%DATADIR%%/resources/icons/16x16/rectangle.png
+%%DATADIR%%/resources/icons/16x16/redo.png
+%%DATADIR%%/resources/icons/16x16/refresh.png
+%%DATADIR%%/resources/icons/16x16/reload.png
+%%DATADIR%%/resources/icons/16x16/save.png
+%%DATADIR%%/resources/icons/16x16/saveas.png
+%%DATADIR%%/resources/icons/16x16/setup_and_print.png
+%%DATADIR%%/resources/icons/16x16/spellcheck.png
+%%DATADIR%%/resources/icons/16x16/split_horizontaly.png
+%%DATADIR%%/resources/icons/16x16/split_verticaly.png
+%%DATADIR%%/resources/icons/16x16/stop.png
+%%DATADIR%%/resources/icons/16x16/sub.png
+%%DATADIR%%/resources/icons/16x16/super.png
+%%DATADIR%%/resources/icons/16x16/synchronize.png
+%%DATADIR%%/resources/icons/16x16/trash.png
+%%DATADIR%%/resources/icons/16x16/undo.png
+%%DATADIR%%/resources/icons/16x16/zoom_minus.png
+%%DATADIR%%/resources/icons/16x16/zoom_plus.png
+%%DATADIR%%/resources/icons/22x22/BG_norepeat.png
+%%DATADIR%%/resources/icons/22x22/BG_repeat.png
+%%DATADIR%%/resources/icons/22x22/BG_repeat_x.png
+%%DATADIR%%/resources/icons/22x22/BG_repeat_y.png
+%%DATADIR%%/resources/icons/22x22/MATHML_Bmath.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_divers.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_fleches.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_greek.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_greek_maj.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_maths.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_operateurs.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_relations_binaires.png
+%%DATADIR%%/resources/icons/22x22/MATHML_F_relations_negation.png
+%%DATADIR%%/resources/icons/22x22/MATHML_fence.png
+%%DATADIR%%/resources/icons/22x22/MATHML_frac.png
+%%DATADIR%%/resources/icons/22x22/MATHML_greek.png
+%%DATADIR%%/resources/icons/22x22/MATHML_insert.png
+%%DATADIR%%/resources/icons/22x22/MATHML_matrix.png
+%%DATADIR%%/resources/icons/22x22/MATHML_mscript.png
+%%DATADIR%%/resources/icons/22x22/MATHML_over.png
+%%DATADIR%%/resources/icons/22x22/MATHML_overunder.png
+%%DATADIR%%/resources/icons/22x22/MATHML_root.png
+%%DATADIR%%/resources/icons/22x22/MATHML_sqrt.png
+%%DATADIR%%/resources/icons/22x22/MATHML_sub.png
+%%DATADIR%%/resources/icons/22x22/MATHML_subsup.png
+%%DATADIR%%/resources/icons/22x22/MATHML_sup.png
+%%DATADIR%%/resources/icons/22x22/MATHML_under.png
+%%DATADIR%%/resources/icons/22x22/XHTML_B.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Bullet.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Comment.png
+%%DATADIR%%/resources/icons/22x22/XHTML_DL.png
+%%DATADIR%%/resources/icons/22x22/XHTML_DelTarget.png
+%%DATADIR%%/resources/icons/22x22/XHTML_H1.png
+%%DATADIR%%/resources/icons/22x22/XHTML_H2.png
+%%DATADIR%%/resources/icons/22x22/XHTML_H3.png
+%%DATADIR%%/resources/icons/22x22/XHTML_I.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Image.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Link.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Num.png
+%%DATADIR%%/resources/icons/22x22/XHTML_T.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Table.png
+%%DATADIR%%/resources/icons/22x22/XHTML_Target.png
+%%DATADIR%%/resources/icons/22x22/XHTML_br.png
+%%DATADIR%%/resources/icons/22x22/XHTML_hr.png
+%%DATADIR%%/resources/icons/22x22/XHTML_quote.png
+%%DATADIR%%/resources/icons/22x22/about.png
+%%DATADIR%%/resources/icons/22x22/back.png
+%%DATADIR%%/resources/icons/22x22/border_bottom.png
+%%DATADIR%%/resources/icons/22x22/border_left.png
+%%DATADIR%%/resources/icons/22x22/border_right.png
+%%DATADIR%%/resources/icons/22x22/border_top.png
+%%DATADIR%%/resources/icons/22x22/cancel.png
+%%DATADIR%%/resources/icons/22x22/circle.png
+%%DATADIR%%/resources/icons/22x22/close_tab.png
+%%DATADIR%%/resources/icons/22x22/colorize.png
+%%DATADIR%%/resources/icons/22x22/copy.png
+%%DATADIR%%/resources/icons/22x22/cut.png
+%%DATADIR%%/resources/icons/22x22/document_info.png
+%%DATADIR%%/resources/icons/22x22/dummy.gif
+%%DATADIR%%/resources/icons/22x22/dummy.ico
+%%DATADIR%%/resources/icons/22x22/dummy.png
+%%DATADIR%%/resources/icons/22x22/editdelete.png
+%%DATADIR%%/resources/icons/22x22/exit.png
+%%DATADIR%%/resources/icons/22x22/find.png
+%%DATADIR%%/resources/icons/22x22/format_center.png
+%%DATADIR%%/resources/icons/22x22/format_justify.png
+%%DATADIR%%/resources/icons/22x22/format_left.png
+%%DATADIR%%/resources/icons/22x22/format_right.png
+%%DATADIR%%/resources/icons/22x22/forward.png
+%%DATADIR%%/resources/icons/22x22/fullscreen.png
+%%DATADIR%%/resources/icons/22x22/home.png
+%%DATADIR%%/resources/icons/22x22/insert.png
+%%DATADIR%%/resources/icons/22x22/insert_table_col_after.png
+%%DATADIR%%/resources/icons/22x22/insert_table_col_before.png
+%%DATADIR%%/resources/icons/22x22/insert_table_row_after.png
+%%DATADIR%%/resources/icons/22x22/insert_table_row_before.png
+%%DATADIR%%/resources/icons/22x22/ledgreen.png
+%%DATADIR%%/resources/icons/22x22/ledred.png
+%%DATADIR%%/resources/icons/22x22/logo.png
+%%DATADIR%%/resources/icons/22x22/ok.png
+%%DATADIR%%/resources/icons/22x22/open.png
+%%DATADIR%%/resources/icons/22x22/paste.png
+%%DATADIR%%/resources/icons/22x22/polygon.png
+%%DATADIR%%/resources/icons/22x22/preferences.png
+%%DATADIR%%/resources/icons/22x22/print.png
+%%DATADIR%%/resources/icons/22x22/rectangle.png
+%%DATADIR%%/resources/icons/22x22/redo.png
+%%DATADIR%%/resources/icons/22x22/reload.png
+%%DATADIR%%/resources/icons/22x22/save.png
+%%DATADIR%%/resources/icons/22x22/saveas.png
+%%DATADIR%%/resources/icons/22x22/setup_and_print.png
+%%DATADIR%%/resources/icons/22x22/spellcheck.png
+%%DATADIR%%/resources/icons/22x22/split_horizontaly.png
+%%DATADIR%%/resources/icons/22x22/split_verticaly.png
+%%DATADIR%%/resources/icons/22x22/stop.png
+%%DATADIR%%/resources/icons/22x22/sub.png
+%%DATADIR%%/resources/icons/22x22/super.png
+%%DATADIR%%/resources/icons/22x22/synchronize.png
+%%DATADIR%%/resources/icons/22x22/trash.png
+%%DATADIR%%/resources/icons/22x22/undo.png
+%%DATADIR%%/resources/icons/22x22/zoom_minus.png
+%%DATADIR%%/resources/icons/22x22/zoom_plus.png
+%%DATADIR%%/resources/icons/misc/black_white.png
+%%DATADIR%%/resources/icons/misc/detach.png
+%%DATADIR%%/resources/icons/misc/detach_floating.png
+%%DATADIR%%/resources/icons/misc/dummy.gif
+%%DATADIR%%/resources/icons/misc/dummy.ico
+%%DATADIR%%/resources/icons/misc/dummy.png
+%%DATADIR%%/resources/icons/misc/empty.png
+%%DATADIR%%/resources/icons/misc/expand_off.png
+%%DATADIR%%/resources/icons/misc/expand_on.png
+%%DATADIR%%/resources/icons/misc/left.png
+%%DATADIR%%/resources/icons/misc/logo.ico
+%%DATADIR%%/resources/icons/misc/right.png
+%%DATADIR%%/resources/icons/misc/switch_colors.png
+%%DATADIR%%/resources/icons/misc/up.png
+%%DATADIR%%/resources/xrc/AuthentDlgWX.xrc
+%%DATADIR%%/resources/xrc/BgImageDlgWX.xrc
+%%DATADIR%%/resources/xrc/CheckedListDlgWX.xrc
+%%DATADIR%%/resources/xrc/ConfirmCloseTab.xrc
+%%DATADIR%%/resources/xrc/CreateTableDlgWX.xrc
+%%DATADIR%%/resources/xrc/DocInfoDlgWX.xrc
+%%DATADIR%%/resources/xrc/EnumListDlgWX.xrc
+%%DATADIR%%/resources/xrc/HRefDlgWX.xrc
+%%DATADIR%%/resources/xrc/ImageDlgWX.xrc
+%%DATADIR%%/resources/xrc/InitConfirmDlgWX.xrc
+%%DATADIR%%/resources/xrc/ListDlgWX.xrc
+%%DATADIR%%/resources/xrc/ListEditDlgWX.xrc
+%%DATADIR%%/resources/xrc/NewTemplateDocDlgWX.xrc
+%%DATADIR%%/resources/xrc/NumDlgWX.xrc
+%%DATADIR%%/resources/xrc/ObjectDlgWX.xrc
+%%DATADIR%%/resources/xrc/OpenDocDlgWX.xrc
+%%DATADIR%%/resources/xrc/Panel.xrc
+%%DATADIR%%/resources/xrc/Panel_ApplyClass.xrc
+%%DATADIR%%/resources/xrc/Panel_Attribute.xrc
+%%DATADIR%%/resources/xrc/Panel_CharStyle.xrc
+%%DATADIR%%/resources/xrc/Panel_Colors.xrc
+%%DATADIR%%/resources/xrc/Panel_Format.xrc
+%%DATADIR%%/resources/xrc/Panel_MathML.xrc
+%%DATADIR%%/resources/xrc/Panel_SpeChar.xrc
+%%DATADIR%%/resources/xrc/Panel_XHTML.xrc
+%%DATADIR%%/resources/xrc/Panel_XML.xrc
+%%DATADIR%%/resources/xrc/PreferenceDlgWX.xrc
+%%DATADIR%%/resources/xrc/PrintDlgWX.xrc
+%%DATADIR%%/resources/xrc/SaveAsDlgWX.xrc
+%%DATADIR%%/resources/xrc/SearchDlgWX.xrc
+%%DATADIR%%/resources/xrc/SpellCheckDlgWX.xrc
+%%DATADIR%%/resources/xrc/StyleDlgWX.xrc
+%%DATADIR%%/resources/xrc/TextDlgWX.xrc
+%%DATADIR%%/resources/xrc/TitleDlgWX.xrc
+%%DATADIR%%/resources/xrc/Toolbar.xrc
+%%DATADIR%%/resources/xrc/WinPrintDlgWX.xrc
+@unexec rmdir %D/share/applications 2>/dev/null || true
+@unexec rmdir %D/share/pixmaps 2>/dev/null || true
+@dirrm %%DATADIR%%/resources/xrc
+@dirrm %%DATADIR%%/resources/icons/misc
+@dirrm %%DATADIR%%/resources/icons/22x22
+@dirrm %%DATADIR%%/resources/icons/16x16
+@dirrm %%DATADIR%%/resources/icons
+@dirrm %%DATADIR%%/resources
+@dirrm %%DATADIR%%/%%GUI%%/bin
+@dirrm %%DATADIR%%/%%GUI%%
+@dirrm %%DATADIR%%/fonts
+@dirrm %%DATADIR%%/doc/images
+@dirrm %%DATADIR%%/doc/html/viewing
+@dirrm %%DATADIR%%/doc/html/using_xml
+@dirrm %%DATADIR%%/doc/html/using_the_makebook_function
+@dirrm %%DATADIR%%/doc/html/using_image_maps
+@dirrm %%DATADIR%%/doc/html/using_graphics
+@dirrm %%DATADIR%%/doc/html/style_sheets
+@dirrm %%DATADIR%%/doc/html/spell_checking
+@dirrm %%DATADIR%%/doc/html/selecting
+@dirrm %%DATADIR%%/doc/html/searching_and_replacing_text
+@dirrm %%DATADIR%%/doc/html/saving_and_publishing_documents
+@dirrm %%DATADIR%%/doc/html/printing
+@dirrm %%DATADIR%%/doc/html/linking
+@dirrm %%DATADIR%%/doc/html/elements
+@dirrm %%DATADIR%%/doc/html/editing_tables
+@dirrm %%DATADIR%%/doc/html/editing_mathematics
+@dirrm %%DATADIR%%/doc/html/editing_iso-latin-1_characters
+@dirrm %%DATADIR%%/doc/html/editing_documents
+@dirrm %%DATADIR%%/doc/html/editing_attributes
+@dirrm %%DATADIR%%/doc/html/configuring_amaya
+@dirrm %%DATADIR%%/doc/html/browsing
+@dirrm %%DATADIR%%/doc/html/attaching_annotations
+@dirrm %%DATADIR%%/doc/html/accessibility_in_amaya
+@dirrm %%DATADIR%%/doc/html/HTML-elements
+@dirrm %%DATADIR%%/doc/html
+@dirrm %%DATADIR%%/doc/WX/HTML-elements
+@dirrm %%DATADIR%%/doc/WX
+@dirrm %%DATADIR%%/doc
+@dirrm %%DATADIR%%/dicopar
+@dirrm %%DATADIR%%/davlib
+@dirrm %%DATADIR%%/config/libconfig
+@dirrm %%DATADIR%%/config
+@dirrm %%DATADIR%%/annotlib
+@dirrm %%DATADIR%%/amaya
+@dirrm %%DATADIR%%
--- amaya.diff ends here ---



>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?1125775182.0>