try to complete the aborted commit

This commit is contained in:
Sven Neumann 2003-02-06 18:51:44 +00:00
parent 473e92571a
commit 44b6d04da0
27 changed files with 152 additions and 124 deletions

View File

@ -42,12 +42,12 @@
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<chapter id="gimpdefinitions">
<part id="gimpdefinitions">
<title>GIMP Constants</title>
&GimpEnums;
</chapter>
</part>
<chapter id="libgimp">
<part id="libgimp">
<title>GIMP Library</title>
&Gimp;
&GimpBrushes;
@ -77,12 +77,12 @@
&GimpTile;
&GimpTools;
&GimpUndo;
</chapter>
</part>
<chapter id="libgimpui">
<part id="libgimpui">
<title>GIMP User Interface Library</title>
&GimpUI;
&GimpExport;
&GimpMenu;
</chapter>
</part>
</book>

View File

@ -22,7 +22,7 @@
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<chapter id="libgimpbase">
<part id="libgimpbase">
<title>GIMP Base Library</title>
&GimpBaseTypes;
&GimpVersion;
@ -36,5 +36,5 @@
&GimpUtils;
&GimpProtocol;
&GimpWire;
</chapter>
</part>
</book>

View File

@ -9,5 +9,6 @@ libgimpcolor-decl-list.txt
libgimpcolor-unused.txt
libgimpcolor-undocumented.txt
html
sgml
xml
version.xml
*.stamp

View File

@ -16,7 +16,7 @@ SCANGOBJ_OPTIONS =
SCAN_OPTIONS =
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS =
MKDB_OPTIONS = --sgml-mode --output-format=xml
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS =
@ -67,7 +67,7 @@ EXTRA_DIST = \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
DOC_STAMPS=scan-build.stamp tmpl-build.stamp xml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
@ -107,15 +107,15 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
#### xml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
xml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building XML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) $(MKDB_OPTIONS)
touch sgml-build.stamp
touch xml-build.stamp
sgml.stamp: sgml-build.stamp
sgml.stamp: xml-build.stamp
@true
#### html ####
@ -139,7 +139,7 @@ clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
@ -176,10 +176,10 @@ endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/xml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/xml/*.xml $(distdir)/xml
-cp $(srcdir)/html/* $(distdir)/html
.PHONY : dist-hook-local

View File

@ -1,21 +1,26 @@
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!entity GimpRGB SYSTEM "sgml/gimprgb.sgml">
<!entity GimpHSV SYSTEM "sgml/gimphsv.sgml">
<!entity GimpColorSpace SYSTEM "sgml/gimpcolorspace.sgml">
<!entity GimpAdaptiveSupersample SYSTEM "sgml/gimpadaptivesupersample.sgml">
<!entity GimpBilinear SYSTEM "sgml/gimpbilinear.sgml">
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY GimpRGB SYSTEM "xml/gimprgb.xml">
<!ENTITY GimpHSV SYSTEM "xml/gimphsv.xml">
<!ENTITY GimpColorSpace SYSTEM "xml/gimpcolorspace.xml">
<!ENTITY GimpAdaptiveSupersample SYSTEM "xml/gimpadaptivesupersample.xml">
<!ENTITY GimpBilinear SYSTEM "xml/gimpbilinear.xml">
<!ENTITY version SYSTEM "version.xml">
]>
<book id="index">
<bookinfo>
<title>GIMP Color Library Reference Manual</title>
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<chapter id="libgimpcolor">
<part id="libgimpcolor">
<title>GIMP Color Library</title>
&GimpRGB;
&GimpHSV;
&GimpColorSpace;
&GimpAdaptiveSupersample;
&GimpBilinear;
</chapter>
</part>
</book>

View File

@ -0,0 +1 @@
@GIMP_VERSION@

View File

@ -9,5 +9,6 @@ libgimpmath-decl-list.txt
libgimpmath-unused.txt
libgimpmath-undocumented.txt
html
sgml
xml
version.xml
*.stamp

View File

@ -16,7 +16,7 @@ SCANGOBJ_OPTIONS =
SCAN_OPTIONS =
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS =
MKDB_OPTIONS = --sgml-mode --output-format=xml
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS =
@ -67,7 +67,7 @@ EXTRA_DIST = \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
DOC_STAMPS=scan-build.stamp tmpl-build.stamp xml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
@ -107,15 +107,15 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
#### xml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
xml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building XML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) $(MKDB_OPTIONS)
touch sgml-build.stamp
touch xml-build.stamp
sgml.stamp: sgml-build.stamp
sgml.stamp: xml-build.stamp
@true
#### html ####
@ -139,7 +139,7 @@ clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
@ -176,10 +176,10 @@ endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/xml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/xml/*.xml $(distdir)/xml
-cp $(srcdir)/html/* $(distdir)/html
.PHONY : dist-hook-local

View File

@ -1,19 +1,24 @@
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!entity GimpMath SYSTEM "sgml/gimpmath.sgml">
<!entity GimpMatrix SYSTEM "sgml/gimpmatrix.sgml">
<!entity GimpVector SYSTEM "sgml/gimpvector.sgml">
<!entity GimpMD5 SYSTEM "sgml/gimpmd5.sgml">
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY GimpMath SYSTEM "xml/gimpmath.xml">
<!ENTITY GimpMatrix SYSTEM "xml/gimpmatrix.xml">
<!ENTITY GimpVector SYSTEM "xml/gimpvector.xml">
<!ENTITY GimpMD5 SYSTEM "xml/gimpmd5.xml">
<!ENTITY version SYSTEM "version.xml">
]>
<book id="index">
<bookinfo>
<title>GIMP Math Library Reference Manual</title>
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<chapter id="libgimpmath">
<part id="libgimpmath">
<title>GIMP Math Library</title>
&GimpMath;
&GimpMatrix;
&GimpVector;
&GimpMD5;
</chapter>
</part>
</book>

View File

@ -0,0 +1 @@
@GIMP_VERSION@

View File

@ -11,5 +11,6 @@ libgimpmodule-decl-list.txt
libgimpmodule-unused.txt
libgimpmodule-undocumented.txt
html
sgml
xml
version.xml
*.stamp

View File

@ -16,7 +16,7 @@ SCANGOBJ_OPTIONS =
SCAN_OPTIONS =
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS =
MKDB_OPTIONS = --sgml-mode --output-format=xml
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS =
@ -74,7 +74,7 @@ EXTRA_DIST = \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
DOC_STAMPS=scan-build.stamp tmpl-build.stamp xml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
@ -114,15 +114,15 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
#### xml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
xml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building XML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) $(MKDB_OPTIONS)
touch sgml-build.stamp
touch xml-build.stamp
sgml.stamp: sgml-build.stamp
sgml.stamp: xml-build.stamp
@true
#### html ####
@ -146,7 +146,7 @@ clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
@ -183,10 +183,10 @@ endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/xml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/xml/*.xml $(distdir)/xml
-cp $(srcdir)/html/* $(distdir)/html
.PHONY : dist-hook-local

View File

@ -1,15 +1,20 @@
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!entity GimpModule SYSTEM "sgml/gimpmodule.sgml">
<!entity GimpModuleDB SYSTEM "sgml/gimpmoduledb.sgml">
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY GimpModule SYSTEM "xml/gimpmodule.xml">
<!ENTITY GimpModuleDB SYSTEM "xml/gimpmoduledb.xml">
<!ENTITY version SYSTEM "version.xml">
]>
<book id="index">
<bookinfo>
<title>GIMP Module Library Reference Manual</title>
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<chapter id="libgimpmodule">
<part id="libgimpmodule">
<title>GIMP Module Library</title>
&GimpModule;
&GimpModuleDB;
</chapter>
</part>
</book>

View File

@ -0,0 +1 @@
@GIMP_VERSION@

View File

@ -11,5 +11,6 @@ libgimpwidgets-decl-list.txt
libgimpwidgets-unused.txt
libgimpwidgets-undocumented.txt
html
sgml
xml
version.xml
*.stamp

View File

@ -16,10 +16,10 @@ SCANGOBJ_OPTIONS =
SCAN_OPTIONS =
# Extra options to supply to gtkdoc-mkdb
MKDB_OPTIONS =
MKDB_OPTIONS = --sgml-mode --output-format=xml
# Extra options to supply to gtkdoc-fixref
FIXXREF_OPTIONS =
FIXXREF_OPTIONS = --extra-dir=../libgimpbase/html --extra-dir=../libgimpcolor/html --extra-dir=../libgimpmath/html --extra-dir=../libgimp/html
# Used for dependencies
HFILE_GLOB = $(DOC_SOURCE_DIR)/*.h
@ -181,7 +181,7 @@ EXTRA_DIST = \
$(DOC_MODULE).types \
$(DOC_MODULE)-sections.txt
DOC_STAMPS=scan-build.stamp tmpl-build.stamp sgml-build.stamp html-build.stamp \
DOC_STAMPS=scan-build.stamp tmpl-build.stamp xml-build.stamp html-build.stamp \
$(srcdir)/tmpl.stamp $(srcdir)/sgml.stamp $(srcdir)/html.stamp
SCANOBJ_FILES = \
@ -221,15 +221,15 @@ tmpl-build.stamp: $(DOC_MODULE)-decl.txt $(SCANOBJ_FILES) $(DOC_MODULE)-sections
tmpl.stamp: tmpl-build.stamp
@true
#### sgml ####
#### xml ####
sgml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building SGML ***'
xml-build.stamp: tmpl.stamp $(CFILE_GLOB) $(srcdir)/tmpl/*.sgml
@echo '*** Building XML ***'
cd $(srcdir) && \
gtkdoc-mkdb --module=$(DOC_MODULE) --source-dir=$(DOC_SOURCE_DIR) $(MKDB_OPTIONS)
touch sgml-build.stamp
touch xml-build.stamp
sgml.stamp: sgml-build.stamp
sgml.stamp: xml-build.stamp
@true
#### html ####
@ -253,7 +253,7 @@ clean-local:
rm -f *~ *.bak $(SCANOBJ_FILES) *-unused.txt $(DOC_STAMPS)
maintainer-clean-local: clean
cd $(srcdir) && rm -rf sgml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
cd $(srcdir) && rm -rf xml html $(DOC_MODULE)-decl-list.txt $(DOC_MODULE)-decl.txt
install-data-local:
$(mkinstalldirs) $(DESTDIR)$(TARGET_DIR)
@ -290,10 +290,10 @@ endif
dist-hook: dist-check-gtkdoc dist-hook-local
mkdir $(distdir)/tmpl
mkdir $(distdir)/sgml
mkdir $(distdir)/xml
mkdir $(distdir)/html
-cp $(srcdir)/tmpl/*.sgml $(distdir)/tmpl
-cp $(srcdir)/sgml/*.sgml $(distdir)/sgml
-cp $(srcdir)/xml/*.xml $(distdir)/xml
-cp $(srcdir)/html/* $(distdir)/html
.PHONY : dist-hook-local

View File

@ -1,34 +1,35 @@
<!doctype book PUBLIC "-//Davenport//DTD DocBook V3.0//EN" [
<!notation PNG system "PNG">
<!entity % local.notation.class "| PNG">
<!entity GimpButton SYSTEM "sgml/gimpbutton.sgml">
<!entity GimpChainButton SYSTEM "sgml/gimpchainbutton.sgml">
<!entity GimpColorArea SYSTEM "sgml/gimpcolorarea.sgml">
<!entity GimpColorButton SYSTEM "sgml/gimpcolorbutton.sgml">
<!entity GimpColorDisplay SYSTEM "sgml/gimpcolordisplay.sgml">
<!entity GimpColorNotebook SYSTEM "sgml/gimpcolornotebook.sgml">
<!entity GimpColorScale SYSTEM "sgml/gimpcolorscale.sgml">
<!entity GimpColorScales SYSTEM "sgml/gimpcolorscales.sgml">
<!entity GimpColorSelect SYSTEM "sgml/gimpcolorselect.sgml">
<!entity GimpColorSelector SYSTEM "sgml/gimpcolorselector.sgml">
<!entity GimpDialog SYSTEM "sgml/gimpdialog.sgml">
<!entity GimpFileSelection SYSTEM "sgml/gimpfileselection.sgml">
<!entity GimpHelpUI SYSTEM "sgml/gimphelpui.sgml">
<!entity GimpMemsizeEntry SYSTEM "sgml/gimpmemsizeentry.sgml">
<!entity GimpPathEditor SYSTEM "sgml/gimppatheditor.sgml">
<!entity GimpPickButton SYSTEM "sgml/gimppickbutton.sgml">
<!entity GimpPixmap SYSTEM "sgml/gimppixmap.sgml">
<!entity GimpQueryBox SYSTEM "sgml/gimpquerybox.sgml">
<!entity GimpSizeEntry SYSTEM "sgml/gimpsizeentry.sgml">
<!entity GimpStock SYSTEM "sgml/gimpstock.sgml">
<!entity GimpUnitMenu SYSTEM "sgml/gimpunitmenu.sgml">
<!entity GimpWidgets SYSTEM "sgml/gimpwidgets.sgml">
<?xml version="1.0"?>
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
<!ENTITY GimpButton SYSTEM "xml/gimpbutton.xml">
<!ENTITY GimpChainButton SYSTEM "xml/gimpchainbutton.xml">
<!ENTITY GimpColorArea SYSTEM "xml/gimpcolorarea.xml">
<!ENTITY GimpColorButton SYSTEM "xml/gimpcolorbutton.xml">
<!ENTITY GimpColorDisplay SYSTEM "xml/gimpcolordisplay.xml">
<!ENTITY GimpColorNotebook SYSTEM "xml/gimpcolornotebook.xml">
<!ENTITY GimpColorScale SYSTEM "xml/gimpcolorscale.xml">
<!ENTITY GimpColorScales SYSTEM "xml/gimpcolorscales.xml">
<!ENTITY GimpColorSelect SYSTEM "xml/gimpcolorselect.xml">
<!ENTITY GimpColorSelector SYSTEM "xml/gimpcolorselector.xml">
<!ENTITY GimpDialog SYSTEM "xml/gimpdialog.xml">
<!ENTITY GimpFileSelection SYSTEM "xml/gimpfileselection.xml">
<!ENTITY GimpHelpUI SYSTEM "xml/gimphelpui.xml">
<!ENTITY GimpMemsizeEntry SYSTEM "xml/gimpmemsizeentry.xml">
<!ENTITY GimpPathEditor SYSTEM "xml/gimppatheditor.xml">
<!ENTITY GimpPickButton SYSTEM "xml/gimppickbutton.xml">
<!ENTITY GimpPixmap SYSTEM "xml/gimppixmap.xml">
<!ENTITY GimpQueryBox SYSTEM "xml/gimpquerybox.xml">
<!ENTITY GimpSizeEntry SYSTEM "xml/gimpsizeentry.xml">
<!ENTITY GimpStock SYSTEM "xml/gimpstock.xml">
<!ENTITY GimpUnitMenu SYSTEM "xml/gimpunitmenu.xml">
<!ENTITY GimpWidgets SYSTEM "xml/gimpwidgets.xml">
<!ENTITY version SYSTEM "version.xml">
]>
<book id="index">
<bookinfo>
<title>GIMP Widgets Library Reference Manual</title>
<releaseinfo>for GIMP &version;</releaseinfo>
</bookinfo>
<part id="libgimpwidgets-widgets">

View File

@ -69,8 +69,8 @@ dialog-related stuff.
The @va_list describing the action_area #GtkButton's has the following format:
<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"/><colspec colwidth="8*"/>
<tbody>
<row>

View File

@ -42,8 +42,8 @@ gimp_coordinates_new()
<!-- ##### FUNCTION gimp_unit_menu_new ##### -->
<para>
<informaltable pgwide=1 frame="none" role="enum">
<tgroup cols="2"><colspec colwidth="1*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="enum">
<tgroup cols="2"><colspec colwidth="1*"/><colspec colwidth="8*"/>
<tbody>
<row>

View File

@ -27,8 +27,8 @@ helper functions.
The @va_list describing the #GtkMenuItem's has the following format:
<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"/><colspec colwidth="8*"/>
<tbody>
<row>
@ -77,8 +77,8 @@ gtk_object_set_user_data().</entry>
The @va_list describing the #GtkMenuItem's has the following format:
<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"/><colspec colwidth="8*"/>
<tbody>
<row>
@ -143,8 +143,8 @@ gtk_object_set_user_data().</entry>
The @va_list describing the #GtkRadioButton's has the following format:
<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"/><colspec colwidth="8*"/>
<tbody>
<row>
@ -194,8 +194,8 @@ gtk_object_set_user_data().</entry>
The @va_list describing the #GtkRadioButton's has the following format:
<informaltable pgwide=1 frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"><colspec colwidth="8*">
<informaltable pgwide="1" frame="none" role="struct">
<tgroup cols="2"><colspec colwidth="4*"/><colspec colwidth="8*"/>
<tbody>
<row>

View File

@ -0,0 +1 @@
@GIMP_VERSION@

View File

@ -115,7 +115,7 @@ gimp_drawable_fill (gint32 drawable_ID,
* This procedure updates the specified region of the drawable. The (x,
* y) coordinate pair is relative to the drawable's origin, not to the
* image origin. Therefore, the entire drawable can be updated with:
* {x->0, y->0, w->width, h->height }.
* {x-&gt;0, y-&gt;0, w-&gt;width, h-&gt;height }.
*
* Returns: TRUE on success.
*/

View File

@ -37,9 +37,9 @@
* stored in the user gimprc file and can use this procedure to
* retrieve it. This query procedure will return the value associated
* with the specified token. This corresponds _only_ to entries with
* the format: (<token> <value>). The value must be a string. Entries
* not corresponding to this format will cause warnings to be issued on
* gimprc parsing and will not be queryable.
* the format: (&lt;token&gt; &lt;value&gt;). The value must be a
* string. Entries not corresponding to this format will cause warnings
* to be issued on gimprc parsing and will not be queryable.
*
* Returns: The value associated with the queried token.
*/
@ -74,9 +74,10 @@ gimp_gimprc_query (gchar *token)
* the gimprc file that is considered extraneous to the operation of
* the GIMP. Plug-ins that need configuration information can use this
* function to store it, and gimp_gimprc_query to retrieve it. This
* will accept _only_ parameters in the format of (<token> <value>),
* where <token> and <value> must be strings. Entries not corresponding
* to this format will be eaten and no action will be performed.
* will accept _only_ parameters in the format of (&lt;token&gt;
* &lt;value&gt;), where &lt;token&gt; and &lt;value&gt; must be
* strings. Entries not corresponding to this format will be eaten and
* no action will be performed.
*
* Returns: TRUE on success.
*/

View File

@ -128,7 +128,7 @@ gimp_airbrush_default (gint32 drawable_ID,
* coordinates and subsequent stroke offsets exceeds the extents of the
* src drawable, then no paint is transferred. The clone tool is
* capable of transforming between any image types including
* RGB->Indexed--although converting from any type to indexed is
* RGB-&gt;Indexed--although converting from any type to indexed is
* significantly slower.
*
* Returns: TRUE on success.

View File

@ -301,9 +301,9 @@ gimp_selection_invert (gint32 image_ID)
* Sharpen the selection mask.
*
* This procedure sharpens the selection mask. For every pixel in the
* selection channel, if the value is > 0, the new pixel is assigned a
* value of 255. This removes any \"anti-aliasing\" that might exist in
* the selection mask's boundary.
* selection channel, if the value is &gt; 0, the new pixel is assigned
* a value of 255. This removes any \"anti-aliasing\" that might exist
* in the selection mask's boundary.
*
* Returns: TRUE on success.
*/

View File

@ -32,7 +32,7 @@
* @handler: Handler that maps to signum. Invoked by O/S.
* Handler gets signal that caused invocation. Corresponds
* to the @sa_handler field of the @sigaction struct.
* @flags: Preferences. OR'ed SA_<xxx>. See man sigaction. Corresponds
* @flags: Preferences. OR'ed SA_&lt;xxx&gt;. See man sigaction. Corresponds
* to the @sa_flags field of the @sigaction struct.
*
* This function furnishes a workalike for signal(2) but

View File

@ -33,6 +33,9 @@ use Text::Wrap qw(wrap);
sub desc_wrap {
my ($str) = @_;
my $leading = ' * ';
$str =~ s/&/&amp\;/g;
$str =~ s/\</&lt\;/g;
$str =~ s/\>/&gt\;/g;
$Text::Wrap::columns = 72;
wrap($leading, $leading, $str);
}