diff options
-rw-r--r-- | doc/C/Makefile.am | 16 | ||||
-rw-r--r-- | doc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/devel/calendar/cal-client/tmpl/cal-client.sgml | 7 | ||||
-rw-r--r-- | doc/devel/calendar/cal-util/tmpl/cal-util.sgml | 2 | ||||
-rw-r--r-- | help/C/Makefile.am | 16 | ||||
-rw-r--r-- | help/ChangeLog | 4 | ||||
-rw-r--r-- | help/devel/calendar/cal-client/tmpl/cal-client.sgml | 7 | ||||
-rw-r--r-- | help/devel/calendar/cal-util/tmpl/cal-util.sgml | 2 |
8 files changed, 44 insertions, 14 deletions
diff --git a/doc/C/Makefile.am b/doc/C/Makefile.am index 0d02ac056f..15f1e047b6 100644 --- a/doc/C/Makefile.am +++ b/doc/C/Makefile.am @@ -27,25 +27,33 @@ evolution-guide: $(SGML_FILES) dist-hook: mkdir $(distdir)/evolution-guide - -cp evolution-guide/*.html evolution-guide/*.css \ - $(distdir)/evolution-guide + -cp evolution-guide/*.html evolution-guide/*.css $(distdir)/evolution-guide mkdir $(distdir)/fig -cp fig/*.png $(distdir)/fig + mkdir $(distdir)/evolution-guide/stylesheet-images + -cp evolution-guide/stylesheet-images/* $(distdir)/evolution-guide/stylesheet-images install-data-local: evolution-guide - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir) -for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \ basefile=`basename $$file`; \ $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \ done + + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig -for file in $(srcdir)/fig/*.png; do \ basefile=`basename $$file`; \ $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/fig/$$basefile; \ done + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/stylesheet-images + -for file in $(srcdir)/evolution-guide/stylesheet-images/*; do \ + basefile=`basename $$file`; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/stylesheet-images/$$basefile; \ + done + evolution.ps: evolution.sgml -db2ps $< evolution.rtf: evolution.sgml -db2rtf $< - diff --git a/doc/ChangeLog b/doc/ChangeLog index 3eeeb169f4..1bc0f5df95 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2000-09-19 Federico Mena Quintero <federico@helixcode.com> + + * C/Makefile.am: Fixed to install the stylesheet-images as well. + 2000-09-07 Aaron Weber <aaron@helixcode.com> * C/evolution-guide.sgml: Accidentally broke docs, now valid. diff --git a/doc/devel/calendar/cal-client/tmpl/cal-client.sgml b/doc/devel/calendar/cal-client/tmpl/cal-client.sgml index a146709b8a..06469ff3ee 100644 --- a/doc/devel/calendar/cal-client/tmpl/cal-client.sgml +++ b/doc/devel/calendar/cal-client/tmpl/cal-client.sgml @@ -8,7 +8,10 @@ GTK+ object for communication with personal calendar server. <para> The #CalClient object provides a nice GTK+ wrapper for the CORBA interfaces that are used to communicate between calendar clients - and the personal calendar server in the user's Wombat daemon. + and the personal calendar server in the user's Wombat daemon. The + CORBA interfaces transfer calendar components in RFC 2445 text + format; the #CalClient object automatically converts these into + #CalComponent structures that are easier to handle. </para> <para> @@ -35,7 +38,7 @@ GTK+ object for communication with personal calendar server. <!-- ##### SECTION See_Also ##### --> <para> - + #CalComponent </para> <!-- ##### MACRO CAL_CLIENT ##### --> diff --git a/doc/devel/calendar/cal-util/tmpl/cal-util.sgml b/doc/devel/calendar/cal-util/tmpl/cal-util.sgml index 8d4516c2ec..bc349a377f 100644 --- a/doc/devel/calendar/cal-util/tmpl/cal-util.sgml +++ b/doc/devel/calendar/cal-util/tmpl/cal-util.sgml @@ -1,5 +1,5 @@ <!-- ##### SECTION Title ##### --> -cal-util +Miscellaneous utilities <!-- ##### SECTION Short_Description ##### --> diff --git a/help/C/Makefile.am b/help/C/Makefile.am index 0d02ac056f..15f1e047b6 100644 --- a/help/C/Makefile.am +++ b/help/C/Makefile.am @@ -27,25 +27,33 @@ evolution-guide: $(SGML_FILES) dist-hook: mkdir $(distdir)/evolution-guide - -cp evolution-guide/*.html evolution-guide/*.css \ - $(distdir)/evolution-guide + -cp evolution-guide/*.html evolution-guide/*.css $(distdir)/evolution-guide mkdir $(distdir)/fig -cp fig/*.png $(distdir)/fig + mkdir $(distdir)/evolution-guide/stylesheet-images + -cp evolution-guide/stylesheet-images/* $(distdir)/evolution-guide/stylesheet-images install-data-local: evolution-guide - $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir) -for file in $(srcdir)/evolution-guide/*.html $(srcdir)/evolution-guide/*.css; do \ basefile=`basename $$file`; \ $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/$$basefile; \ done + + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/fig -for file in $(srcdir)/fig/*.png; do \ basefile=`basename $$file`; \ $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/fig/$$basefile; \ done + $(top_srcdir)/mkinstalldirs $(DESTDIR)$(evolution_helpdir)/stylesheet-images + -for file in $(srcdir)/evolution-guide/stylesheet-images/*; do \ + basefile=`basename $$file`; \ + $(INSTALL_DATA) $$file $(DESTDIR)$(evolution_helpdir)/stylesheet-images/$$basefile; \ + done + evolution.ps: evolution.sgml -db2ps $< evolution.rtf: evolution.sgml -db2rtf $< - diff --git a/help/ChangeLog b/help/ChangeLog index 3eeeb169f4..1bc0f5df95 100644 --- a/help/ChangeLog +++ b/help/ChangeLog @@ -1,3 +1,7 @@ +2000-09-19 Federico Mena Quintero <federico@helixcode.com> + + * C/Makefile.am: Fixed to install the stylesheet-images as well. + 2000-09-07 Aaron Weber <aaron@helixcode.com> * C/evolution-guide.sgml: Accidentally broke docs, now valid. diff --git a/help/devel/calendar/cal-client/tmpl/cal-client.sgml b/help/devel/calendar/cal-client/tmpl/cal-client.sgml index a146709b8a..06469ff3ee 100644 --- a/help/devel/calendar/cal-client/tmpl/cal-client.sgml +++ b/help/devel/calendar/cal-client/tmpl/cal-client.sgml @@ -8,7 +8,10 @@ GTK+ object for communication with personal calendar server. <para> The #CalClient object provides a nice GTK+ wrapper for the CORBA interfaces that are used to communicate between calendar clients - and the personal calendar server in the user's Wombat daemon. + and the personal calendar server in the user's Wombat daemon. The + CORBA interfaces transfer calendar components in RFC 2445 text + format; the #CalClient object automatically converts these into + #CalComponent structures that are easier to handle. </para> <para> @@ -35,7 +38,7 @@ GTK+ object for communication with personal calendar server. <!-- ##### SECTION See_Also ##### --> <para> - + #CalComponent </para> <!-- ##### MACRO CAL_CLIENT ##### --> diff --git a/help/devel/calendar/cal-util/tmpl/cal-util.sgml b/help/devel/calendar/cal-util/tmpl/cal-util.sgml index 8d4516c2ec..bc349a377f 100644 --- a/help/devel/calendar/cal-util/tmpl/cal-util.sgml +++ b/help/devel/calendar/cal-util/tmpl/cal-util.sgml @@ -1,5 +1,5 @@ <!-- ##### SECTION Title ##### --> -cal-util +Miscellaneous utilities <!-- ##### SECTION Short_Description ##### --> |