summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog21
-rw-r--r--HACKING4
-rw-r--r--NEWS43
-rw-r--r--tests/Makefile.am4
-rw-r--r--tests/gtk-doc.make4
-rw-r--r--tests/gtk-doc.notmpl.make4
-rwxr-xr-xtests/gtkdoctest.sh2
7 files changed, 65 insertions, 17 deletions
diff --git a/ChangeLog b/ChangeLog
index 6c2929a..b315ad5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2008-11-16 Stefan Kost <ensonic@users.sf.net>
+
+ * HACKING:
+ * NEWS:
+ Releasing 1.11.
+
+ * tests/Makefile.am:
+ * tests/gtk-doc.make:
+ * tests/gtk-doc.notmpl.make:
+ * tests/gtkdoctest.sh:
+ Fix make distcheck.
+
2008-11-06 Stefan Kost <ensonic@users.sf.net>
* tests/gtk-doc.make:
@@ -501,15 +513,6 @@
Fix one undocumented symbol and add an exampl of the programlisting
shortcut.
-2008-04-23 Stefan Kost <ensonic@users.sf.net>
-
- reviewed by: <delete if not using a buddy>
- patch by: <delete if not someone else's patch>
-
- * gtkdoc-mkdb.in:
- * gtkdoc-mkman.in:
- * gtkdoc-mktmpl.in:
-
2008-04-22 Stefan Kost <ensonic@users.sf.net>
* HACKING:
diff --git a/HACKING b/HACKING
index a01704f..a480088 100644
--- a/HACKING
+++ b/HACKING
@@ -13,7 +13,9 @@ http://live.gnome.org/MaintainersCorner/Releasing
~/projects/gstreamer-0.10/www/bin/bugzilla general 1.9 gtk-doc >RELNOTES.fixes.xml
./xml2txt.sh
+# copy to ChangeLog-1.9 and use
moap cl contributors
+# moap cl -C ChangeLog-1.9 contributors
add then to NEWS
make dist
@@ -25,8 +27,6 @@ scp ChangeLog-1.9 <user>@master.gnome.org:gtk-doc-1.9.changes
ssh <user>@master.gnome.org
install-module gtk-doc-<ver>.tar.gz
-(how to install the 'gtk-doc-1.9.news' and 'gtk-doc-1.9.changes')
-
bump versions in:
add delimiter to ChangeLog
configure.in
diff --git a/NEWS b/NEWS
index 3529b32..5b54a45 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,44 @@
+GTK-Doc 1.11 (Nov 16 2008)
+============
+
+ Changes
+
+ o 531572 : one-page generation option
+ o 448879 : Use a footer when generating HTML documentation
+ o 311857 : xsltproc very slow generating index for gtk-docs.sgml
+ o 335239 : Using gnome-doc-utils for gtk-doc documentation
+ o 460753 : enable vpath build in gtkdoc-mkhtml
+ o 473342 : Warn about repeated symbols in sections
+ o 487727 : DocBook XML DTD version
+ o 523669 : make check: Element publisher content does not follow the...
+ o 530758 : gtk-doc should not expand XML tags and their attributes
+ o 533262 : no-template mode scans different source files
+ o 534627 : gtk-doc uses non-standard HTML element
+ o 542137 : No declaration found for: gsf_output_*
+ o 543855 : Fix for Bug 460753 (enable vpath build in gtkdoc-mkhtml) ...
+ o 544172 : Fails to parse return value of 'char const *'
+ o 552822 : Add rules to create $(REPORT_FILES)
+ o 553407 : Example Makefile.am uses obsolete INCLUDES instead of AM_...
+ o 554718 : gtk-doc needs to allow versioned TARGET_DIR
+ o 554833 : Be more careful with &quot; struct _ &lt; struct_name &gt; &quot;
+ o 558082 : evince docs build fails with GTK_DISABLE_SINGLE_INCLUDES
+ o 559281 : Correct check for existance of gtkdoc-rebase
+
+ Contributors
+
+ Behdad Esfahbod
+ Christian Persch
+ David Nečas
+ Felix Riemann
+ Jeffrey Stedfast
+ Marc-Andre Lureau
+ Matthew Barnes
+ Peter Kjellerstedt
+ Sebastian Dröge
+ Simon Josefsson
+ Stefan Kost
+
+
GTK-Doc 1.10 (Mar 20 2008)
============
@@ -20,7 +61,6 @@ GTK-Doc 1.10 (Mar 20 2008)
o 512154 : Struct member type attributes are limited to one token
o 513318 : gtk-doc.el doesn't work fine with emacs22
-
Contributors
Benjamin Otte
@@ -38,6 +78,7 @@ GTK-Doc 1.10 (Mar 20 2008)
Sven Herzberg
Yeti
+
GTK-Doc 1.9 (Sep 30 2007)
===========
diff --git a/tests/Makefile.am b/tests/Makefile.am
index c9470f2..4281c5c 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -5,10 +5,10 @@ SUBDIRS = gobject bugs annotations .
if BUILD_TESTS
TESTS = gobject.sh bugs.sh annotations.sh
-TESTS_ENVIRONMENT = PATH=$(srcdir):$(PATH)
+TESTS_ENVIRONMENT = PATH=$(top_builddir):$(srcdir):$(PATH)
endif
EXTRA_DIST = gtkdoctest.sh \
- gobject.sh bugs.sh
+ gobject.sh bugs.sh annotations.sh
diff --git a/tests/gtk-doc.make b/tests/gtk-doc.make
index 08e39c0..1c37e9b 100644
--- a/tests/gtk-doc.make
+++ b/tests/gtk-doc.make
@@ -21,7 +21,8 @@ endif
#
GPATH = $(srcdir)
-TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
+# we don't install anything in tests
+#TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
EXTRA_DIST = \
$(content_files) \
@@ -121,6 +122,7 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
clean-local:
rm -f *~ *.bak
rm -rf .libs
+ chmod -R u+w $(srcdir)
cd $(srcdir) && \
rm -rf xml $(REPORT_FILES) \
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
diff --git a/tests/gtk-doc.notmpl.make b/tests/gtk-doc.notmpl.make
index 5b0fe2c..1f4c518 100644
--- a/tests/gtk-doc.notmpl.make
+++ b/tests/gtk-doc.notmpl.make
@@ -21,7 +21,8 @@ endif
#
GPATH = $(srcdir)
-TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
+# we don't install anything in tests
+#TARGET_DIR=$(HTML_DIR)/$(DOC_MODULE)
EXTRA_DIST = \
$(content_files) \
@@ -106,6 +107,7 @@ html-build.stamp: sgml.stamp $(DOC_MAIN_SGML_FILE) $(content_files)
clean-local:
rm -f *~ *.bak
rm -rf .libs
+ chmod -R u+w $(srcdir)
cd $(srcdir) && \
rm -rf xml $(REPORT_FILES) \
$(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
diff --git a/tests/gtkdoctest.sh b/tests/gtkdoctest.sh
index c3c5494..2b92d57 100755
--- a/tests/gtkdoctest.sh
+++ b/tests/gtkdoctest.sh
@@ -3,7 +3,7 @@
suite=$1
dir=`dirname $0`
-PATH=`pwd`:$PATH PERL5LIB=`pwd`:$PERL5LIB && cd $dir/$suite/docs && ../../../gtkdoc-check
+PATH=`pwd`:$PATH PERL5LIB=`pwd`:$PERL5LIB && cd $dir/$suite/docs && gtkdoc-check
# xmllint --noout --nonet --schema ../devhelp2.xsd ./bugs/docs/html/tester.devhelp2
#