Import of xmhtml-1.1.7

XmHTML is a high performance Motif Widget capable of displaying
HTML 3.2 conforming text.

WWW: http://www.xs4all.nl/~ripley/XmHTML

MAINTAINER=	Nikolay Sturm <Nikolay.Sturm@desy.de>
This commit is contained in:
pvalchev 2001-07-13 17:50:44 +00:00
parent d99775f4cb
commit 2714393715
14 changed files with 569 additions and 0 deletions

54
www/xmhtml/Makefile Normal file
View File

@ -0,0 +1,54 @@
# $OpenBSD: Makefile,v 1.1.1.1 2001/07/13 17:50:44 pvalchev Exp $
# $FreeBSD: ports/x11-toolkits/xmhtml/Makefile,v 1.15 2001/06/29 05:19:06 lkoeller Exp $
# Original from: Peter Hawkins <thepish@freebsd.org>
COMMENT= "Motif widget capable of displaying HTML 3.2 conforming text"
DISTNAME= XmHTML-1.1.7
PKGNAME= ${DISTNAME:L}
CATEGORIES= www x11
NEED_VERSION= 1.419
HOMEPAGE= http://www.xs4all.nl/~ripley/XmHTML
MAINTAINER= Nikolay Sturm <Nikolay.Sturm@desy.de>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}/dist/
LIB_DEPENDS= jpeg.62::graphics/jpeg \
png.2::graphics/png
MAKE_ENV= CC="${LIBTOOL} ${CC}"
USE_X11= Yes
USE_GMAKE= Yes
USE_MOTIF= openmotif
USE_LIBTOOL= Yes
EXMP_DIR= ${PREFIX}/share/examples/XmHTML
DOCS_DIR= ${PREFIX}/share/doc/XmHTML
post-build:
rm -rf ${WRKSRC}/examples/.libs ${WRKSRC}/examples/*.lo ${WRKSRC}/examples/*.o
rm -rf ${WRKSRC}/book/.libs ${WRKSRC}/book/*.lo ${WRKSRC}/book/*.o
rm -rf ${WRKSRC}/contrib/.libs ${WRKSRC}/contrib/*.lo ${WRKSRC}/contrib/*.o
do-install:
${LIBTOOL} --mode=install ${INSTALL_DATA} \
${WRKSRC}/lib/libXmHTML.la ${PREFIX}/lib
rm -f ${PREFIX}/lib/libXmHTML.la
${INSTALL_DATA_DIR} ${PREFIX}/include/XmHTML
${INSTALL_DATA} ${WRKSRC}/include/XmHTML/*.h ${PREFIX}/include/XmHTML
${INSTALL_DATA_DIR} ${EXMP_DIR}
${TAR} -C ${WRKSRC} -cpf- book contrib examples | \
${TAR} -C ${EXMP_DIR} -xpf-
${INSTALL_DATA_DIR} ${DOCS_DIR}
${TAR} -C ${WRKSRC}/html -cpf- . | ${TAR} -C ${DOCS_DIR} -xpf-
.include <bsd.port.mk>

3
www/xmhtml/files/md5 Normal file
View File

@ -0,0 +1,3 @@
MD5 (XmHTML-1.1.7.tar.gz) = 6d079435fb954bb7878f4dd0d3f7b8d8
RMD160 (XmHTML-1.1.7.tar.gz) = 0e5cf4a0d24fc73277186a726a3997dea4ea82db
SHA1 (XmHTML-1.1.7.tar.gz) = 4d8c82f88cf0700f6fc8898323d865b83d2a1ff1

View File

@ -0,0 +1,93 @@
$OpenBSD: patch-Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- Makefile.orig Thu Feb 4 01:43:27 1999
+++ Makefile Sat Jun 30 23:33:23 2001
@@ -40,7 +40,7 @@ PLATFORM=Motif
# remove the examples directory from this line.
# If you want to build the XmHTML tutorial examples, add the book directory.
-SUBDIRS= lib http examples tools
+SUBDIRS= lib http examples book contrib
# some common definitions
#
@@ -55,7 +55,7 @@ AR = ar cq
RANLIB= ranlib
SHELL = /bin/sh
-MAKE = make
+#MAKE = make
# change this to makedepend if your system doesn't have gcc
MAKEDEPEND= gccmakedep
@@ -64,9 +64,9 @@ MAKEDEPEND= gccmakedep
# Compiler Settings #
# #
#####################
-CC = gcc
-CFLAGS = -g -funroll-loops -Wall -pipe -ansi
-LDFLAGS =
+#CC = gcc
+#CFLAGS = -g -funroll-loops -Wall -pipe -ansi
+#LDFLAGS =
# The following flags are *very* usefull if you are getting unresolved
# references to functions in libraries that you *know* to exist.
@@ -115,7 +115,7 @@ IMAGEDEFINES = -DHAVE_LIBJPEG -DHAVE_LIB
# HAVE_LIBZ => zlib.h
ZLIBINC =
-IMAGEINCLUDES = $(ZLIBINC)
+IMAGEINCLUDES = -I${LOCALBASE}/include $(ZLIBINC)
# Image libraries
# No need to add -lXpm if you need to include it with LIBS below
@@ -126,7 +126,7 @@ IMAGEINCLUDES = $(ZLIBINC)
# HAVE_LIBZ => libz (and possibly libm)
ZLIBLIB = -lz -lm
-IMAGELIBS = -ljpeg -lpng $(ZLIBLIB)
+IMAGELIBS = -L${LOCALBASE}/lib -ljpeg -lpng $(ZLIBLIB)
# It might be troublesome to know what the correct defines are for your
# system. A possible set of defines for some OS's is given below. Pick
@@ -166,14 +166,14 @@ IMAGELIBS = -ljpeg -lpng $(ZLIBLIB)
# Add -DDEBUG to enable selective debug output (see the file DEBUGGING for more
# info).
#
-CPPFLAGS = -DDEBUG -D_GNU_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -DHAVE_REGEX_H $(IMAGEDEFINES)
+CPPFLAGS = -DHAVE_REGEX_H $(IMAGEDEFINES)
# Various include directories
LIBINC=-I. -I../include -I../include/common -I../../include -I../../include/common
# Platform specific includes
ifeq ($(PLATFORM),Motif)
-PLATFORMINC=-I../../include/XmHTML -I/usr/X11R6/include
+PLATFORMINC=-I../../include/XmHTML -I${LOCALBASE}/include -I/usr/X11R6/include
else
ifeq ($(PLATFORM),gtk)
PLATFORMINC=-I../../include/gtk-xmhtml -I/usr/local/include
@@ -192,7 +192,7 @@ INCLUDES = $(LIBINC) $(PLATFORMINC) $(IM
# Motif version (default)
ifeq ($(PLATFORM),Motif)
-LIBDIR = -L/usr/X11R6/lib
+LIBDIR = -L${LOCALBASE}/lib -L/usr/X11R6/lib
# This is what is required under Linux (Motif 2.0.1).
# Your mileage may vary.
LIBS = -lXm -lXpm -lXmu -lXt -lXext -lX11 -lSM -lICE
@@ -200,12 +200,13 @@ LIBS = -lXm -lXpm -lXmu -lXt -lXext -l
else
# gtk version (only supported port for now)
-ifeq($(PLATFORM),gtk)
+ifeq ($(PLATFORM),gtk)
LIBDIR = -L/usr/local/lib
LIBS = -lgdk -lgtk -lX11
# endif gtk
+endif
endif
# Uncomment if you're building libXmHTML with dmalloc support

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-book_Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- book/Makefile.orig Thu Feb 4 01:43:27 1999
+++ book/Makefile Sat Jun 30 23:39:51 2001
@@ -12,7 +12,7 @@ EXAMPLES=simple_html simple_html2 autosi
# The library
XMHTMLINC= -I../lib
-XMHTMLLIB= -L../lib -lXmHTML
+XMHTMLLIB= ../lib/libXmHTML.la
LINKLIBS = $(XMHTMLLIB) $(LOADLIBES) $(DMALLOCLIB)
# rule to create .o files from .c files

View File

@ -0,0 +1,16 @@
$OpenBSD: patch-examples_Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- examples/Makefile.orig Thu Feb 4 01:43:27 1999
+++ examples/Makefile Sat Jun 30 23:40:16 2001
@@ -11,10 +11,10 @@ MOBJS= visual.o misc.o cache.o menu.o hi
EXAMPLES=example_1 example_2 example_4
# The XmHTML library
-XMHTMLLIB = -L../lib -lXmHTML
+XMHTMLLIB = ../lib/libXmHTML.la
# Richard Offer's http client-side library
-HTTPLIB = -L../http -lhttp
+HTTPLIB = ../http/libhttp.la
# Libraries against which all examples are linked
LINKLIBS = $(XMHTMLLIB) $(LOADLIBES) $(DMALLOCLIB)

View File

@ -0,0 +1,24 @@
$OpenBSD: patch-http_Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- http/Makefile.orig Thu Feb 4 01:43:27 1999
+++ http/Makefile Sat Jun 30 23:38:06 2001
@@ -2,7 +2,7 @@
# lint configuration. I use lclint.
#
-LIBRARY=libhttp.a
+LIBRARY=libhttp.la
# List of source, object and header files
SRCS=HTTP.c cookie.c
@@ -27,9 +27,8 @@ all: $(TARGET)
# targets to build
$(TARGET):: $(OBJS)
- $(RM) $@ \
- $(AR) $@ $(OBJS)
- $(RANLIB) $@
+ $(RM) $@
+ $(CC) -o $@ $(OBJS:.o=.lo) -rpath ${PREFIX}/lib -version-info 0:2
stamp-includes:
@if [ -d ../include ]; then set +x; \

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-include_XmHTML_resources_h,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- include/XmHTML/resources.h.orig Sun Dec 13 13:48:46 1998
+++ include/XmHTML/resources.h Sat Jun 30 23:39:06 2001
@@ -102,7 +102,9 @@
#define _resources_h_
#define Offset(field) XtOffsetOf(XmHTMLRec, html.field)
-#define Stringify(VAL) #VAL
+/* Must use cpp prescan for two levels of macros */
+#define Stringify(VAL) _Stringify(VAL)
+#define _Stringify(VAL) #VAL
static XtResource resources [] =
{

View File

@ -0,0 +1,25 @@
$OpenBSD: patch-lib_Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- lib/Makefile.orig Thu Feb 4 01:43:26 1999
+++ lib/Makefile Sat Jun 30 23:38:26 2001
@@ -25,7 +25,7 @@
# Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #
##############################################################################
#
-LIBRARY=libXmHTML.a
+LIBRARY=libXmHTML.la
# Target to make
TARGET=$(LIBRARY)
@@ -44,9 +44,9 @@ common::
@(set -x; cd common; $(MAKE) all $(pass_flags) )
$(TARGET):: common $(PLATFORM)
- $(RM) $@ \
- $(AR) $@ common/*.o $(PLATFORM)/*.o
- $(RANLIB) $@
+ $(RM) $@
+ $(CC) -o $@ common/*.lo $(PLATFORM)/*.lo \
+ -rpath ${PREFIX}/lib -version-info 1:2
depend::
@( for dir in $(SUBDIRS) ; do \

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-lib_common_layout_c,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
The patch fixes:
1) <HR> placement
2) formatting inside <PRE></PRE> (not really nice HTML, but any browser
supports it)
3) "Can't convert XmHTML_DEFAULT_GAMMA" runtime warning
--- lib/common/layout.c.orig Thu Jan 28 01:10:17 1999
+++ lib/common/layout.c Sat Jun 30 23:39:05 2001
@@ -2377,14 +2377,16 @@ SetRule(XmHTMLWidget html, PositionBox *
* Linefeeds in rules are divided accross the rule: half above and
* half below.
*****/
- if(data->linefeed)
+ if(data->linefeed) {
+ box->y += data->linefeed;
y_offset = data->linefeed/2;
- else
+ } else {
y_offset = data->font->height/2;
+ }
data->y = box->y + y_offset;
-
- /* take height of rule into account as well */
+
+ /* take height of rule into account as well */
y_offset += data->height/2;
/* full height of the box */

View File

@ -0,0 +1,28 @@
$OpenBSD: patch-lib_common_parse_c,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- lib/common/parse.c.orig Wed Jan 20 06:13:08 1999
+++ lib/common/parse.c Sat Jun 30 23:39:06 2001
@@ -1258,6 +1258,24 @@ _ParserCheckElementContent(Parser *parse
current == HT_U || current == HT_VAR ||
current == HT_FONT || current == HT_ZTEXT)
return(True);
+
+ /* allow most container elements as well if we can relax */
+ if(!parser->strict_checking &&
+ (current == HT_TABLE || current == HT_TR || current == HT_TH ||
+ current == HT_TD || current == HT_OL || current == HT_UL ||
+ current == HT_DL || current == HT_P || current == HT_DIV ||
+ current == HT_BLOCKQUOTE || current == HT_CENTER ||
+ current == HT_FORM || current == HT_CAPTION ||
+ current == HT_H1 || current == HT_H2 || current == HT_H3 ||
+ current == HT_H4 || current == HT_H5 || current == HT_H6))
+ {
+#ifdef MINIPARSE
+ tag_is_wrong_but_allowed = True;
+#endif
+ /* but always issue a warning */
+ parserCallback(parser, current, state, HTML_VIOLATION);
+ return(True);
+ }
break;
case HT_ZTEXT:

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-tools_Makefile,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
--- tools/Makefile.orig Thu Feb 4 01:43:27 1999
+++ tools/Makefile Sat Jun 30 23:40:04 2001
@@ -88,7 +88,7 @@ gifinfo:: gifinfo.o ImBuffer.o
httpget:: httpget.o
$(RM) $@ \
- $(CC) -o $@ $(LDFLAGS) httpget.o -L../http -lhttp $(DMALLOCLIB)
+ $(CC) -o $@ $(LDFLAGS) httpget.o ../http/libhttp.la $(DMALLOCLIB)
# gif to gzf converter
gif2gzf:: gif2gzf.o LZWStream.o ImBuffer.o

37
www/xmhtml/pkg/DESCR Normal file
View File

@ -0,0 +1,37 @@
XmHTML, a high performance Motif Widget capable of displaying HTML 3.2
conforming text. Amongst it's many features are the following:
* builtin image support for X11 bitmaps, X11 pixmaps, GIF87a, GIF89a,
JPEG and PNG;
* GIF images are decoded using a patent free scheme;
* builtin support for animated GIF89a and animated GIF89a with NETSCAPE2.0
loop extension. XmHTML supports
* all GIF89a disposal methods;
* image support covers all X11 visual types and display depths;
* delayed image loading;
* progressive image loading;
* builtin scrolling interface (both keyboard and mouse);
* anchors can be displayed as pushbuttons;
* anchor can be highlighted for enhanced visual feedback;
* autosizing;
* capable of displaying text/html, text/plain and standalone images;
* supports the full HTML 3.2 standard; as well as the HTML 4.0 <FRAMESET>
tags;
* an extensive set of callback resources;
* full text justification;
* smart and user-definable font mapping;
* can work with a predefined palette (which it can even create for you);
* builtin quantizer using Floyd-Steinberg error diffusion;
* four different dithering methods allow one to achieve an optimum
balance between performance and image quality;
* HTML Table support;
* Support for HTML4.0 Events;
* fully compatible with LessTif
XmBalloon, a very lightweight "tooltip" Widget to show a one-line string
in a small popup-window. Features include the following:
* Choose between a rectangular or shaped window;
* Popup window can be transparent;
* User-configurable Popup and popdown delays;
* very easy to use;
WWW: ${HOMEPAGE}

View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PFRAG.shared,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
lib/libXmHTML.so.1.2
DYNLIBDIR(%B)

218
www/xmhtml/pkg/PLIST Normal file
View File

@ -0,0 +1,218 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/07/13 17:50:45 pvalchev Exp $
include/XmHTML/Balloon.h
include/XmHTML/BalloonP.h
include/XmHTML/HTML.h
include/XmHTML/HTMLStrings.h
include/XmHTML/XCC.h
include/XmHTML/XCCP.h
include/XmHTML/XmHTML.h
include/XmHTML/XmHTMLP.h
include/XmHTML/XmHTMLfuncs.h
include/XmHTML/debug_menu.h
include/XmHTML/resources.h
include/XmHTML/tka.h
include/XmHTML/toolkit.h
lib/libXmHTML.a
%%SHARED%%
share/doc/XmHTML/GPL.html
share/doc/XmHTML/LGPL.html
share/doc/XmHTML/XmHTML.html
share/doc/XmHTML/apps.html
share/doc/XmHTML/changes.html
share/doc/XmHTML/copyrights.html
share/doc/XmHTML/custom_map.html
share/doc/XmHTML/custom_map.txt
share/doc/XmHTML/datatypes.html
share/doc/XmHTML/debug.html
share/doc/XmHTML/extensions.html
share/doc/XmHTML/font_map.html
share/doc/XmHTML/getit.html
share/doc/XmHTML/legals.html
share/doc/XmHTML/man.html
share/doc/XmHTML/man/AllocCol.html
share/doc/XmHTML/man/AncGetId.html
share/doc/XmHTML/man/AncScrId.html
share/doc/XmHTML/man/AncScrNm.html
share/doc/XmHTML/man/CrtHTML.html
share/doc/XmHTML/man/FontInfo.html
share/doc/XmHTML/man/FrGtChld.html
share/doc/XmHTML/man/FreeCol.html
share/doc/XmHTML/man/GetTitle.html
share/doc/XmHTML/man/GtHdAttr.html
share/doc/XmHTML/man/GtURLTyp.html
share/doc/XmHTML/man/HTGIFStr.html
share/doc/XmHTML/man/HTGtVer.html
share/doc/XmHTML/man/HTML.html
share/doc/XmHTML/man/HTObject.html
share/doc/XmHTML/man/HTPLCStr.html
share/doc/XmHTML/man/HTPapSiz.html
share/doc/XmHTML/man/ImCrFrIn.html
share/doc/XmHTML/man/ImCreate.html
share/doc/XmHTML/man/ImDefPrc.html
share/doc/XmHTML/man/ImDestro.html
share/doc/XmHTML/man/ImFreeAl.html
share/doc/XmHTML/man/ImFreeIn.html
share/doc/XmHTML/man/ImGZFSup.html
share/doc/XmHTML/man/ImGetTyp.html
share/doc/XmHTML/man/ImGifGzf.html
share/doc/XmHTML/man/ImImgMap.html
share/doc/XmHTML/man/ImInfo.html
share/doc/XmHTML/man/ImPLCCon.html
share/doc/XmHTML/man/ImPLCKil.html
share/doc/XmHTML/man/ImPLCSus.html
share/doc/XmHTML/man/ImReplac.html
share/doc/XmHTML/man/ImUpdate.html
share/doc/XmHTML/man/Redispla.html
share/doc/XmHTML/man/TxtGtFmt.html
share/doc/XmHTML/man/TxtGtSrc.html
share/doc/XmHTML/man/TxtGtStr.html
share/doc/XmHTML/man/TxtScrLn.html
share/doc/XmHTML/man/TxtStStr.html
share/doc/XmHTML/man/TxtStrWl.html
share/doc/XmHTML/man/XYToInfo.html
share/doc/XmHTML/man/XmImage.html
share/doc/XmHTML/man/empty.html
share/doc/XmHTML/man/man.map
share/doc/XmHTML/man/man.tmpl
share/doc/XmHTML/parser.html
share/doc/XmHTML/parser_prog.html
share/doc/XmHTML/parser_ref.html
share/doc/XmHTML/procedures.html
share/doc/XmHTML/progguide.html
share/doc/XmHTML/structures.html
share/doc/XmHTML/xmhtml_prog.html
share/examples/XmHTML/book/Imakefile
share/examples/XmHTML/book/Makefile
share/examples/XmHTML/book/Makefile.org
share/examples/XmHTML/book/Makefile.orig
share/examples/XmHTML/book/autosize_html
share/examples/XmHTML/book/autosize_html.c
share/examples/XmHTML/book/forced_html
share/examples/XmHTML/book/forced_html.c
share/examples/XmHTML/book/html
share/examples/XmHTML/book/html.c
share/examples/XmHTML/book/html_browser
share/examples/XmHTML/book/html_browser.c
share/examples/XmHTML/book/simple_html
share/examples/XmHTML/book/simple_html.c
share/examples/XmHTML/book/simple_html2
share/examples/XmHTML/book/simple_html2.c
share/examples/XmHTML/book/work_window.c
share/examples/XmHTML/contrib/Makefile
share/examples/XmHTML/contrib/Makefile.org
share/examples/XmHTML/contrib/README
share/examples/XmHTML/contrib/VUEorDT.c
share/examples/XmHTML/contrib/drawBttn.c
share/examples/XmHTML/contrib/example_5.c
share/examples/XmHTML/contrib/gif_decode.c
share/examples/XmHTML/contrib/htmltest.c
share/examples/XmHTML/contrib/netscape.c
share/examples/XmHTML/contrib/swallow.c
share/examples/XmHTML/contrib/swallow2
share/examples/XmHTML/contrib/swallow2.c
share/examples/XmHTML/examples/HTMLDemos.ad
share/examples/XmHTML/examples/Imakefile
share/examples/XmHTML/examples/Makefile
share/examples/XmHTML/examples/Makefile.org
share/examples/XmHTML/examples/Makefile.orig
share/examples/XmHTML/examples/README
share/examples/XmHTML/examples/cache.c
share/examples/XmHTML/examples/cache.h
share/examples/XmHTML/examples/example_1
share/examples/XmHTML/examples/example_1.c
share/examples/XmHTML/examples/example_2
share/examples/XmHTML/examples/example_2.c
share/examples/XmHTML/examples/example_4
share/examples/XmHTML/examples/example_4.c
share/examples/XmHTML/examples/form-test.pl
share/examples/XmHTML/examples/ftypes.h
share/examples/XmHTML/examples/gif_decode.c
share/examples/XmHTML/examples/history.c
share/examples/XmHTML/examples/history.h
share/examples/XmHTML/examples/menu.c
share/examples/XmHTML/examples/menu.h
share/examples/XmHTML/examples/menuItems.h
share/examples/XmHTML/examples/misc.c
share/examples/XmHTML/examples/misc.h
share/examples/XmHTML/examples/test-pages/README
share/examples/XmHTML/examples/test-pages/animation1.html
share/examples/XmHTML/examples/test-pages/animation2.html
share/examples/XmHTML/examples/test-pages/animation3.html
share/examples/XmHTML/examples/test-pages/black.jpg
share/examples/XmHTML/examples/test-pages/bug.gif
share/examples/XmHTML/examples/test-pages/chinese.html
share/examples/XmHTML/examples/test-pages/comments.html
share/examples/XmHTML/examples/test-pages/cyrillic.html
share/examples/XmHTML/examples/test-pages/dark_side.html
share/examples/XmHTML/examples/test-pages/dusan.html
share/examples/XmHTML/examples/test-pages/emailed.gif
share/examples/XmHTML/examples/test-pages/empty.html
share/examples/XmHTML/examples/test-pages/empty1.html
share/examples/XmHTML/examples/test-pages/english.html
share/examples/XmHTML/examples/test-pages/eye.xpm
share/examples/XmHTML/examples/test-pages/eye1.xpm
share/examples/XmHTML/examples/test-pages/eye10.xpm
share/examples/XmHTML/examples/test-pages/eye11.xpm
share/examples/XmHTML/examples/test-pages/eye12.xpm
share/examples/XmHTML/examples/test-pages/eye13.xpm
share/examples/XmHTML/examples/test-pages/eye14.xpm
share/examples/XmHTML/examples/test-pages/eye15.xpm
share/examples/XmHTML/examples/test-pages/eye16.xpm
share/examples/XmHTML/examples/test-pages/eye17.xpm
share/examples/XmHTML/examples/test-pages/eye18.xpm
share/examples/XmHTML/examples/test-pages/eye19.xpm
share/examples/XmHTML/examples/test-pages/eye2.xpm
share/examples/XmHTML/examples/test-pages/eye20.xpm
share/examples/XmHTML/examples/test-pages/eye21.xpm
share/examples/XmHTML/examples/test-pages/eye22.xpm
share/examples/XmHTML/examples/test-pages/eye23.xpm
share/examples/XmHTML/examples/test-pages/eye24.xpm
share/examples/XmHTML/examples/test-pages/eye3.xpm
share/examples/XmHTML/examples/test-pages/eye4.xpm
share/examples/XmHTML/examples/test-pages/eye5.xpm
share/examples/XmHTML/examples/test-pages/eye6.xpm
share/examples/XmHTML/examples/test-pages/eye7.xpm
share/examples/XmHTML/examples/test-pages/eye8.xpm
share/examples/XmHTML/examples/test-pages/eye9.xpm
share/examples/XmHTML/examples/test-pages/face.html
share/examples/XmHTML/examples/test-pages/font-stuff.html
share/examples/XmHTML/examples/test-pages/form-test.html
share/examples/XmHTML/examples/test-pages/frame.html
share/examples/XmHTML/examples/test-pages/frame1.html
share/examples/XmHTML/examples/test-pages/frame2.html
share/examples/XmHTML/examples/test-pages/frame3.html
share/examples/XmHTML/examples/test-pages/frame4.html
share/examples/XmHTML/examples/test-pages/frame5.html
share/examples/XmHTML/examples/test-pages/icons.html
share/examples/XmHTML/examples/test-pages/image-layout.html
share/examples/XmHTML/examples/test-pages/image-map.html
share/examples/XmHTML/examples/test-pages/null_end.html
share/examples/XmHTML/examples/test-pages/null_end1.html
share/examples/XmHTML/examples/test-pages/pass7_sml.png
share/examples/XmHTML/examples/test-pages/png.html
share/examples/XmHTML/examples/test-pages/pnglogo-blk-tiny.png
share/examples/XmHTML/examples/test-pages/root.html
share/examples/XmHTML/examples/test-pages/symbol.html
share/examples/XmHTML/examples/test-pages/table1.html
share/examples/XmHTML/examples/test-pages/table10.html
share/examples/XmHTML/examples/test-pages/table11.html
share/examples/XmHTML/examples/test-pages/table2.html
share/examples/XmHTML/examples/test-pages/table3.html
share/examples/XmHTML/examples/test-pages/table4.html
share/examples/XmHTML/examples/test-pages/table5.html
share/examples/XmHTML/examples/test-pages/table6.html
share/examples/XmHTML/examples/test-pages/table7.html
share/examples/XmHTML/examples/test-pages/table7.html.swp
share/examples/XmHTML/examples/test-pages/table8.html
share/examples/XmHTML/examples/test-pages/table9.html
share/examples/XmHTML/examples/test-pages/unclosed.html
share/examples/XmHTML/examples/test-pages/unclosed1.html
share/examples/XmHTML/examples/visual.c
@dirrm share/examples/XmHTML/examples/test-pages
@dirrm share/examples/XmHTML/examples
@dirrm share/examples/XmHTML/contrib
@dirrm share/examples/XmHTML/book
@dirrm share/examples/XmHTML
@dirrm share/doc/XmHTML/man
@dirrm share/doc/XmHTML
@dirrm include/XmHTML