summaryrefslogtreecommitdiff
path: root/components/help/converters/gnome-db2html2
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2000-02-03 02:33:34 +0000
committerJonathan Blandford <jrb@src.gnome.org>2000-02-03 02:33:34 +0000
commita8bc7c34ffa90cce08a17d4935044abcc3e4bfff (patch)
tree4a8640a00969ce006e9d63462b3165144160f338 /components/help/converters/gnome-db2html2
parent1373b6a72a436fb83cb9d9b5f66938c39a3331cf (diff)
downloadnautilus-a8bc7c34ffa90cce08a17d4935044abcc3e4bfff.tar.gz
added README
2000-02-03 Jonathan Blandford <jrb@redhat.com> * gnome-db2html2/README: added README
Diffstat (limited to 'components/help/converters/gnome-db2html2')
-rw-r--r--components/help/converters/gnome-db2html2/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/components/help/converters/gnome-db2html2/README b/components/help/converters/gnome-db2html2/README
new file mode 100644
index 000000000..4e7466e95
--- /dev/null
+++ b/components/help/converters/gnome-db2html2/README
@@ -0,0 +1,20 @@
+This is a docbook->html converter. Yes, I know this isn't perfect, and yes,
+I know it isn't jade. It is hopefully, however, fast enough that we can
+only ship sgml files (as opposed to jade's output) in the short term, until
+we can use Mozilla w/ the docbook xsl instead.
+
+For those doc people who want to play with this, and don't want
+to configure nautilus, you can compile it with the following
+command line:
+
+gcc -o gnome-db2html2 xml-config --cflags --libs gnome-config --cflags --libs glib -Wall -g gdb3html.c toc-elements.c sect-elements.c
+
+You can run it by doing:
+
+gnome-db2html2 file.sgml > file.html
+
+If you want to look at a particular section, do:
+
+gnome-db2html2 file.sgml#sectid > sectid.html
+
+-Jonathan