Revision: 526 Author: eht16 Date: 2006-07-02 11:12:34 -0700 (Sun, 02 Jul 2006) ViewCVS: http://svn.sourceforge.net/geany/?rev=526&view=rev
Log Message: ----------- Minor improvements.
Modified Paths: -------------- trunk/ChangeLog trunk/doc/Makefile.am Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2006-07-02 16:21:35 UTC (rev 525) +++ trunk/ChangeLog 2006-07-02 18:12:34 UTC (rev 526) @@ -7,6 +7,7 @@ src/prefs.c, src/dialogs.c, src/main.c: Little redesign of the preferences dialog. New options for setting the placement of notebook tabs. + * doc/Makefile.am: Minor improvements.
2006-07-02 Nick Treleaven nick.treleaven@btinternet.com
Modified: trunk/doc/Makefile.am =================================================================== --- trunk/doc/Makefile.am 2006-07-02 16:21:35 UTC (rev 525) +++ trunk/doc/Makefile.am 2006-07-02 18:12:34 UTC (rev 526) @@ -12,10 +12,15 @@ geany.txt: jw -b txt geany.docbook
-htmldoc: - if [ ! -f "./html/index.html" ]; then \ +htmldoc: geany.docbook + if [ geany.docbook -nt "./html/index.html" ]; then \ $(mkinstalldirs) html; \ - xmlto -x geany.xsl -o html/ xhtml geany.docbook; \ + # hack for my local system to generate documentation in UTF-8 charset \ + if [ `hostname` = "ukio" ]; then \ + LC_CTYPE=de_DE.utf8@euro xmlto -x geany.xsl -o html/ xhtml geany.docbook; \ + else \ + xmlto -x geany.xsl -o html/ xhtml geany.docbook; \ + fi; \ test -f html/geany.css || cp geany.css html/; \ fi
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.