summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikael Hallendal <micke@codefactory.se>2002-01-30 14:24:27 +0000
committerMikael Hallendal <hallski@src.gnome.org>2002-01-30 14:24:27 +0000
commitbfdfa9d0d1d9d79a0c64e28aa76f2454009d3282 (patch)
treef9acd5bb2b59eb49507b46d5d8d5765bccb4960b
parent1da55a3c4d80814033628d05162225d1409dacba (diff)
downloadyelp-YELP_0_2.tar.gz
Release 0.2YELP_0_2
2002-01-30 Mikael Hallendal <micke@codefactory.se> * Release 0.2 * src/yelp-view-toc.c (yelp_view_toc_write_header): added encoding utf-8 to html header. * README: updated * configure.in: bumped version.
-rw-r--r--ChangeLog11
-rw-r--r--README18
-rw-r--r--configure.in2
-rw-r--r--src/yelp-view-toc.c2
4 files changed, 22 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 0d668424..2f17c081 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,14 @@
2002-01-30 Mikael Hallendal <micke@codefactory.se>
+ * Release 0.2
+
+ * src/yelp-view-toc.c (yelp_view_toc_write_header): added encoding
+ utf-8 to html header.
+
+ * README: updated
+
+ * configure.in: bumped version.
+
* src/yelp-util.c: removed debug printouts.
* src/yelp-html.c: hide debug printouts.
@@ -66,7 +75,7 @@
YelpWindow.
* src/yelp-util.[ch] (yelp_util_find_node_from_uri): added
- unimpl.
+ unimpl.
* src/yelp-marshal.list: added VOID:STRING
diff --git a/README b/README
index 4a66fb51..a3be834d 100644
--- a/README
+++ b/README
@@ -5,15 +5,15 @@ Yelp is supposed to become a help browser for GNOME 2.0. The name Yelp
was suggested by Daniel Lundin. Yelp is pronounced the same as the
swedish word for 'help'.
-It uses the gnome-vfs help module from Nautilus (should this be moved
-somewhere where all could use it, gnome-vfs?)
-Support for different meta-data formats:
-----------------------------------------
+Requirments:
+------------
-The help browser should support at least Scrollkeeper and the old
-DevHelp format.
-
-A start-flag '-d' to read metadata using DevHelp format would probably
-do it. (not included yet).
+* GNOME 2.0 (beta2)
+* A working ScrollKeeper installation (suggested > 0.3).
+* Docbook DTD's/stylesheets
+If the docbook -> html converting is really slow (like 30 seconds to 1
+minute per document it means that your xml catalog is not correctly
+set up). Please look in libgnome/help-converters/README to see how to
+set it up.
diff --git a/configure.in b/configure.in
index 37234dc1..4c95a3ac 100644
--- a/configure.in
+++ b/configure.in
@@ -1,6 +1,6 @@
AC_INIT(src/yelp-main.c)
AM_CONFIG_HEADER(config.h)
-AM_INIT_AUTOMAKE(yelp, 0.1.99)
+AM_INIT_AUTOMAKE(yelp, 0.2)
AC_PROG_INTLTOOL
diff --git a/src/yelp-view-toc.c b/src/yelp-view-toc.c
index 807d20f5..cdc8e592 100644
--- a/src/yelp-view-toc.c
+++ b/src/yelp-view-toc.c
@@ -190,6 +190,7 @@ yelp_view_toc_write_header (YelpViewTOC *view, char *title)
" <title>\n"
" %s\n"
" </title> \n"
+" <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n"
" <style type=\"text/css\">\n"
" A:link { color: #00008b }\n"
" A:visited { color: #00008b }\n"
@@ -309,6 +310,7 @@ yelp_view_toc_start (YelpViewTOC *view)
"</td>\n", -1);
yelp_view_toc_write (view, table_end, -1);
+
yelp_view_toc_write_footer (view);
yelp_view_toc_close (view);