[gnome-devel-docs] Fixing Makefile.am and <media> URLs after the renames



commit 8722c0a07500de3ca9b8461da5db84552f0841a5
Author: Frédéric Péters <fpeters 0d be>
Date:   Sun Dec 5 19:19:43 2010 +0100

    Fixing Makefile.am and <media> URLs after the renames

 demos/C/image-viewer.c.page       |    2 +-
 demos/C/image-viewer.js.page      |    2 +-
 demos/C/magic-mirror.vala.page    |    2 +-
 demos/C/message-board.c.page      |    2 +-
 demos/C/photo-wall.c.page         |    4 ++--
 demos/C/record-collection.js.page |    2 +-
 demos/Makefile.am                 |   16 ++++++++++------
 7 files changed, 17 insertions(+), 13 deletions(-)
---
diff --git a/demos/C/image-viewer.c.page b/demos/C/image-viewer.c.page
index f217ddf..b95ebbc 100644
--- a/demos/C/image-viewer.c.page
+++ b/demos/C/image-viewer.c.page
@@ -37,7 +37,7 @@
 
 <section>
   <title>Program Structure</title>
-  <media type="image" mime="image/png" src="image-viewer-javascript/iv.png"/>
+  <media type="image" mime="image/png" src="media/image-viewer.png"/>
   <p>This demo is a simple GTK application (with a single window) capable of showing an image on the screen. The window has only two elements: On the top, there is a widget that shows the image. On the bottom, there's a button that allows you to choose an image from the file system.
   </p>
 </section>
diff --git a/demos/C/image-viewer.js.page b/demos/C/image-viewer.js.page
index 0ac3f18..e135488 100644
--- a/demos/C/image-viewer.js.page
+++ b/demos/C/image-viewer.js.page
@@ -35,7 +35,7 @@
 
 <section>
   <title>Program Structure</title>
-  <media type="image" mime="image/png" src="image-viewer-javascript/iv.png"/>
+  <media type="image" mime="image/png" src="media/image-viewer.png"/>
   <p>This demo is a simple GTK application (with a single window) capable of showing an image on the screen. The window has only two elements: On the top, there is a widget that shows the image. On the bottom, there's a button that allows you to choose an image from the file system.
   </p>
 </section>
diff --git a/demos/C/magic-mirror.vala.page b/demos/C/magic-mirror.vala.page
index 90596f8..c459079 100644
--- a/demos/C/magic-mirror.vala.page
+++ b/demos/C/magic-mirror.vala.page
@@ -33,7 +33,7 @@
   </list>
 </synopsis>
 
-<media type="image" mime="image/png" src="example.png"/>
+<media type="image" mime="image/png" src="media/magic-mirror.png"/>
 
 <section>
   <title>The story...</title>
diff --git a/demos/C/message-board.c.page b/demos/C/message-board.c.page
index 1a6ab7d..7168f3b 100644
--- a/demos/C/message-board.c.page
+++ b/demos/C/message-board.c.page
@@ -27,7 +27,7 @@
   </list>
 </synopsis>
 
-<media type="image" mime="image/png" src="webkit/demo.png"/>
+<media type="image" mime="image/png" src="media/message-board.png"/>
 
 <e:links type="section" xmlns:e="http://projectmallard.org/experimental/"/>
 
diff --git a/demos/C/photo-wall.c.page b/demos/C/photo-wall.c.page
index 088e2a7..95c14b2 100644
--- a/demos/C/photo-wall.c.page
+++ b/demos/C/photo-wall.c.page
@@ -54,10 +54,10 @@
   <p>
     Our image viewer presents the user with a "wall" of images.
   </p>
-  <media type="image" mime="image/png" src="clutter-image-viewer/clutter-image-viewer-wall.png"/>
+  <media type="image" mime="image/png" src="media/photo-wall.png"/>
   <p>When an image is clicked, it's animated to fill the viewing area. When the image having focus is clicked it's returned to it's original position using an animation with the same duration of 500 milliseconds.
   </p>
-  <media type="image" mime="image/png" src="clutter-image-viewer/clutter-image-viewer-zoomed.png"/>
+  <media type="image" mime="image/png" src="media/photo-wall-zoomed.png"/>
 </section>
 
 <section>
diff --git a/demos/C/record-collection.js.page b/demos/C/record-collection.js.page
index 3fa8a49..65f5888 100644
--- a/demos/C/record-collection.js.page
+++ b/demos/C/record-collection.js.page
@@ -46,7 +46,7 @@
 
 <section>
   <title>Program Structure</title>
-  <media type="image" mime="image/png" src="gda-demo/demo.png"/>
+  <media type="image" mime="image/png" src="media/record-collection.png"/>
   <p>This demo is a simple GTK application (with a single window) capable of insert records into a database table as well browse all records of the table. The table has two fields: id, integer and name, varchar. The first section (on the top) of the application allows you to insert a record into the table. The last section (bottom) allows you to see all the records of that table. Its content is refreshed every time a new record is inserted and on the application startup.
   </p>
 </section>
diff --git a/demos/Makefile.am b/demos/Makefile.am
index a9b4cee..7c67375 100644
--- a/demos/Makefile.am
+++ b/demos/Makefile.am
@@ -5,18 +5,22 @@ DOC_ID = demos
 DOC_LINGUAS =
 
 DOC_FIGURES =					\
-	gda-demo/demo.png			\
-	guitar-tuner/guitar-tuner.png		\
-	guitar-tuner/simple-player.png		\
-	image-viewer/gtk_test.png
+	media/guitar-tuner.png			\
+	media/image-viewer.png			\
+	media/photo-wall.png			\
+	media/photo-wall-zoomed.png		\
+	media/record-collection.png
 
 DOC_ENTITIES =
 
 DOC_PAGES =			\
-	gda-demo.js.page	\
 	guitar-tuner.c.page	\
+	image-viewer.c.page	\
+	image-viewer.js.page	\
+	magic-mirror.vala.page	\
 	message-board.c.page	\
-	webcam.vala.page	\
+	photo-wall.c.page	\
+	record-collection.js.page	\
 	index.page
 
 dist-hook: doc-dist-hook



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]