aboutsummaryrefslogtreecommitdiff
path: root/www/amaya
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2008-02-07 14:20:53 +0000
committerMartin Wilke <miwi@FreeBSD.org>2008-02-07 14:20:53 +0000
commitcabfa566a18ff6fa21d69bcf43aaf82535d503ef (patch)
tree55f5cf2e045b8b1d39e25b62d9f33a39ed53549b /www/amaya
parent476874b4e75c895937677f6000e2282a6e0f297a (diff)
downloadports-cabfa566a18ff6fa21d69bcf43aaf82535d503ef.tar.gz
ports-cabfa566a18ff6fa21d69bcf43aaf82535d503ef.zip
Notes
Diffstat (limited to 'www/amaya')
-rw-r--r--www/amaya/Makefile11
-rw-r--r--www/amaya/distinfo6
-rw-r--r--www/amaya/files/patch-annotlib-ANNOTtools.c20
-rw-r--r--www/amaya/files/patch-dialogue-attrmenu.c11
-rw-r--r--www/amaya/files/patch-thotlib-presentation-presvariables.c40
-rw-r--r--www/amaya/pkg-plist974
6 files changed, 311 insertions, 751 deletions
diff --git a/www/amaya/Makefile b/www/amaya/Makefile
index e2f4b2f43eed..d9e30de10dc9 100644
--- a/www/amaya/Makefile
+++ b/www/amaya/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= amaya
-PORTVERSION= 9.51
-PORTREVISION= 1
+PORTVERSION= 9.55
CATEGORIES= www
MASTER_SITES= http://www.w3.org/Amaya/Distribution/ \
ftp://ftp.w3.org/pub/amaya/ \
@@ -19,7 +18,7 @@ MASTER_SITES= http://www.w3.org/Amaya/Distribution/ \
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}-fullsrc-${PORTVERSION}
+DISTNAME= ${PORTNAME}-fullsrc-${PORTVERSION}-2
EXTRACT_SUFX= .tgz
MAINTAINER= adam-ports@blacktabby.org
@@ -29,8 +28,6 @@ LIB_DEPENDS= Xft.2:${PORTSDIR}/x11-fonts/libXft \
jpeg.9:${PORTSDIR}/graphics/jpeg \
png.5:${PORTSDIR}/graphics/png
-BROKEN= Checksum mismatch
-
WRKSRC= ${WRKDIR}/Amaya/obj
USE_GMAKE= yes
@@ -46,9 +43,7 @@ OPTIONS= BOOKMARKS "Enable bookmark support (experimental)" off \
OPENGL "Enable OpenGL support" off \
TEMPLATES "Enable template support (experimental)" off
-REALVERSION= 8.8.51
-DATADIR= ${PREFIX}/Amaya-${REALVERSION}
-PLIST_SUB= REALVERSION="${REALVERSION}"
+DATADIR= ${PREFIX}/Amaya
.include <bsd.port.pre.mk>
diff --git a/www/amaya/distinfo b/www/amaya/distinfo
index 21a699b581c0..99ab7c7df16e 100644
--- a/www/amaya/distinfo
+++ b/www/amaya/distinfo
@@ -1,3 +1,3 @@
-MD5 (amaya-fullsrc-9.51.tgz) = 0dc50e7cd3135ae1843da4785ec4d050
-SHA256 (amaya-fullsrc-9.51.tgz) = 17b1a9c108f861bb8bfb8108b0d11eb012e26728905e54dded83f8b2cab428ab
-SIZE (amaya-fullsrc-9.51.tgz) = 25110772
+MD5 (amaya-fullsrc-9.55-2.tgz) = c7c3e4f0192abaf3d64f11c8ac022f9b
+SHA256 (amaya-fullsrc-9.55-2.tgz) = 274bec2f7804cd747a85fdbfe8a3847a675b859be52cff19c86be4024a597915
+SIZE (amaya-fullsrc-9.55-2.tgz) = 29821734
diff --git a/www/amaya/files/patch-annotlib-ANNOTtools.c b/www/amaya/files/patch-annotlib-ANNOTtools.c
new file mode 100644
index 000000000000..860d32ba6656
--- /dev/null
+++ b/www/amaya/files/patch-annotlib-ANNOTtools.c
@@ -0,0 +1,20 @@
+--- ../annotlib/ANNOTtools.c.orig 2008-02-05 02:44:09.000000000 +0000
++++ ../annotlib/ANNOTtools.c 2008-02-05 02:44:37.000000000 +0000
+@@ -2275,7 +2275,7 @@
+ #ifdef _WINGUI
+ UTCoffset = _timezone; /* global, set by localtime() */
+ #else
+- UTCoffset = (int)timezone; /* global, set by localtime() */
++ UTCoffset = (long)timezone; /* global, set by localtime() */
+ #endif /* _WINGUI */
+
+ UTChourOffset = UTCminOffset = abs(UTCoffset)/60; /* UTCoffset is seconds */
+@@ -2378,7 +2378,7 @@
+ #ifdef _WINGUI
+ UTCoffset = _timezone; /* global, set by localtime() */
+ #else
+- UTCoffset = (int)timezone; /* global, set by localtime() */
++ UTCoffset = (long)timezone; /* global, set by localtime() */
+ #endif /* _WINGUI */
+
+ cal_date -= UTCoffset;
diff --git a/www/amaya/files/patch-dialogue-attrmenu.c b/www/amaya/files/patch-dialogue-attrmenu.c
new file mode 100644
index 000000000000..30405e2f7a30
--- /dev/null
+++ b/www/amaya/files/patch-dialogue-attrmenu.c
@@ -0,0 +1,11 @@
+--- ../thotlib/dialogue/attrmenu.c.orig 2008-02-05 04:32:31.000000000 +0000
++++ ../thotlib/dialogue/attrmenu.c 2008-02-05 04:32:41.000000000 +0000
+@@ -2097,7 +2097,7 @@
+ {
+ case AtEnumAttr:
+ case AtNumAttr:
+- pAttrNew->AeAttrValue = (int)value;
++ pAttrNew->AeAttrValue = (long)value;
+ /* applique les attributs a la partie selectionnee */
+ AttachAttrToRange (pAttrNew, lastChar, firstChar, lastSel,
+ firstSel, pDoc, TRUE);
diff --git a/www/amaya/files/patch-thotlib-presentation-presvariables.c b/www/amaya/files/patch-thotlib-presentation-presvariables.c
index 364d1a42ebaa..a3bd2232b145 100644
--- a/www/amaya/files/patch-thotlib-presentation-presvariables.c
+++ b/www/amaya/files/patch-thotlib-presentation-presvariables.c
@@ -1,20 +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;
+--- ../thotlib/presentation/presvariables.c.orig 2008-01-26 12:35:12.000000000 +0100
++++ ../thotlib/presentation/presvariables.c 2008-01-26 12:35:37.000000000 +0100
+@@ -1278,7 +1278,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;
+@@ -1298,7 +1298,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 --git a/www/amaya/pkg-plist b/www/amaya/pkg-plist
index bc7633b7d606..b26a407d1865 100644
--- a/www/amaya/pkg-plist
+++ b/www/amaya/pkg-plist
@@ -1,4 +1,4 @@
-bin/amaya-%%GUI%%
+bin/amaya
%%DATADIR%%/amaya/Amaya.svg
%%DATADIR%%/amaya/AmayaPage.html
%%DATADIR%%/amaya/AmayaPage.html.de
@@ -9,6 +9,7 @@ bin/amaya-%%GUI%%
%%DATADIR%%/amaya/AmayaPage_WX.html.es
%%DATADIR%%/amaya/AmayaPage_WX.html.fr
%%DATADIR%%/amaya/AmayaPage_WX.html.ru
+%%DATADIR%%/amaya/AmayaPage_WX.html.sk
%%DATADIR%%/amaya/AmayaSrcSyncIndex.gif
%%DATADIR%%/amaya/Annot.conf
%%DATADIR%%/amaya/HTML.STR
@@ -43,6 +44,8 @@ bin/amaya-%%GUI%%
%%DATADIR%%/amaya/SVG.STR
%%DATADIR%%/amaya/SVG.conf
%%DATADIR%%/amaya/SVG.en
+%%DATADIR%%/amaya/SVG.trans
+%%DATADIR%%/amaya/SVG.trans.fr
%%DATADIR%%/amaya/SVGP.PRS
%%DATADIR%%/amaya/SVGT.TRA
%%DATADIR%%/amaya/SVGTX.TRA
@@ -107,12 +110,14 @@ bin/amaya-%%GUI%%
%%DATADIR%%/amaya/timelinetoolbar_sh4.png
%%DATADIR%%/amaya/toggle-s.gif
%%DATADIR%%/amaya/toggle.gif
+%%DATADIR%%/amaya/xtigerbag.png
+%%DATADIR%%/amaya/xtigeroption.png
+%%DATADIR%%/amaya/xtigerrepeat.png
+%%DATADIR%%/amaya/xtigeruse.png
%%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
@@ -125,6 +130,9 @@ bin/amaya-%%GUI%%
%%DATADIR%%/config/annot.schemas
%%DATADIR%%/config/annotschema.rdf
%%DATADIR%%/config/annottypes.rdf
+%%DATADIR%%/config/cn-amayadialogue
+%%DATADIR%%/config/cn-amayamsg
+%%DATADIR%%/config/cn-libdialogue
%%DATADIR%%/config/de-amayadialogue
%%DATADIR%%/config/de-amayamsg
%%DATADIR%%/config/de-libdialogue
@@ -159,6 +167,9 @@ bin/amaya-%%GUI%%
%%DATADIR%%/config/it-amayadialogue
%%DATADIR%%/config/it-amayamsg
%%DATADIR%%/config/it-libdialogue
+%%DATADIR%%/config/jp-amayadialogue
+%%DATADIR%%/config/jp-amayamsg
+%%DATADIR%%/config/jp-libdialogue
%%DATADIR%%/config/ka-amayadialogue
%%DATADIR%%/config/ka-amayamsg
%%DATADIR%%/config/ka-libdialogue
@@ -184,6 +195,8 @@ bin/amaya-%%GUI%%
%%DATADIR%%/config/libconfig/colorbox.png
%%DATADIR%%/config/libconfig/colorbox.svg
%%DATADIR%%/config/libconfig/default_cat.lhtml
+%%DATADIR%%/config/libconfig/star.png
+%%DATADIR%%/config/libconfig/star.svg
%%DATADIR%%/config/libconfig/trash.png
%%DATADIR%%/config/libconfig/trash.svg
%%DATADIR%%/config/pt-amayadialogue
@@ -193,10 +206,16 @@ bin/amaya-%%GUI%%
%%DATADIR%%/config/ru-amayadialogue
%%DATADIR%%/config/ru-amayamsg
%%DATADIR%%/config/ru-libdialogue
+%%DATADIR%%/config/sk-amayadialogue
+%%DATADIR%%/config/sk-amayamsg
+%%DATADIR%%/config/sk-libdialogue
%%DATADIR%%/config/thread.rdf
%%DATADIR%%/config/tr-amayadialogue
%%DATADIR%%/config/tr-amayamsg
%%DATADIR%%/config/tr-libdialogue
+%%DATADIR%%/config/tw-amayadialogue
+%%DATADIR%%/config/tw-amayamsg
+%%DATADIR%%/config/tw-libdialogue
%%DATADIR%%/config/typeIcon.rdf
%%DATADIR%%/config/unix-thot.rc
%%DATADIR%%/dicopar/Eperso.dic
@@ -284,10 +303,13 @@ bin/amaya-%%GUI%%
%%DATADIR%%/doc/WX/MakeBook.html.fr
%%DATADIR%%/doc/WX/Manual.html
%%DATADIR%%/doc/WX/Manual.html.fr
+%%DATADIR%%/doc/WX/Manual.html.sk
%%DATADIR%%/doc/WX/Math.html
%%DATADIR%%/doc/WX/Math.html.fr
+%%DATADIR%%/doc/WX/Math.html.sk
%%DATADIR%%/doc/WX/Numbering.html
%%DATADIR%%/doc/WX/Numbering.html.fr
+%%DATADIR%%/doc/WX/Numbering.html.sk
%%DATADIR%%/doc/WX/Printing.html
%%DATADIR%%/doc/WX/Printing.html.fr
%%DATADIR%%/doc/WX/Publishing.html
@@ -312,6 +334,8 @@ bin/amaya-%%GUI%%
%%DATADIR%%/doc/WX/StyleSheets.html.fr
%%DATADIR%%/doc/WX/Tables.html
%%DATADIR%%/doc/WX/Tables.html.fr
+%%DATADIR%%/doc/WX/Templates.html
+%%DATADIR%%/doc/WX/Templates.html.fr
%%DATADIR%%/doc/WX/Transform.html
%%DATADIR%%/doc/WX/Tutorial.html.fr
%%DATADIR%%/doc/WX/Views.html
@@ -322,666 +346,6 @@ bin/amaya-%%GUI%%
%%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.old
-%%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/CooperationMenu.gif
@@ -1125,6 +489,7 @@ bin/amaya-%%GUI%%
%%DATADIR%%/fonts/icones1.fb
%%DATADIR%%/fonts/icones11.fb
%%DATADIR%%/gtk/bin/amaya
+%%DATADIR%%/gtk/bin/amaya_bin
%%DATADIR%%/gtk/bin/print
%%DATADIR%%/resources/icons/16x16/BG_norepeat.png
%%DATADIR%%/resources/icons/16x16/BG_repeat.png
@@ -1139,42 +504,247 @@ bin/amaya-%%GUI%%
%%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_abs.png
+%%DATADIR%%/resources/icons/16x16/MATHML_alephsub.png
+%%DATADIR%%/resources/icons/16x16/MATHML_and.png
+%%DATADIR%%/resources/icons/16x16/MATHML_andbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_approx.png
+%%DATADIR%%/resources/icons/16x16/MATHML_arg.png
+%%DATADIR%%/resources/icons/16x16/MATHML_arrow1.png
+%%DATADIR%%/resources/icons/16x16/MATHML_arrow2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_card.png
+%%DATADIR%%/resources/icons/16x16/MATHML_card2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_cartesianproduct.png
+%%DATADIR%%/resources/icons/16x16/MATHML_cartesianproductbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_ceiling.png
+%%DATADIR%%/resources/icons/16x16/MATHML_codomain.png
+%%DATADIR%%/resources/icons/16x16/MATHML_combination.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complement.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complementsub.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complexcartesian.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complexcartesian2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complexes.png
+%%DATADIR%%/resources/icons/16x16/MATHML_complexpolar.png
+%%DATADIR%%/resources/icons/16x16/MATHML_compose.png
+%%DATADIR%%/resources/icons/16x16/MATHML_composebinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_congru.png
+%%DATADIR%%/resources/icons/16x16/MATHML_conjugate.png
+%%DATADIR%%/resources/icons/16x16/MATHML_couple.png
+%%DATADIR%%/resources/icons/16x16/MATHML_curl.png
+%%DATADIR%%/resources/icons/16x16/MATHML_determinant.png
+%%DATADIR%%/resources/icons/16x16/MATHML_determinant2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_diagonalintersection.png
+%%DATADIR%%/resources/icons/16x16/MATHML_diff.png
+%%DATADIR%%/resources/icons/16x16/MATHML_diff2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_diff3.png
+%%DATADIR%%/resources/icons/16x16/MATHML_directsum.png
+%%DATADIR%%/resources/icons/16x16/MATHML_divergence2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_divide.png
+%%DATADIR%%/resources/icons/16x16/MATHML_domain.png
+%%DATADIR%%/resources/icons/16x16/MATHML_elementaryclassicalfunctions.png
+%%DATADIR%%/resources/icons/16x16/MATHML_emptyset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_enclose.png
+%%DATADIR%%/resources/icons/16x16/MATHML_enclose2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_eq.png
+%%DATADIR%%/resources/icons/16x16/MATHML_equivalent.png
+%%DATADIR%%/resources/icons/16x16/MATHML_equivalent2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_equivalent2binary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_equivalentbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_equivalentunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_eulergamma.png
+%%DATADIR%%/resources/icons/16x16/MATHML_exists.png
+%%DATADIR%%/resources/icons/16x16/MATHML_exists2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_exponentiale.png
+%%DATADIR%%/resources/icons/16x16/MATHML_factorial.png
+%%DATADIR%%/resources/icons/16x16/MATHML_factorof.png
+%%DATADIR%%/resources/icons/16x16/MATHML_false.png
%%DATADIR%%/resources/icons/16x16/MATHML_fence.png
+%%DATADIR%%/resources/icons/16x16/MATHML_fence2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_floor.png
+%%DATADIR%%/resources/icons/16x16/MATHML_forall.png
%%DATADIR%%/resources/icons/16x16/MATHML_frac.png
+%%DATADIR%%/resources/icons/16x16/MATHML_gcd.png
+%%DATADIR%%/resources/icons/16x16/MATHML_geq.png
+%%DATADIR%%/resources/icons/16x16/MATHML_geqbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_gg.png
+%%DATADIR%%/resources/icons/16x16/MATHML_grad.png
%%DATADIR%%/resources/icons/16x16/MATHML_greek.png
+%%DATADIR%%/resources/icons/16x16/MATHML_gt.png
+%%DATADIR%%/resources/icons/16x16/MATHML_ident.png
+%%DATADIR%%/resources/icons/16x16/MATHML_image.png
+%%DATADIR%%/resources/icons/16x16/MATHML_imaginary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_imaginaryi.png
+%%DATADIR%%/resources/icons/16x16/MATHML_implies.png
+%%DATADIR%%/resources/icons/16x16/MATHML_in.png
+%%DATADIR%%/resources/icons/16x16/MATHML_inf.png
+%%DATADIR%%/resources/icons/16x16/MATHML_infinity.png
+%%DATADIR%%/resources/icons/16x16/MATHML_infunder.png
%%DATADIR%%/resources/icons/16x16/MATHML_insert.png
%%DATADIR%%/resources/icons/16x16/MATHML_int.png
+%%DATADIR%%/resources/icons/16x16/MATHML_int2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_integers.png
+%%DATADIR%%/resources/icons/16x16/MATHML_intersect.png
+%%DATADIR%%/resources/icons/16x16/MATHML_intersectbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_intersectunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_interval.png
+%%DATADIR%%/resources/icons/16x16/MATHML_intunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_inverse.png
+%%DATADIR%%/resources/icons/16x16/MATHML_isomorphic.png
+%%DATADIR%%/resources/icons/16x16/MATHML_lambda.png
+%%DATADIR%%/resources/icons/16x16/MATHML_laplacian.png
+%%DATADIR%%/resources/icons/16x16/MATHML_lcm.png
+%%DATADIR%%/resources/icons/16x16/MATHML_leq.png
+%%DATADIR%%/resources/icons/16x16/MATHML_leqbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_lim.png
+%%DATADIR%%/resources/icons/16x16/MATHML_limtendsto.png
+%%DATADIR%%/resources/icons/16x16/MATHML_listextension.png
+%%DATADIR%%/resources/icons/16x16/MATHML_listseparation.png
+%%DATADIR%%/resources/icons/16x16/MATHML_ll.png
+%%DATADIR%%/resources/icons/16x16/MATHML_lt.png
+%%DATADIR%%/resources/icons/16x16/MATHML_map.png
%%DATADIR%%/resources/icons/16x16/MATHML_matrix.png
+%%DATADIR%%/resources/icons/16x16/MATHML_matrix2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_max.png
+%%DATADIR%%/resources/icons/16x16/MATHML_maxunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_mean.png
+%%DATADIR%%/resources/icons/16x16/MATHML_median.png
+%%DATADIR%%/resources/icons/16x16/MATHML_min.png
+%%DATADIR%%/resources/icons/16x16/MATHML_minunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_minusbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_minusunary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_mode.png
+%%DATADIR%%/resources/icons/16x16/MATHML_moment.png
+%%DATADIR%%/resources/icons/16x16/MATHML_mphantom.png
+%%DATADIR%%/resources/icons/16x16/MATHML_mrow.png
%%DATADIR%%/resources/icons/16x16/MATHML_mscript.png
+%%DATADIR%%/resources/icons/16x16/MATHML_naturals.png
+%%DATADIR%%/resources/icons/16x16/MATHML_neq.png
+%%DATADIR%%/resources/icons/16x16/MATHML_norm.png
+%%DATADIR%%/resources/icons/16x16/MATHML_not.png
+%%DATADIR%%/resources/icons/16x16/MATHML_notanumber.png
+%%DATADIR%%/resources/icons/16x16/MATHML_notin.png
+%%DATADIR%%/resources/icons/16x16/MATHML_notprsubset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_notsubset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_nuplet.png
+%%DATADIR%%/resources/icons/16x16/MATHML_o.png
+%%DATADIR%%/resources/icons/16x16/MATHML_omegasub.png
+%%DATADIR%%/resources/icons/16x16/MATHML_oo.png
+%%DATADIR%%/resources/icons/16x16/MATHML_or.png
+%%DATADIR%%/resources/icons/16x16/MATHML_orbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_orthogonal.png
+%%DATADIR%%/resources/icons/16x16/MATHML_orthogonalcomplement.png
+%%DATADIR%%/resources/icons/16x16/MATHML_outerproduct.png
%%DATADIR%%/resources/icons/16x16/MATHML_over.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overarrow.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overbar.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overbrace.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overbreve.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overcheck.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overdot.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overfrown.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overhat.png
+%%DATADIR%%/resources/icons/16x16/MATHML_overtilde.png
%%DATADIR%%/resources/icons/16x16/MATHML_overunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_parallel.png
+%%DATADIR%%/resources/icons/16x16/MATHML_parenthesis.png
+%%DATADIR%%/resources/icons/16x16/MATHML_partialdiff.png
+%%DATADIR%%/resources/icons/16x16/MATHML_partialdiff2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_pi.png
+%%DATADIR%%/resources/icons/16x16/MATHML_piecewise.png
+%%DATADIR%%/resources/icons/16x16/MATHML_plus.png
+%%DATADIR%%/resources/icons/16x16/MATHML_power.png
+%%DATADIR%%/resources/icons/16x16/MATHML_powerset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_primes.png
+%%DATADIR%%/resources/icons/16x16/MATHML_produnder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_produnderover.png
+%%DATADIR%%/resources/icons/16x16/MATHML_prsubset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_prsubsetbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_quaternions.png
+%%DATADIR%%/resources/icons/16x16/MATHML_quotient.png
+%%DATADIR%%/resources/icons/16x16/MATHML_rationnals.png
+%%DATADIR%%/resources/icons/16x16/MATHML_real.png
+%%DATADIR%%/resources/icons/16x16/MATHML_reals.png
+%%DATADIR%%/resources/icons/16x16/MATHML_rem.png
%%DATADIR%%/resources/icons/16x16/MATHML_root.png
+%%DATADIR%%/resources/icons/16x16/MATHML_scalarproduct.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sdev.png
+%%DATADIR%%/resources/icons/16x16/MATHML_selector.png
+%%DATADIR%%/resources/icons/16x16/MATHML_setdiff.png
+%%DATADIR%%/resources/icons/16x16/MATHML_setextension.png
+%%DATADIR%%/resources/icons/16x16/MATHML_setseparation.png
+%%DATADIR%%/resources/icons/16x16/MATHML_setsymdiff.png
%%DATADIR%%/resources/icons/16x16/MATHML_sqrt.png
%%DATADIR%%/resources/icons/16x16/MATHML_sub.png
+%%DATADIR%%/resources/icons/16x16/MATHML_subset.png
+%%DATADIR%%/resources/icons/16x16/MATHML_subsetbinary.png
%%DATADIR%%/resources/icons/16x16/MATHML_subsup.png
%%DATADIR%%/resources/icons/16x16/MATHML_sum.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sumunder.png
%%DATADIR%%/resources/icons/16x16/MATHML_sup.png
+%%DATADIR%%/resources/icons/16x16/MATHML_sup2.png
+%%DATADIR%%/resources/icons/16x16/MATHML_supminus.png
+%%DATADIR%%/resources/icons/16x16/MATHML_supplus.png
+%%DATADIR%%/resources/icons/16x16/MATHML_supunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_tendsto.png
+%%DATADIR%%/resources/icons/16x16/MATHML_tendstotendsto.png
+%%DATADIR%%/resources/icons/16x16/MATHML_times.png
+%%DATADIR%%/resources/icons/16x16/MATHML_timesbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_transpose.png
+%%DATADIR%%/resources/icons/16x16/MATHML_true.png
%%DATADIR%%/resources/icons/16x16/MATHML_under.png
+%%DATADIR%%/resources/icons/16x16/MATHML_underbrace.png
+%%DATADIR%%/resources/icons/16x16/MATHML_union.png
+%%DATADIR%%/resources/icons/16x16/MATHML_unionbinary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_unionunary.png
+%%DATADIR%%/resources/icons/16x16/MATHML_unionunder.png
+%%DATADIR%%/resources/icons/16x16/MATHML_variance.png
+%%DATADIR%%/resources/icons/16x16/MATHML_vectorcolumn.png
+%%DATADIR%%/resources/icons/16x16/MATHML_vectorproduct.png
+%%DATADIR%%/resources/icons/16x16/MATHML_vectorrow.png
+%%DATADIR%%/resources/icons/16x16/MATHML_verticalbrace.png
+%%DATADIR%%/resources/icons/16x16/MATHML_xor.png
+%%DATADIR%%/resources/icons/16x16/MATHML_xorbinary.png
%%DATADIR%%/resources/icons/16x16/XHTML_B.png
+%%DATADIR%%/resources/icons/16x16/XHTML_B_sel.png
%%DATADIR%%/resources/icons/16x16/XHTML_Bullet.png
%%DATADIR%%/resources/icons/16x16/XHTML_Comment.png
+%%DATADIR%%/resources/icons/16x16/XHTML_DD.png
%%DATADIR%%/resources/icons/16x16/XHTML_DL.png
+%%DATADIR%%/resources/icons/16x16/XHTML_DT.png
%%DATADIR%%/resources/icons/16x16/XHTML_DelTarget.png
%%DATADIR%%/resources/icons/16x16/XHTML_Div.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_I_sel.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_T_sel.png
%%DATADIR%%/resources/icons/16x16/XHTML_Table.png
%%DATADIR%%/resources/icons/16x16/XHTML_Target.png
+%%DATADIR%%/resources/icons/16x16/XHTML_add.png
%%DATADIR%%/resources/icons/16x16/XHTML_br.png
+%%DATADIR%%/resources/icons/16x16/XHTML_check.png
%%DATADIR%%/resources/icons/16x16/XHTML_date.png
+%%DATADIR%%/resources/icons/16x16/XHTML_del.png
+%%DATADIR%%/resources/icons/16x16/XHTML_del_sel.png
+%%DATADIR%%/resources/icons/16x16/XHTML_form.png
%%DATADIR%%/resources/icons/16x16/XHTML_hr.png
+%%DATADIR%%/resources/icons/16x16/XHTML_ins.png
+%%DATADIR%%/resources/icons/16x16/XHTML_ins_sel.png
+%%DATADIR%%/resources/icons/16x16/XHTML_menu.png
+%%DATADIR%%/resources/icons/16x16/XHTML_object.png
%%DATADIR%%/resources/icons/16x16/XHTML_quote.png
+%%DATADIR%%/resources/icons/16x16/XHTML_radio.png
+%%DATADIR%%/resources/icons/16x16/XHTML_sub.png
+%%DATADIR%%/resources/icons/16x16/XHTML_sub_sel.png
+%%DATADIR%%/resources/icons/16x16/XHTML_submit.png
+%%DATADIR%%/resources/icons/16x16/XHTML_sup.png
+%%DATADIR%%/resources/icons/16x16/XHTML_sup_sel.png
+%%DATADIR%%/resources/icons/16x16/XHTML_text.png
%%DATADIR%%/resources/icons/16x16/about.png
%%DATADIR%%/resources/icons/16x16/append.png
%%DATADIR%%/resources/icons/16x16/back.png
@@ -1183,7 +753,6 @@ bin/amaya-%%GUI%%
%%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/c1.png
%%DATADIR%%/resources/icons/16x16/cancel.png
%%DATADIR%%/resources/icons/16x16/char.png
%%DATADIR%%/resources/icons/16x16/circle.png
@@ -1192,7 +761,6 @@ bin/amaya-%%GUI%%
%%DATADIR%%/resources/icons/16x16/copy.png
%%DATADIR%%/resources/icons/16x16/css.png
%%DATADIR%%/resources/icons/16x16/cut.png
-%%DATADIR%%/resources/icons/16x16/default.png
%%DATADIR%%/resources/icons/16x16/document_annot.png
%%DATADIR%%/resources/icons/16x16/document_bookmark.png
%%DATADIR%%/resources/icons/16x16/document_css.png
@@ -1207,19 +775,15 @@ bin/amaya-%%GUI%%
%%DATADIR%%/resources/icons/16x16/document_svg.png
%%DATADIR%%/resources/icons/16x16/document_text.png
%%DATADIR%%/resources/icons/16x16/document_xml.png
+%%DATADIR%%/resources/icons/16x16/down.png
%%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/green.png
%%DATADIR%%/resources/icons/16x16/home.png
%%DATADIR%%/resources/icons/16x16/insert.png
%%DATADIR%%/resources/icons/16x16/insert_table_col_after.png
@@ -1236,7 +800,6 @@ bin/amaya-%%GUI%%
%%DATADIR%%/resources/icons/16x16/preferences.png
%%DATADIR%%/resources/icons/16x16/print.png
%%DATADIR%%/resources/icons/16x16/rectangle.png
-%%DATADIR%%/resources/icons/16x16/red.png
%%DATADIR%%/resources/icons/16x16/redo.png
%%DATADIR%%/resources/icons/16x16/refresh.png
%%DATADIR%%/resources/icons/16x16/reload.png
@@ -1252,21 +815,29 @@ bin/amaya-%%GUI%%
%%DATADIR%%/resources/icons/16x16/synchronize.png
%%DATADIR%%/resources/icons/16x16/trash.png
%%DATADIR%%/resources/icons/16x16/undo.png
+%%DATADIR%%/resources/icons/16x16/up.png
%%DATADIR%%/resources/icons/16x16/zoom_minus.png
%%DATADIR%%/resources/icons/16x16/zoom_plus.png
%%DATADIR%%/resources/icons/22x22/back.png
+%%DATADIR%%/resources/icons/22x22/colorize.png
%%DATADIR%%/resources/icons/22x22/find.png
%%DATADIR%%/resources/icons/22x22/forward.png
%%DATADIR%%/resources/icons/22x22/home.png
%%DATADIR%%/resources/icons/22x22/logo.png
+%%DATADIR%%/resources/icons/22x22/new.png
+%%DATADIR%%/resources/icons/22x22/open.png
%%DATADIR%%/resources/icons/22x22/print.png
%%DATADIR%%/resources/icons/22x22/reload.png
%%DATADIR%%/resources/icons/22x22/save.png
%%DATADIR%%/resources/icons/22x22/stop.png
-%%DATADIR%%/resources/icons/misc/black_white.png
+%%DATADIR%%/resources/icons/misc/MATHML_integral_contour.png
+%%DATADIR%%/resources/icons/misc/MATHML_integral_number.png
+%%DATADIR%%/resources/icons/misc/MATHML_integral_type.png
+%%DATADIR%%/resources/icons/misc/MATHML_operator0.png
+%%DATADIR%%/resources/icons/misc/MATHML_operator1.png
+%%DATADIR%%/resources/icons/misc/MATHML_operator2.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
@@ -1275,14 +846,13 @@ bin/amaya-%%GUI%%
%%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/toc.png
%%DATADIR%%/resources/icons/misc/up.png
%%DATADIR%%/resources/xrc/AuthentDlgWX.xrc
%%DATADIR%%/resources/xrc/CheckedListDlgWX.xrc
%%DATADIR%%/resources/xrc/ConfirmCloseTab.xrc
%%DATADIR%%/resources/xrc/CreateTableDlgWX.xrc
%%DATADIR%%/resources/xrc/DocInfoDlgWX.xrc
+%%DATADIR%%/resources/xrc/EmailDlg.xrc
%%DATADIR%%/resources/xrc/EnumListDlgWX.xrc
%%DATADIR%%/resources/xrc/HRefDlgWX.xrc
%%DATADIR%%/resources/xrc/ImageDlgWX.xrc
@@ -1297,9 +867,9 @@ bin/amaya-%%GUI%%
%%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_Char.xrc
%%DATADIR%%/resources/xrc/Panel_Colors.xrc
-%%DATADIR%%/resources/xrc/Panel_Format.xrc
+%%DATADIR%%/resources/xrc/Panel_Explorer.xrc
%%DATADIR%%/resources/xrc/Panel_MathML.xrc
%%DATADIR%%/resources/xrc/Panel_SpeChar.xrc
%%DATADIR%%/resources/xrc/Panel_XHTML.xrc
@@ -1307,32 +877,20 @@ bin/amaya-%%GUI%%
%%DATADIR%%/resources/xrc/PreferenceDlgWX.xrc
%%DATADIR%%/resources/xrc/PrintDlgWX.xrc
%%DATADIR%%/resources/xrc/SaveAsDlgWX.xrc
+%%DATADIR%%/resources/xrc/SaveAsTextDlgWX.xrc
%%DATADIR%%/resources/xrc/SearchDlgWX.xrc
+%%DATADIR%%/resources/xrc/SelectFenceAttributesDlgWX.xrc
+%%DATADIR%%/resources/xrc/SelectIntegralDlgWX.xrc
+%%DATADIR%%/resources/xrc/SelectOperatorDlgWX.xrc
+%%DATADIR%%/resources/xrc/SendByMailDlgWX.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/Toolbar_mac.xrc
%%DATADIR%%/resources/xrc/WinPrintDlgWX.xrc
-%%DATADIR%%/templates/en/cv.css
-%%DATADIR%%/templates/en/cv.html
-%%DATADIR%%/templates/en/cv2.css
-%%DATADIR%%/templates/en/cv2.html
-%%DATADIR%%/templates/en/page-template.html
-%%DATADIR%%/templates/en/right.png
-%%DATADIR%%/templates/en/style.css
-%%DATADIR%%/templates/fr/cv.css
-%%DATADIR%%/templates/fr/cv.html
-%%DATADIR%%/templates/fr/cv2.css
-%%DATADIR%%/templates/fr/cv2.html
-%%DATADIR%%/templates/fr/fax_template.html
-%%DATADIR%%/templates/fr/page-template.html
-%%DATADIR%%/templates/fr/reunion.html
-%%DATADIR%%/templates/fr/right.png
-%%DATADIR%%/templates/fr/style.css
-@dirrm %%DATADIR%%/templates/fr
-@dirrm %%DATADIR%%/templates/en
-@dirrm %%DATADIR%%/templates
+@exec mkdir -p %%DATADIR%%/davlib
@dirrm %%DATADIR%%/resources/xrc
@dirrm %%DATADIR%%/resources/icons/misc
@dirrm %%DATADIR%%/resources/icons/22x22
@@ -1343,30 +901,6 @@ bin/amaya-%%GUI%%
@dirrm %%DATADIR%%/gtk
@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