From 85f25f4a3e5acb7e38ceadc264a8c372a54f7020 Mon Sep 17 00:00:00 2001 From: Jeremy Bicha Date: Mon, 3 Apr 2017 13:06:51 -0400 Subject: docs: Use https for more links https://bugzilla.gnome.org/show_bug.cgi?id=780878 --- docs/reference/gdk/gdk-docs.sgml | 4 +- docs/reference/gtk/building.sgml | 30 ++-- docs/reference/gtk/css-overview.xml | 50 +++--- docs/reference/gtk/css-properties.xml | 278 ++++++++++++++++----------------- docs/reference/gtk/gtk-docs.sgml | 4 +- docs/reference/gtk/question_index.sgml | 28 ++-- docs/reference/gtk/resources.sgml | 4 +- docs/reference/gtk/running.sgml | 8 +- docs/reference/gtk/wayland.xml | 2 +- 9 files changed, 204 insertions(+), 204 deletions(-) (limited to 'docs/reference') diff --git a/docs/reference/gdk/gdk-docs.sgml b/docs/reference/gdk/gdk-docs.sgml index a34b30c155..bc102c2dc1 100644 --- a/docs/reference/gdk/gdk-docs.sgml +++ b/docs/reference/gdk/gdk-docs.sgml @@ -10,9 +10,9 @@ This document is for the GDK 3 library, version &version; The latest versions can be found online at - http://developer.gnome.org/gdk3/. + https://developer.gnome.org/gdk3/. If you are looking for the older GDK 2 series of libraries, - see http://developer.gnome.org/gdk2/. + see https://developer.gnome.org/gdk2/. diff --git a/docs/reference/gtk/building.sgml b/docs/reference/gtk/building.sgml index a253596a23..eb4232bbba 100644 --- a/docs/reference/gtk/building.sgml +++ b/docs/reference/gtk/building.sgml @@ -140,7 +140,7 @@ How to compile GTK+ itself pkg-config + url="https://www.freedesktop.org/wiki/Software/pkg-config/">pkg-config is a tool for tracking the compilation flags needed for libraries that are used by the GTK+ libraries. (For each library, a small .pc text file is installed @@ -153,7 +153,7 @@ How to compile GTK+ itself The GTK+ makefiles will mostly work with different versions of make, however, there tends to be a few incompatibilities, so the GTK+ team recommends - installing GNU + installing GNU make if you don't already have it on your system and using it. (It may be called gmake rather than make.) @@ -171,24 +171,24 @@ How to compile GTK+ itself The GLib library provides core non-graphical functionality such as high level data types, Unicode manipulation, and an object and type system to C programs. It is available - from the GTK+ + from the GTK+ FTP site or - here. + here. - The GdkPixbuf library + The GdkPixbuf library provides facilities for loading images in a variety of file formats. It is available - here. + here. Pango is a library for internationalized text handling. It is available - here. + here. @@ -197,7 +197,7 @@ How to compile GTK+ itself interfaces allowing accessibility technologies such as screen readers to interact with a graphical user interface. It is available - here. + here. @@ -205,7 +205,7 @@ How to compile GTK+ itself Gobject Introspection is a framework for making introspection data available to language bindings. It is available - here. + here. @@ -213,7 +213,7 @@ How to compile GTK+ itself External dependencies - The GNU + The GNU libiconv library is needed to build GLib if your system doesn't have the iconv() function for doing conversion between character @@ -224,7 +224,7 @@ How to compile GTK+ itself The libintl library from the GNU gettext + url="https://www.gnu.org/software/gettext/">GNU gettext package is needed if your system doesn't have the gettext() functionality for handling message translation databases. @@ -241,14 +241,14 @@ How to compile GTK+ itself - The fontconfig + The fontconfig library provides Pango with a standard way of locating fonts and matching them against font names. - Cairo + Cairo is a graphics library that supports vector graphics and image compositing. Both Pango and GTK+ use cairo for all of their drawing. @@ -263,13 +263,13 @@ How to compile GTK+ itself - The Wayland libraries + The Wayland libraries are needed to build GTK+ with the Wayland backend. - The shared-mime-info + The shared-mime-info package is not a hard dependency of GTK+, but it contains definitions for mime types that are used by GIO and, indirectly, by GTK+. gdk-pixbuf will use GIO for mime type detection if possible. For this diff --git a/docs/reference/gtk/css-overview.xml b/docs/reference/gtk/css-overview.xml index 1288f63d61..124c83b02e 100644 --- a/docs/reference/gtk/css-overview.xml +++ b/docs/reference/gtk/css-overview.xml @@ -46,7 +46,7 @@ We use for syntax productions, and each line is put in a We loosely follow the CSS - value definition + value definition specification in the formatting of syntax productions. Nonterminals are enclosed in angle backets (〈〉), all other strings that are not listed here are literals @@ -154,7 +154,7 @@ button, entry { To learn more about the @import rule, you can read the - Cascading + Cascading module of the CSS specification. @@ -360,85 +360,85 @@ checkbutton:indeterminate { * any node - CSS + CSS E any node with name E - CSS + CSS E.class any E node with the given style class - CSS + CSS E#id any E node with the given ID - CSS + CSS GTK+ uses the widget name as ID E:nth‑child(〈nth‑child〉) any E node which is the n-th child of its parent node - CSS + CSS E:nth‑last‑child(〈nth‑child〉) any E node which is the n-th child of its parent node, counting from the end - CSS + CSS E:first‑child any E node which is the first child of its parent node - CSS + CSS E:last‑child any E node which is the last child of its parent node - CSS + CSS E:only‑child any E node which is the only child of its parent node - CSS + CSS Equivalent to E:first-child:last-child E:link, E:visited any E node which represents a hyperlink, not yet visited (:link) or already visited (:visited) - CSS + CSS Corresponds to GTK_STATE_FLAG_LINK and GTK_STATE_FLAGS_VISITED E:active, E:hover, E:focus any E node which is part of a widget with the corresponding state - CSS + CSS Corresponds to GTK_STATE_FLAG_ACTIVE, GTK_STATE_FLAG_PRELIGHT and GTK_STATE_FLAGS_FOCUSED; GTK+ also allows E:prelight and E:focused E:disabled any E node which is part of a widget with is disabled - CSS + CSS Corresponds to GTK_STATE_FLAG_INSENSITIVE; GTK+ also allows E:insensitive E:checked any E node which is part of a widget (e.g. radio- or checkbuttons) which is checked - CSS + CSS Corresponds to GTK_STATE_FLAG_CHECKED E:indeterminate any E node which is part of a widget (e.g. radio- or checkbuttons) which is in an inconsistent state - CSS3, + CSS3, CSS4 Corresponds to GTK_STATE_FLAG_INCONSISTENT; GTK+ also allows E:inconsistent @@ -451,7 +451,7 @@ checkbutton:indeterminate { E:not(〈selector〉) any E node which does not match the simple selector 〈selector〉 - CSS + CSS @@ -469,25 +469,25 @@ checkbutton:indeterminate { E F any F node which is a descendent of an E node - CSS + CSS E > F any F node which is a child of an E node - CSS + CSS E ~ F any F node which is preceded by an E node - CSS + CSS E + F any F node which is immediately preceded by an E node - CSS + CSS @@ -499,7 +499,7 @@ checkbutton:indeterminate { To learn more about selectors in CSS, read the - Selectors + Selectors module of the CSS specification. @@ -532,7 +532,7 @@ checkbutton:indeterminate { For a list of valid color names and for more background on colors in - CSS, see the Color + CSS, see the Color module of the CSS specification. @@ -654,7 +654,7 @@ button { A crossfade lets you specify an image as an intermediate between two images. Crossfades are specified in the draft of the level 4 - Image + Image module of the CSS specification. @@ -735,7 +735,7 @@ label { To learn more about gradients in CSS, including details of how color stops are placed on the gradient line and keywords for specifying radial sizes, you can read the - Image + Image module of the CSS specification. diff --git a/docs/reference/gtk/css-properties.xml b/docs/reference/gtk/css-properties.xml index 7d412cb4a9..8c0f4ce1e5 100644 --- a/docs/reference/gtk/css-properties.xml +++ b/docs/reference/gtk/css-properties.xml @@ -94,7 +94,7 @@ We use for syntax productions, and each line is put in a The calc() notation adds considerable expressive power. There are limits on what types can be combined in such an expression (e.g. it does not make sense to add a number and a time). For the full details, see the - CSS3 Values and + CSS3 Values and Units spec. @@ -134,8 +134,8 @@ We use for syntax productions, and each line is put in a rgba(1,1,1,1) - CSS2, - CSS3 + CSS2, + CSS3 @@ -144,7 +144,7 @@ We use for syntax productions, and each line is put in a 1 - CSS3 + CSS3 @@ -172,8 +172,8 @@ We use for syntax productions, and each line is put in a gtk-font-name setting - CSS2, - CSS3 + CSS2, + CSS3 @@ -182,8 +182,8 @@ We use for syntax productions, and each line is put in a gtk-font-name setting - CSS2, - CSS3 + CSS2, + CSS3 @@ -192,8 +192,8 @@ We use for syntax productions, and each line is put in a normal - CSS2, - CSS3 + CSS2, + CSS3 @@ -202,8 +202,8 @@ We use for syntax productions, and each line is put in a normal - CSS2, - CSS3 + CSS2, + CSS3 only CSS2 values supported @@ -212,8 +212,8 @@ We use for syntax productions, and each line is put in a normal - CSS2, - CSS3 + CSS2, + CSS3 normal is synonymous with 400, bold with 700 @@ -222,7 +222,7 @@ We use for syntax productions, and each line is put in a normal - CSS3 + CSS3 @@ -245,8 +245,8 @@ We use for syntax productions, and each line is put in a font [ 〈font-style〉 || 〈font-variant〉 || 〈font-weight〉 || 〈font-stretch〉 ]? 〈font-size〉 〈font-family〉 see individual properties - CSS2, -CSS3 + CSS2, +CSS3 CSS allows line-height, etc @@ -278,7 +278,7 @@ We use for syntax productions, and each line is put in a currentColor - CSS3 + CSS3 CSS allows an auto value @@ -314,7 +314,7 @@ We use for syntax productions, and each line is put in a 0px - CSS3 + CSS3 @@ -323,8 +323,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 CSS allows overline @@ -333,7 +333,7 @@ We use for syntax productions, and each line is put in a currentColor - CSS3 + CSS3 @@ -342,7 +342,7 @@ We use for syntax productions, and each line is put in a solid - CSS3 + CSS3 CSS allows dashed and dotted @@ -351,7 +351,7 @@ We use for syntax productions, and each line is put in a none - CSS3 + CSS3 @@ -365,7 +365,7 @@ We use for syntax productions, and each line is put in a text‑decoration 〈text-decoration-line〉 || 〈text-decoration-style〉 || 〈text-decoration-color〉 see individual properties - CSS3 + CSS3 @@ -500,8 +500,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -510,8 +510,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -520,8 +520,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages or auto @@ -530,8 +530,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages or auto @@ -540,8 +540,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages or auto @@ -550,8 +550,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages or auto @@ -560,8 +560,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -570,8 +570,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -580,8 +580,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -590,8 +590,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows percentages @@ -605,16 +605,16 @@ We use for syntax productions, and each line is put in a margin 〈length〉{1,4} see individual properties - CSS2, - CSS3 + CSS2, + CSS3 a 'four sides' shorthand padding 〈length〉{1,4} see individual properties - CSS2, - CSS3 + CSS2, + CSS3 a 'four sides' shorthand @@ -636,8 +636,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows other values @@ -646,8 +646,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows other values @@ -656,8 +656,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows other values @@ -666,8 +666,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 CSS allows other values @@ -676,8 +676,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 @@ -686,8 +686,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 @@ -696,8 +696,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 @@ -706,8 +706,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 @@ -716,8 +716,8 @@ We use for syntax productions, and each line is put in a 0 - CSS2, - CSS3 + CSS2, + CSS3 @@ -726,8 +726,8 @@ We use for syntax productions, and each line is put in a 0 - CSS2, - CSS3 + CSS2, + CSS3 @@ -736,8 +736,8 @@ We use for syntax productions, and each line is put in a 0 - CSS2, - CSS3 + CSS2, + CSS3 @@ -746,8 +746,8 @@ We use for syntax productions, and each line is put in a 0 - CSS2, - CSS3 + CSS2, + CSS3 @@ -756,8 +756,8 @@ We use for syntax productions, and each line is put in a currentColor - CSS2, - CSS3 + CSS2, + CSS3 @@ -766,8 +766,8 @@ We use for syntax productions, and each line is put in a currentColor - CSS2, - CSS3 + CSS2, + CSS3 @@ -776,8 +776,8 @@ We use for syntax productions, and each line is put in a currentColor - CSS2, - CSS3 + CSS2, + CSS3 @@ -786,8 +786,8 @@ We use for syntax productions, and each line is put in a currentColor - CSS2, - CSS3 + CSS2, + CSS3 @@ -796,7 +796,7 @@ We use for syntax productions, and each line is put in a none - CSS3 + CSS3 @@ -805,7 +805,7 @@ We use for syntax productions, and each line is put in a stretch - CSS3 + CSS3 @@ -814,7 +814,7 @@ We use for syntax productions, and each line is put in a 100% - CSS3 + CSS3 a 'four sides' shorthand @@ -823,7 +823,7 @@ We use for syntax productions, and each line is put in a 1 - CSS3 + CSS3 a 'four sides' shorthand @@ -838,77 +838,77 @@ We use for syntax productions, and each line is put in a border‑width 〈length〉{1,4} see individual properties - CSS2, - CSS3 + CSS2, + CSS3 a 'four sides' shorthand border‑style 〈border style〉{1,4} see individual properties - CSS2, - CSS3 + CSS2, + CSS3 a 'four sides' shorthand border‑color 〈color〉{1,4} see individual properties - CSS3 + CSS3 a 'four sides' shorthand border‑top 〈length〉 || 〈border style〉 || 〈color〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 border‑left 〈length〉 || 〈border style〉 || 〈color〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 border‑bottom 〈length〉 || 〈border style〉 || 〈color〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 border‑right 〈length〉 || 〈border style〉 || 〈color〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 border 〈length〉 || 〈border style〉 || 〈color〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 border‑radius [ 〈length〉 | 〈percentage〉 ]{1,4} [ / [ 〈length〉 | 〈percentage> ]{1,4} ]? see individual properties - CSS3 + CSS3 border‑image 〈border-image-source〉 || 〈border-image-slice〉 [ / 〈border-image-width〉 | / 〈border-image-width〉? / 〈border-image-outset〉 ]? || 〈border-image-repeat〉 see individual properties - CSS3 + CSS3 @@ -934,8 +934,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 @@ -944,8 +944,8 @@ We use for syntax productions, and each line is put in a 0px - CSS2, - CSS3 + CSS2, + CSS3 @@ -954,8 +954,8 @@ We use for syntax productions, and each line is put in a currentColor - CSS2, - CSS3 + CSS2, + CSS3 @@ -964,7 +964,7 @@ We use for syntax productions, and each line is put in a 0px - CSS3 + CSS3 @@ -1014,8 +1014,8 @@ We use for syntax productions, and each line is put in a outline 〈outline-color〉 || 〈outline-style〉 || 〈outline-width〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 @@ -1048,8 +1048,8 @@ We use for syntax productions, and each line is put in a rgba(0,0,0,0) - CSS2, - CSS3 + CSS2, + CSS3 @@ -1058,7 +1058,7 @@ We use for syntax productions, and each line is put in a border-box - CSS3 + CSS3 @@ -1067,7 +1067,7 @@ We use for syntax productions, and each line is put in a padding-box - CSS3 + CSS3 @@ -1076,7 +1076,7 @@ We use for syntax productions, and each line is put in a auto - CSS3 + CSS3 @@ -1085,8 +1085,8 @@ We use for syntax productions, and each line is put in a 0 - CSS2, - CSS3 + CSS2, + CSS3 @@ -1095,8 +1095,8 @@ We use for syntax productions, and each line is put in a repeat - CSS2, - CSS3 + CSS2, + CSS3 @@ -1105,8 +1105,8 @@ We use for syntax productions, and each line is put in a none - CSS2, - CSS3 + CSS2, + CSS3 not supported: urls without quotes, CSS radial gradients, colors in crossfades @@ -1124,7 +1124,7 @@ We use for syntax productions, and each line is put in a none - CSS3 + CSS3 @@ -1138,8 +1138,8 @@ We use for syntax productions, and each line is put in a background [ 〈bg-layer〉 , ]* 〈final-bg-layer〉 see individual properties - CSS2, - CSS3 + CSS2, + CSS3 @@ -1181,7 +1181,7 @@ We use for syntax productions, and each line is put in a all - CSS3 + CSS3 @@ -1190,7 +1190,7 @@ We use for syntax productions, and each line is put in a 0s - CSS3 + CSS3 @@ -1199,7 +1199,7 @@ We use for syntax productions, and each line is put in a ease - CSS3 + CSS3 @@ -1208,7 +1208,7 @@ We use for syntax productions, and each line is put in a 0s - CSS3 + CSS3 @@ -1222,7 +1222,7 @@ We use for syntax productions, and each line is put in a transition 〈single-transition〉 [ , 〈single-transition〉 ]* see individual properties - CSS3 + CSS3 @@ -1250,7 +1250,7 @@ We use for syntax productions, and each line is put in a none - CSS3 + CSS3 @@ -1259,7 +1259,7 @@ We use for syntax productions, and each line is put in a 0s - CSS3 + CSS3 @@ -1268,7 +1268,7 @@ We use for syntax productions, and each line is put in a ease - CSS3 + CSS3 @@ -1277,7 +1277,7 @@ We use for syntax productions, and each line is put in a 1 - CSS3 + CSS3 @@ -1286,7 +1286,7 @@ We use for syntax productions, and each line is put in a normal - CSS3 + CSS3 @@ -1295,7 +1295,7 @@ We use for syntax productions, and each line is put in a running - CSS3 + CSS3 @@ -1304,7 +1304,7 @@ We use for syntax productions, and each line is put in a 0s - CSS3 + CSS3 @@ -1313,7 +1313,7 @@ We use for syntax productions, and each line is put in a none - CSS3 + CSS3 @@ -1327,7 +1327,7 @@ We use for syntax productions, and each line is put in a animation 〈single‑animation〉 [ , 〈single‑animation〉]* see individual properties - CSS3 + CSS3 diff --git a/docs/reference/gtk/gtk-docs.sgml b/docs/reference/gtk/gtk-docs.sgml index 8c962aeb07..1c3a12e804 100644 --- a/docs/reference/gtk/gtk-docs.sgml +++ b/docs/reference/gtk/gtk-docs.sgml @@ -12,9 +12,9 @@ This document is for the GTK+ 3 library, version &version;. The latest versions can be found online at - http://developer.gnome.org/gtk3/. + https://developer.gnome.org/gtk3/. If you are looking for the older GTK+ 2 series of libraries, - see http://developer.gnome.org/gtk2/. + see https://developer.gnome.org/gtk2/. diff --git a/docs/reference/gtk/question_index.sgml b/docs/reference/gtk/question_index.sgml index 97f0b79948..b6453b68f5 100644 --- a/docs/reference/gtk/question_index.sgml +++ b/docs/reference/gtk/question_index.sgml @@ -35,11 +35,11 @@ How do I get started with GTK+? -The GTK+ website offers some -tutorials and other +The GTK+ website offers some +tutorials and other documentation (most of it about GTK+ 2.x, but mostly still applicable). More documentation ranging from whitepapers to online books can be found at -the GNOME developer's site. +the GNOME developer's site. After studying these materials you should be well prepared to come back to this reference manual for details. @@ -77,7 +77,7 @@ specific widgets and functions. If you have a question not covered in the manual, feel free to ask on the mailing lists and please file a bug report against the +url="https://bugzilla.gnome.org">file a bug report against the documentation. @@ -106,7 +106,7 @@ For strings returned from functions, they will be declared "const" if they should not be freed. Non-const strings should be freed with g_free(). Arrays follow the same rule. If you find an undocumented exception to the rules, please report a bug to http://bugzilla.gnome.org. +url="https://bugzilla.gnome.org">https://bugzilla.gnome.org. @@ -180,7 +180,7 @@ How do I internationalize a GTK+ program? -Most people use GNU +Most people use GNU gettext, already required in order to install GLib. On a UNIX or Linux system with gettext installed, type info gettext to read the documentation. @@ -281,7 +281,7 @@ zero-terminated strings. More information about Unicode and UTF-8 can be found in the -UTF-8 and Unicode +UTF-8 and Unicode FAQ for Unix/Linux. GLib provides functions for converting strings between UTF-8 and other encodings, see g_locale_to_utf8() and g_convert(). @@ -376,7 +376,7 @@ How do I use GTK+ with C++? There are two ways to approach this. The GTK+ header files use the subset of C that's also valid C++, so you can simply use the normal GTK+ API in a C++ program. Alternatively, you can use a "C++ binding" -such as gtkmm +such as gtkmm which provides a native C++ API. @@ -415,9 +415,9 @@ How do I use GTK+ with other non-C languages? -See the list of language +See the list of language bindings on http://www.gtk.org. +url="https://www.gtk.org">https://www.gtk.org. @@ -473,8 +473,8 @@ To draw a piece of text, use a Pango layout and pango_cairo_show_layout(). See also the -Cairo Rendering -section of Pango manual. +Cairo Rendering +section of Pango manual. @@ -505,8 +505,8 @@ pango_layout_get_pixel_size(), using code like the following: See also the -Layout Objects -section of Pango manual. +Layout Objects +section of Pango manual. diff --git a/docs/reference/gtk/resources.sgml b/docs/reference/gtk/resources.sgml index 4abcac5dcf..05e18084d7 100644 --- a/docs/reference/gtk/resources.sgml +++ b/docs/reference/gtk/resources.sgml @@ -22,7 +22,7 @@ Getting help with GTK+ If you encounter a bug, misfeature, or missing feature in GTK+, please file a bug report on -http://bugzilla.gnome.org. +https://bugzilla.gnome.org. We'd also appreciate reports of incomplete or misleading information in the GTK+ documentation; file those against the "docs" component of the "gtk+" product in Bugzilla. @@ -72,7 +72,7 @@ There are several mailing lists dedicated to GTK+ and related libraries. Discussion of GLib, Pango, and ATK in addition to GTK+ proper is welcome on these lists. You can subscribe or view the archives of these lists on -http://mail.gnome.org. +http://mail.gnome.org. If you aren't subscribed to the list, any message you post to the list will be held for manual moderation, which might take some days to happen. diff --git a/docs/reference/gtk/running.sgml b/docs/reference/gtk/running.sgml index 9ed8a0897e..732e16bbe7 100644 --- a/docs/reference/gtk/running.sgml +++ b/docs/reference/gtk/running.sgml @@ -528,9 +528,9 @@ nevertheless. GTK+ uses these environment variables to locate icon themes and MIME information. For more information, see - Icon Theme Specification, - the Shared MIME-info Database - and the Base Directory Specification. + Icon Theme Specification, + the Shared MIME-info Database + and the Base Directory Specification. @@ -539,7 +539,7 @@ nevertheless. GTK+ uses this environment variable to provide startup notification - according to the Startup Notification Spec. + according to the Startup Notification Spec. Following the specification, GTK+ unsets this variable after reading it (to keep it from leaking to child processes). So, if you need its value for your own purposes, you have to read it before calling diff --git a/docs/reference/gtk/wayland.xml b/docs/reference/gtk/wayland.xml index ab9f80b39b..c3ddf15363 100644 --- a/docs/reference/gtk/wayland.xml +++ b/docs/reference/gtk/wayland.xml @@ -32,7 +32,7 @@ options or environment variables. For up-to-date information about the current status of this backend, see -the project page. +the project page. -- cgit v1.2.1