Urban Terror Rools Your Base!

Reasons Jim Weller Doesn't smoke anymore
The difference is that attaching a computer running UNIX on your network is inherently open, whereas a computer running Mac OS or Windows NT on your network is inherently closed. Much of the hacking of systems on the Internet is based on finding and exploiting flaws and bugs in the UNIX operating system. For example, under some versions of UNIX, if you send mail with the first line with more than 255 characters without a LF, any characters past the 256th would run as code with supervisor access. This allows you to send mail that could run code in the root of the computer! Another common attempt is to crash a login program which would then exit that account to the shell, giving you shell access in an otherwise captive account. Such problems simply don't exist on servers run under Mac OS and Windows NT. As there's no command shell to exit to, nor is there any way to send code over the link, there is no security problem with accounts. Even if a potential hacker were able to exit out of the FirstClass Server, the result would be that their link would instantly be terminated as it's FirstClass that's providing the link in the first place.
Well. I've Done it. I can now use two monitor on my SuperMicro. Thanks to (finally) Matrox getting there HALlib doing some interesting things. It's kind of a hollow victory though, because I can't play quake. There is a rule: The word Xinerama precludes DRI. You cannot get DRI with dual heads. My whole goal here was to be able to mirror quake so I could pipe it to my digital video camera and make some kickass videos. But NO! You Can't! Maybe I'll go buy an Nvidia TwinView ;) Someone in quake said they can do all kinds of amazing things in linux with that; mirroring and panoramas. I'm jealous.
Oh Well. At least I have a phat desktop to do my work on. Here's a screen shot to drool over :)
First you have to get USB stuff into the kernel. From 'make menuconfig' I'm using version 2.4.2 right now. <*> Support for USB [ ] USB verbose debug messages --- Miscellaneous USB options [*] Preliminary USB device filesystem --- USB Controllers <*> UHCI Alternate Driver (JE) support < > OHCI (Compaq, iMacs, OPTi, SiS, ALi, ...) support --- USB Device Class drivers < > USB Audio support < > USB Mass Storage support < > USB Modem (CDC ACM) support < > USB Printer support --- USB Human Interface Devices (HID) --- Input core support is needed for USB HID --- USB Imaging devices < > USB Kodak DC-2xx Camera support < > USB Scanner support --- USB Multimedia devices < > DABUSB driver --- USB Network adaptors --- USB port drivers USB Serial Converter support ---> --- USB misc drivers Also go into USB serial converter support and do the following <*> USB Serial Converter support [*] USB Serial Converter verbose debug [*] USB Generic Serial Driver < > USB Digi International AccelePort USB Serial Driver <*> USB Handspring Visor Driver Then rebuild, install, and reboot your new kernel. As far as sync and PIM software. There's a couple of options out there. I went with the ones that seemed to have momentum. pilot-link is hotsync software and libraries (it has an sibling coldsync that has made major contributions to the general code pool). Pilot-link has preliminary support for USB. Widespread devfs use will help. Remember when glibc2 first came out? :) http://pilot-link.sourceforge.net http://www.ooblick.com/software/coldsync/ root@synergy:~/pilot-link# ./configure --prefix=/usr/local/pilot-link-cvs root@synergy:~/pilot-link# make root@synergy:~/pilot-link# make install gnome-pilot is a gnome utility that uses pilot-link. It even has a few conduits builtin and plenty of sample conduit code. I'm still looking for the PIM conduits. Very slick. Needs some work in troubleshooting bad palm connections. root@synergy:~/gnome-pilot-0.1.55#./configure --prefix=/usr/local/gnome --enable-usb-visor=yes --with-pisock=/usr/local/pilot-link/ root@synergy:~/gnome-pilot-0.1.55# make root@synergy:~/gnome-pilot-0.1.55# make install Once you have the usb stuff working right gnome-pilot is a snap. Just add the applet to your gnome bar and away you go. pilot-link is more articulate. Try this to list all the files on your palm..... root@synergy:~# pilot-xfer -p /dev/ttyUSB1 -l Port: /dev/ttyUSB1 Please press the HotSync button now... Connected... Reading list of databases in RAM... 'CityTimeDB' 'Datebk3HDB' 'HSAdvCalcDB' 'AddressDB' 'DatebookDB' [etc.] The way pilot sync was setup you had to push hotsync first then run the program. I hated it. I wanted the program to poll until I decided to push the button. My hackomatic fix is below. It doesn't make a whole lot of difference if you use gnome-pilot. It seems to handle the usb stuff just fine b/c it has a daemon running.
From James Weller[...snip...]Date Saturday, April 7, 2001 0:35 am To pilot-unix@hcirisc.cs.binghamton.edu Subject pi_serial_open USB Visor Hack All, This is my hacked up version of libsock/unixserial.c:pi_serial_open . It is linux specific and probably butt ugly, but it works for me and should spawn a brainchild. All it does is check /proc/bus/usb/devices for the string Product=Handspring Visor usb_wait_count times. During that time you get .... feedback. Press the hotsync button in under usb_wait_count and you get the goods. This probably will break non-usb/non-linux systems. I got the idea when my gnome-pilot wouldn't work because I forgot to compile in usbdevfs. Trip huh? Diff what? Jim Weller libsock/unixserial.c:pi_serial_open -------------------------------------------------------------------- int pi_serial_open(struct pi_socket *ps, struct pi_sockaddr *addr, int addrlen) { char *tty = addr->pi_device; int i; /* begin jim weller Fri Apr 6 14:34:16 AKDT 2001 */ char line[256]; /* this is more than enough to fit any line from * /proc/bus/usb/devices */ int visor_exists = 0; FILE *f; int usb_wait_count = 10; /* end jim weller */ #ifndef SGTTY struct termios tcn; #else struct sgttyb tcn; #endif if ((!tty) || !strlen(tty)) tty = getenv("PILOTPORT"); if (!tty) tty = " "; /* begin jim weller Fri Apr 6 14:34:16 AKDT 2001*/ /* block until a device becomes available */ /* give ..... feedback */ printf("Push hotsync button now. Waiting %d seconds for USB visor device ", usb_wait_count); while( visor_exists == 0 && usb_wait_count > 0 ){ f = fopen ("/proc/bus/usb/devices", "r"); fgets (line, 255, f); while (!feof (f)) { if (line[0] == 'S') { if (!strncmp (line + 4, "Product=Handspring Visor", 24)) { visor_exists = 1; break; } } fgets (line, 255, f); } fclose (f); printf("."); fflush(stdout); sleep(1); usb_wait_count--; } if( visor_exists == 0 ){ printf(" Hotsync not pressed or no Visor found on port "); return -1; } /* end jim weller Fri Apr 6 14:34:16 AKDT 2001*/ if ((ps->mac->fd = open(tty, O_RDWR | O_NONBLOCK)) == -1) { return -1; /* errno already set */ } /* crazy hack by Chris Hanson cph@zurich.ai.mit.edu */ /* much criticized on the list, but effective :) */ /* while ((ps->mac->fd = open(tty, O_RDWR | O_NONBLOCK)) == -1) { */ /* if (errno != ENODEV) */ /* return -1; */ /* printf("No Device. Sleeping for 1 sec... (hack) "); */ /* sleep (1); */ /* } */ if (!isatty(ps->mac->fd)) { close(ps->mac->fd); errno = EINVAL; return -1; }
You should already have all the stuff from my palm quick start guide (SDK, Compiler etc.)
You need POSE from 3com
http://www.palmos.com/dev/tech/tools/emulator/
You need an X and GL toolkit called FLTK (fast light tool kit)
http://www.fltk.org/
fltk needs GL? Way around that? Does POS need GL? I think not. Need just Xdrawing components.
build totally broken. no make files genned for subdirs. Make install
totally fails, but with no error messages I installed by hand the
following. Some on demand, because I didn't know what to copy over
until the POSE compile started failing.
fluid
libfltk.a
FL/*.{h,H}
fltk nasty convention of using uppercase and/or lower case 'H' in .h
files
POSE is generally including .h not .H files. Symlinked as necessary
root@synergy:~/fltk-1.0.10/fluid# ls -l /usr/X11/include/FL/ | grep -E '->'
lrwxrwxrwx 1 root root 8 Apr 3 23:27 Fl_Box.h -> Fl_Box.H
lrwxrwxrwx 1 root root 10 Apr 3 23:25 filename.h -> filename.H
Never mind that I was just being stupid. I put everything in /usr/local/libfltk.
I just needed to add
CFLAGS=-I/usr/local/libfltk/include
LDFLAGE=-L/usr/local/libfltk/lib
Looks like the fltk author did all the symlink magic for us from .H to .h
root@synergy:~/Emulator_Src_3.1/BuildUnix# ./configure --prefix=/usr/local/palmemu
Once all that is done it seems to install just fine. It's statically
linked to fltk and dynamically linked to libc and X libs. No libs. No
includes. Nice and simple.
I can't couldn't get the ROM off of my Handspring (while I had it)
because the ROM starfer only uses serial. I'll see about USB
later. Just what I want to do is have to buy another
cradle. But such is life.
Next step is to figure out how to get the m68k debugger to attach to
the emulator and the device. I might just have to buy a serial
cradle.
PS As I was compiling gimp to get the below screenshot, I ran across this in a configure
message
[...snip...]
checking for vsnprintf... (cached) yes
checking for intelligent life... not found
checking for _exit... (cached) yes
creating ./config.status
[...snip...]
Here is the output from the command: openjade -t xml -d /usr/local/sgml/dsssl/docbook/html/ldp.dsl#html ../HOWTO-linux-palmos-dev.xml openjade:../HOWTO-linux-palmos-dev.xml:6:0:E: URL not supported by this version openjade:../HOWTO-linux-palmos-dev.xml:6:0:E: DTD did not contain element declaration for document type name openjade:../HOWTO-linux-palmos-dev.xml:22:5:E: element "BOOK" undefined openjade:../HOWTO-linux-palmos-dev.xml:23:9:E: element "BOOKINFO" undefined openjade:../HOWTO-linux-palmos-dev.xml:24:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:24:21:E: general entity "copy" not defined and no default entity openjade:../HOWTO-linux-palmos-dev.xml:25:7:E: element "AUTHOR" undefined openjade:../HOWTO-linux-palmos-dev.xml:25:18:E: element "FIRSTNAME" undefined openjade:../HOWTO-linux-palmos-dev.xml:25:42:E: element "SURNAME" undefined openjade:../HOWTO-linux-palmos-dev.xml:26:10:E: element "COPYRIGHT" undefined openjade:../HOWTO-linux-palmos-dev.xml:26:16:E: element "YEAR" undefined openjade:../HOWTO-linux-palmos-dev.xml:26:35:E: element "HOLDER" undefined openjade:../HOWTO-linux-palmos-dev.xml:27:12:E: element "LEGALNOTICE" undefined openjade:../HOWTO-linux-palmos-dev.xml:28:5:E: element "PARA" undefined openjade:../HOWTO-linux-palmos-dev.xml:35:9:E: element "ABSTRACT" undefined openjade:../HOWTO-linux-palmos-dev.xml:36:5:E: element "PARA" undefined openjade:../HOWTO-linux-palmos-dev.xml:39:9:E: element "EMPHASIS" undefined openjade:../HOWTO-linux-palmos-dev.xml:47:11:E: element "KEYWORDSET" undefined openjade:../HOWTO-linux-palmos-dev.xml:48:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:49:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:50:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:51:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:52:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:53:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:54:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:55:8:E: element "KEYWORD" undefined openjade:../HOWTO-linux-palmos-dev.xml:59:8:E: element "CHAPTER" undefined openjade:../HOWTO-linux-palmos-dev.xml:60:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:61:5:E: element "PARA" undefined openjade:../HOWTO-linux-palmos-dev.xml:64:8:E: element "CHAPTER" undefined openjade:../HOWTO-linux-palmos-dev.xml:65:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:68:8:E: element "CHAPTER" undefined openjade:../HOWTO-linux-palmos-dev.xml:69:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:72:8:E: element "CHAPTER" undefined openjade:../HOWTO-linux-palmos-dev.xml:73:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:76:9:E: element "APPENDIX" undefined openjade:../HOWTO-linux-palmos-dev.xml:77:6:E: element "TITLE" undefined openjade:../HOWTO-linux-palmos-dev.xml:80:9:E: element "APPENDIX" undefined openjade:../HOWTO-linux-palmos-dev.xml:81:6:E: element "TITLE" undefined openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:6:19:E: "X00E1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:7:19:E: "X00C1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:8:18:E: "X00E2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:9:18:E: "X00C2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:10:19:E: "X00E0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:11:19:E: "X00C0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:12:18:E: "X00E5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:13:18:E: "X00C5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:14:19:E: "X00E3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:15:19:E: "X00C3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:16:17:E: "X00E4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:17:17:E: "X00C4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:18:18:E: "X00E6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:19:18:E: "X00C6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:20:19:E: "X00E7" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:21:19:E: "X00C7" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:22:16:E: "X00F0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:23:16:E: "X00D0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:24:19:E: "X00E9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:25:19:E: "X00C9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:26:18:E: "X00EA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:27:18:E: "X00CA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:28:19:E: "X00E8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:29:19:E: "X00C8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:30:17:E: "X00EB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:31:17:E: "X00CB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:32:19:E: "X00ED" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:33:19:E: "X00CD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:34:18:E: "X00EE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:35:18:E: "X00CE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:36:19:E: "X00EC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:37:19:E: "X00CC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:38:17:E: "X00EF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:39:17:E: "X00CF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:40:19:E: "X00F1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:41:19:E: "X00D1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:42:19:E: "X00F3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:43:19:E: "X00D3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:44:18:E: "X00F4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:45:18:E: "X00D4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:46:19:E: "X00F2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:47:19:E: "X00D2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:48:19:E: "X00F8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:49:19:E: "X00D8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:50:19:E: "X00F5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:51:19:E: "X00D5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:52:17:E: "X00F6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:53:17:E: "X00D6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:54:18:E: "X00DF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:55:18:E: "X00FE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:56:18:E: "X00DE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:57:19:E: "X00FA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:58:19:E: "X00DA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:59:18:E: "X00FB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:60:18:E: "X00DB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:61:19:E: "X00F9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:62:19:E: "X00D9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:63:17:E: "X00FC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:64:17:E: "X00DC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:65:19:E: "X00FD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:66:19:E: "X00DD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:67:17:E: "X00FF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:6:19:E: "X00E1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:7:19:E: "X00C1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:8:18:E: "X00E2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:9:18:E: "X00C2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:10:19:E: "X00E0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:11:19:E: "X00C0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:12:18:E: "X00E5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:13:18:E: "X00C5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:14:19:E: "X00E3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:15:19:E: "X00C3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:16:17:E: "X00E4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:17:17:E: "X00C4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:18:18:E: "X00E6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:19:18:E: "X00C6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:20:19:E: "X00E7" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:21:19:E: "X00C7" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:22:16:E: "X00F0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:23:16:E: "X00D0" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:24:19:E: "X00E9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:25:19:E: "X00C9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:26:18:E: "X00EA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:27:18:E: "X00CA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:28:19:E: "X00E8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:29:19:E: "X00C8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:30:17:E: "X00EB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:31:17:E: "X00CB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:32:19:E: "X00ED" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:33:19:E: "X00CD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:34:18:E: "X00EE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:35:18:E: "X00CE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:36:19:E: "X00EC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:37:19:E: "X00CC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:38:17:E: "X00EF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:39:17:E: "X00CF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:40:19:E: "X00F1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:41:19:E: "X00D1" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:42:19:E: "X00F3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:43:19:E: "X00D3" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:44:18:E: "X00F4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:45:18:E: "X00D4" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:46:19:E: "X00F2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:47:19:E: "X00D2" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:48:19:E: "X00F8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:49:19:E: "X00D8" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:50:19:E: "X00F5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:51:19:E: "X00D5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:52:17:E: "X00F6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:53:17:E: "X00D6" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:54:18:E: "X00DF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:55:18:E: "X00FE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:56:18:E: "X00DE" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:57:19:E: "X00FA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:58:19:E: "X00DA" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:59:18:E: "X00FB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:60:18:E: "X00DB" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:61:19:E: "X00F9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:62:19:E: "X00D9" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:63:17:E: "X00FC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:64:17:E: "X00DC" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:65:19:E: "X00FD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:66:19:E: "X00DD" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat1.ent:67:17:E: "X00FF" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:6:19:E: "X0103" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:7:19:E: "X0102" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:8:18:E: "X0101" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:9:18:E: "X0100" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:10:18:E: "X0105" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:11:18:E: "X0104" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:12:19:E: "X0107" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:13:19:E: "X0106" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:14:19:E: "X010D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:15:19:E: "X010C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:16:18:E: "X0109" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:17:18:E: "X0108" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:18:17:E: "X010B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:19:17:E: "X010A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:20:19:E: "X010F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:21:19:E: "X010E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:22:19:E: "X0111" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:23:19:E: "X0110" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:24:19:E: "X011B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:25:19:E: "X011A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:26:17:E: "X0117" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:27:17:E: "X0116" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:28:18:E: "X0113" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:29:18:E: "X0112" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:30:18:E: "X0119" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:31:18:E: "X0118" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:32:19:E: "X01F5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:33:19:E: "X011F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:34:19:E: "X011E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:35:19:E: "X0122" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:36:18:E: "X011D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:37:18:E: "X011C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:38:17:E: "X0121" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:39:17:E: "X0120" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:40:18:E: "X0125" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:41:18:E: "X0124" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:42:19:E: "X0127" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:43:19:E: "X0126" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:44:17:E: "X0130" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:45:18:E: "X012A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:46:18:E: "X012B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:47:18:E: "X0133" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:48:18:E: "X0132" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:49:19:E: "X0131" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:50:18:E: "X012F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:51:18:E: "X012E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:52:19:E: "X0129" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:53:19:E: "X0128" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:54:18:E: "X0135" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:55:18:E: "X0134" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:56:19:E: "X0137" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:57:19:E: "X0136" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:58:19:E: "X0138" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:59:19:E: "X013A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:60:19:E: "X0139" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:61:19:E: "X013E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:62:19:E: "X013D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:63:19:E: "X013C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:64:19:E: "X013B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:65:19:E: "X0140" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:66:19:E: "X013F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:67:19:E: "X0142" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:68:19:E: "X0141" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:69:19:E: "X0144" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:70:19:E: "X0143" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:71:16:E: "X014B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:72:16:E: "X014A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:73:18:E: "X0149" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:74:19:E: "X0148" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:75:19:E: "X0147" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:76:19:E: "X0146" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:77:19:E: "X0145" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:78:19:E: "X0151" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:79:19:E: "X0150" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:80:18:E: "X014C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:81:18:E: "X014D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:82:18:E: "X0153" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:83:18:E: "X0152" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:84:19:E: "X0155" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:85:19:E: "X0154" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:86:19:E: "X0159" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:87:19:E: "X0158" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:88:19:E: "X0157" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:89:19:E: "X0156" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:90:19:E: "X015B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:91:19:E: "X015A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:92:19:E: "X0161" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:93:19:E: "X0160" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:94:19:E: "X015F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:95:19:E: "X015E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:96:18:E: "X015D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:97:18:E: "X015C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:98:19:E: "X0165" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:99:19:E: "X0164" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:100:19:E: "X0163" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:101:19:E: "X0162" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:102:19:E: "X0167" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:103:19:E: "X0166" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:104:19:E: "X016D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:105:19:E: "X016C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:106:19:E: "X0171" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:107:19:E: "X0170" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:108:18:E: "X016B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:109:18:E: "X016A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:110:18:E: "X0173" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:111:18:E: "X0172" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:112:18:E: "X016F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:113:18:E: "X016E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:114:19:E: "X0169" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:115:19:E: "X0168" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:116:18:E: "X0175" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:117:18:E: "X0174" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:118:18:E: "X0177" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:119:18:E: "X0176" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:120:17:E: "X0178" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:121:19:E: "X017A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:122:19:E: "X0179" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:123:19:E: "X017E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:124:19:E: "X017D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:125:17:E: "X017C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:126:17:E: "X017B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:6:16:E: "X0430" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:7:16:E: "X0410" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:8:16:E: "X0431" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:9:16:E: "X0411" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:10:16:E: "X0432" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:11:16:E: "X0412" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:12:16:E: "X0433" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:13:16:E: "X0413" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:14:16:E: "X0434" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:15:16:E: "X0414" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:16:17:E: "X0435" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:17:17:E: "X0415" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:18:17:E: "X0451" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:19:17:E: "X0401" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:20:17:E: "X0436" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:21:17:E: "X0416" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:22:16:E: "X0437" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:23:16:E: "X0417" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:24:16:E: "X0438" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:25:16:E: "X0418" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:26:16:E: "X0439" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:27:16:E: "X0419" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:28:16:E: "X043A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:29:16:E: "X041A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:30:16:E: "X043B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:31:16:E: "X041B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:32:16:E: "X043C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:33:16:E: "X041C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:34:16:E: "X043D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:35:16:E: "X041D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:36:16:E: "X043E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:37:16:E: "X041E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:38:16:E: "X043F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:39:16:E: "X041F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:40:16:E: "X0440" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:41:16:E: "X0420" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:42:16:E: "X0441" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:43:16:E: "X0421" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:44:16:E: "X0442" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:45:16:E: "X0422" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:46:16:E: "X0443" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:47:16:E: "X0423" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:48:16:E: "X0444" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:49:16:E: "X0424" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:50:17:E: "X0445" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:51:17:E: "X0425" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:52:17:E: "X0446" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:53:17:E: "X0426" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:54:17:E: "X0447" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:55:17:E: "X0427" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:56:17:E: "X0448" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:57:17:E: "X0428" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:58:19:E: "X0449" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:59:19:E: "X0429" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:60:19:E: "X044A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:61:19:E: "X042A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:62:16:E: "X044B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:63:16:E: "X042B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:64:19:E: "X044C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:65:19:E: "X042C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:66:16:E: "X044D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:67:16:E: "X042D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:68:17:E: "X044E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:69:17:E: "X042E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:70:17:E: "X044F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:71:17:E: "X042F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-cyr1.ent:72:19:E: "X2116" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:6:19:E: "X0103" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:7:19:E: "X0102" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:8:18:E: "X0101" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:9:18:E: "X0100" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:10:18:E: "X0105" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:11:18:E: "X0104" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:12:19:E: "X0107" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:13:19:E: "X0106" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:14:19:E: "X010D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:15:19:E: "X010C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:16:18:E: "X0109" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:17:18:E: "X0108" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:18:17:E: "X010B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:19:17:E: "X010A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:20:19:E: "X010F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:21:19:E: "X010E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:22:19:E: "X0111" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:23:19:E: "X0110" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:24:19:E: "X011B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:25:19:E: "X011A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:26:17:E: "X0117" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:27:17:E: "X0116" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:28:18:E: "X0113" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:29:18:E: "X0112" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:30:18:E: "X0119" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:31:18:E: "X0118" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:32:19:E: "X01F5" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:33:19:E: "X011F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:34:19:E: "X011E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:35:19:E: "X0122" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:36:18:E: "X011D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:37:18:E: "X011C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:38:17:E: "X0121" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:39:17:E: "X0120" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:40:18:E: "X0125" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:41:18:E: "X0124" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:42:19:E: "X0127" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:43:19:E: "X0126" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:44:17:E: "X0130" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:45:18:E: "X012A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:46:18:E: "X012B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:47:18:E: "X0133" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:48:18:E: "X0132" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:49:19:E: "X0131" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:50:18:E: "X012F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:51:18:E: "X012E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:52:19:E: "X0129" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:53:19:E: "X0128" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:54:18:E: "X0135" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:55:18:E: "X0134" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:56:19:E: "X0137" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:57:19:E: "X0136" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:58:19:E: "X0138" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:59:19:E: "X013A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:60:19:E: "X0139" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:61:19:E: "X013E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:62:19:E: "X013D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:63:19:E: "X013C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:64:19:E: "X013B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:65:19:E: "X0140" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:66:19:E: "X013F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:67:19:E: "X0142" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:68:19:E: "X0141" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:69:19:E: "X0144" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:70:19:E: "X0143" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:71:16:E: "X014B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:72:16:E: "X014A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:73:18:E: "X0149" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:74:19:E: "X0148" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:75:19:E: "X0147" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:76:19:E: "X0146" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:77:19:E: "X0145" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:78:19:E: "X0151" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:79:19:E: "X0150" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:80:18:E: "X014C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:81:18:E: "X014D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:82:18:E: "X0153" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:83:18:E: "X0152" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:84:19:E: "X0155" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:85:19:E: "X0154" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:86:19:E: "X0159" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:87:19:E: "X0158" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:88:19:E: "X0157" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:89:19:E: "X0156" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:90:19:E: "X015B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:91:19:E: "X015A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:92:19:E: "X0161" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:93:19:E: "X0160" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:94:19:E: "X015F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:95:19:E: "X015E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:96:18:E: "X015D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:97:18:E: "X015C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:98:19:E: "X0165" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:99:19:E: "X0164" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:100:19:E: "X0163" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:101:19:E: "X0162" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:102:19:E: "X0167" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:103:19:E: "X0166" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:104:19:E: "X016D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:105:19:E: "X016C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:106:19:E: "X0171" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:107:19:E: "X0170" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:108:18:E: "X016B" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:109:18:E: "X016A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:110:18:E: "X0173" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:111:18:E: "X0172" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:112:18:E: "X016F" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:113:18:E: "X016E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:114:19:E: "X0169" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:115:19:E: "X0168" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:116:18:E: "X0175" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:117:18:E: "X0174" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:118:18:E: "X0177" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:119:18:E: "X0176" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:120:17:E: "X0178" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:121:19:E: "X017A" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:122:19:E: "X0179" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:123:19:E: "X017E" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:124:19:E: "X017D" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:125:17:E: "X017C" is not a function name openjade:/usr/local/sgml/docbook/4.1.2/ent/iso-lat2.ent:126:17:E: "X017B" is not a function name The Oasis-open mailing lists have some interesting info regarding this problem. Problem description http://lists.oasis-open.org/archives/docbook-apps/200011/msg00120.html http://lists.oasis-open.org/archives/docbook-apps/200011/msg00148.html Solution (Windoze NT) http://lists.oasis-open.org/archives/docbook-apps/200011/msg00183.html After reading, the above solution. I noticed authors were compiling docs with an xml.dcl file from openjade. I check my openjade-1.3 directory and surprise(!) no xml.dcl. So, I looked in the openjade source directory and surprise(!) it was there in a folder called pubtext. I copied pubtext to my openjade install and now here is how it goes. This is the way I compile DocBook XML v4.1.2 documents. I created this catalog file (/usr/local/sgml/catalog) CATALOG "/usr/local/sgml/dsssl/docbook/catalog" CATALOG "/usr/local/sgml/openjade-1.3/dsssl/catalog" CATALOG "/usr/local/sgml/docbook/4.1sgml/catalog" CATALOG "/usr/local/sgml/docbook/4.1.2xml/catalog" I set $SGML_CATALOG_FILES to look like this SGML_CATALOG_FILES=/usr/local/sgml/catalog Here is my compile command... openjade -f 0error.log -t xml -d /usr/local/sgml/dsssl/docbook/html/ldp.dsl#html /usr/local/sgml/openjade-1.3/pubtext/xml.dcl HOWTO-linux-palmos-dev.xml