docs: update links to developer.gnome.org
authorStefan Sauer <ensonic@users.sf.net>
Sun, 16 Jun 2013 09:41:52 +0000 (11:41 +0200)
committerStefan Sauer <ensonic@users.sf.net>
Sun, 16 Jun 2013 09:45:18 +0000 (11:45 +0200)
The URL layout has changed. Fix the links and comment out one paragraph where
the doc is gone.
Fixes #702135

docs/faq/developing.xml
docs/manual/basics-elements.xml
docs/manual/basics-init.xml
docs/pwg/intro-preface.xml

index b145989..8472b96 100644 (file)
@@ -192,8 +192,11 @@ be indented, header files may be indented manually for better readability
 (however, please use spaces for indenting, not tabs, even in header files).
         </para>
         <para>
+<!-- TODO(ensonic): link is dead, pending question on desktop-devel
 As for the code itself, the 
-<ulink url="http://developer.gnome.org/doc/guides/programming-guidelines/book1.html">GNOME coding guidelines</ulink> is a good read.
+<ulink url="http://developer.gnome.org/doc/guides/programming-guidelines/book1.html">GNOME
+coding guidelines</ulink> is a good read.
+-->
 Where possible, we try to adhere to the spirit of GObject and use similar
 coding idioms.
         </para>
index 8f81493..42bd1f6 100644 (file)
@@ -283,9 +283,9 @@ main (int   argc,
     <para>
       For more information about <classname>GObject</classname>
       properties we recommend you read the <ulink
-      url="http://developer.gnome.org/doc/API/2.0/gobject/index.html"
+      url="https://developer.gnome.org/gobject/stable/rn01.html"
       type="http">GObject manual</ulink> and an introduction to <ulink
-      url="http://developer.gnome.org/doc/API/2.0/gobject/pr01.html" type="http">
+      url="https://developer.gnome.org/gobject/stable/pt01.html" type="http">
        The Glib Object system</ulink>.
     </para>
     <para>
index f543caa..7a8467b 100644 (file)
@@ -115,7 +115,7 @@ main (int   argc,
     </example>
     <para>
       As shown in this fragment, you can use a <ulink
-      url="http://developer.gnome.org/doc/API/2.0/glib/glib-Commandline-option-parser.html"
+      url="http://developer.gnome.org/glib/stable/glib-Commandline-option-parser.html"
       type="http">GOption</ulink> table to define your application-specific
       command line options, and pass this table to the GLib initialization
       function along with the option group returned from the
index bb6699f..b6c8d6b 100644 (file)
       understanding of the C language.
       Since &GStreamer; adheres to the GObject programming model, this guide
       also assumes that you understand the basics of <ulink type="http"
-      url="http://developer.gnome.org/doc/API/2.0/gobject/index.html">GObject</ulink>
+      url="https://developer.gnome.org/gobject/stable/pt01.html">GObject</ulink>
       programming. 
       You may also want to have a look
       at Eric Harlow's book <emphasis>Developing Linux Applications with