[gnomeweb-wml] Untar the docs as well



commit a2f70b4028b86f6ba5a698a49d9540c676883bc4
Author: Kjartan Maraas <kmaraas gnome org>
Date:   Wed Oct 28 19:45:29 2009 +0100

    Untar the docs as well

 projects.gnome.org/ORBit2/orbit-docs/Makefile.am   |    2 +-
 .../ORBit2/orbit-docs/examples/Makefile            |    3 +++
 .../ORBit2/orbit-docs/examples/account/Makefile    |    2 +-
 .../orbit-docs/examples/account/account-client.c   |    1 +
 .../orbit-docs/examples/account/examples-toolkit.c |    3 ++-
 .../ORBit2/orbit-docs/examples/badcall/Makefile    |    2 +-
 .../orbit-docs/examples/badcall/examples-toolkit.c |    3 ++-
 .../ORBit2/orbit-docs/examples/byteseq/Makefile    |    2 +-
 .../orbit-docs/examples/byteseq/examples-toolkit.c |    3 ++-
 .../ORBit2/orbit-docs/examples/calculator/Makefile |    2 +-
 .../examples/calculator/calculator-client.c        |    1 +
 .../examples/calculator/examples-toolkit.c         |    3 ++-
 .../orbit-docs/examples/callback/client/Makefile   |    2 +-
 .../examples/callback/client/examples-toolkit.c    |    3 ++-
 .../orbit-docs/examples/callback/server/Makefile   |    2 +-
 .../examples/callback/server/examples-toolkit.c    |    3 ++-
 .../ORBit2/orbit-docs/examples/echo/Makefile       |    2 +-
 .../ORBit2/orbit-docs/examples/echo/echo-client.c  |    4 ++++
 .../ORBit2/orbit-docs/examples/echo/echo-server.c  |    1 -
 .../orbit-docs/examples/echo/examples-toolkit.c    |    3 ++-
 .../ORBit2/orbit-docs/examples/factory/Makefile    |    2 +-
 .../orbit-docs/examples/factory/examples-toolkit.c |    3 ++-
 .../orbit-docs/examples/name-resolve/Makefile      |    2 +-
 .../examples/name-resolve/examples-toolkit.c       |    3 ++-
 .../examples/name-resolve/name-resolve-client.c    |    2 ++
 .../examples/threaded-calculator/Makefile          |    2 +-
 .../threaded-calculator/calculator-client.c        |    1 +
 .../threaded-calculator/examples-toolkit.c         |    3 ++-
 .../ORBit2/orbit-docs/orbit/Makefile.am            |    2 +-
 .../ORBit2/orbit-docs/orbit/c25.html               |   12 ++++++------
 .../ORBit2/orbit-docs/orbit/c250.html              |    2 +-
 .../ORBit2/orbit-docs/orbit/c258.html              |    2 +-
 .../ORBit2/orbit-docs/orbit/c264.html              |    4 ++--
 .../orbit-docs/orbit/stylesheet-images/Makefile.am |    2 +-
 .../ORBit2/orbit-docs/orbit/x168.html              |    2 +-
 .../ORBit2/orbit-docs/orbit/x176.html              |    2 +-
 .../ORBit2/orbit-docs/orbit/x182.html              |    4 ++--
 37 files changed, 59 insertions(+), 38 deletions(-)
---
diff --git a/projects.gnome.org/ORBit2/orbit-docs/Makefile.am b/projects.gnome.org/ORBit2/orbit-docs/Makefile.am
index b20ecb9..20c3670 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/Makefile.am
+++ b/projects.gnome.org/ORBit2/orbit-docs/Makefile.am
@@ -1,6 +1,6 @@
 SUBDIRS=orbit
 
-urlpath = /ORBit2/orbit-docs
+urlpath=/projects/ORBit2/orbit-docs
 
 page_SCRIPTS=orbit.ps orbit.pdf
 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/Makefile
index 65d559b..8f55dba 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/Makefile
@@ -8,6 +8,7 @@ all:
 	$(MAKE) -C factory  	all
 	$(MAKE) -C name-resolve all
 	$(MAKE) -C callback     all
+	$(MAKE) -C threaded-calculator   all
 
 clean:
 	rm -f *~
@@ -19,6 +20,7 @@ clean:
 	$(MAKE) -C factory      clean
 	$(MAKE) -C name-resolve clean
 	$(MAKE) -C callback     clean
+	$(MAKE) -C threaded-calculator   clean
 
 distclean: 
 	rm -f *~
@@ -30,4 +32,5 @@ distclean:
 	$(MAKE) -C factory      distclean
 	$(MAKE) -C name-resolve distclean
 	$(MAKE) -C callback     distclean
+	$(MAKE) -C threaded-calculator   distclean
 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/account/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/account/Makefile
index 5ed0cb4..7995b6e 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/account/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/account/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): account.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref account-client account-server
 
 distclean: clean
 	rm -rf account-client account-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/account/account-client.c b/projects.gnome.org/ORBit2/orbit-docs/examples/account/account-client.c
index 635ec1a..3524bf1 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/account/account-client.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/account/account-client.c
@@ -4,6 +4,7 @@
 #include <assert.h>
 #include <signal.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <orbit/orbit.h>
 
 #include "account.h"
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/account/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/account/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/account/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/account/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/Makefile
index 031cf4d..75882d6 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): badcall.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref badcall-client badcall-server
 
 distclean: clean
 	rm -rf badcall-client badcall-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/badcall/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/Makefile
index e6cf330..2b4160a 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/Makefile
@@ -20,7 +20,7 @@ $(IDLOUT): byteseq.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref byteseq-client byteseq-server
 
 distclean: clean
 	rm -rf byteseq-client byteseq-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/byteseq/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/Makefile
index 52e17be..0ee598f 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): calculator.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref calculator-client calculator-server
 
 distclean: clean
 	rm -rf calculator-client calculator-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/calculator-client.c b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/calculator-client.c
index c2bab46..1b7f405 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/calculator-client.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/calculator-client.c
@@ -4,6 +4,7 @@
 #include <assert.h>
 #include <signal.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <orbit/orbit.h>
 
 #include "calculator.h"
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/calculator/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/Makefile
index 8dfac57..0d20346 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/Makefile
@@ -20,7 +20,7 @@ $(IDLOUT): callback-client.idl
 	$(ORBIT_IDL) -I . -I ../server --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~  $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~  $(IDLOUT) *.ior *.ref callback-client
 
 distclean: clean
 	rm -rf callback-client 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/client/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/Makefile
index 6f72d50..bc2ed7b 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): callback-server.idl
 	$(ORBIT_IDL) -I . --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref callback-server
 
 distclean: clean
 	rm -rf callback-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/callback/server/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/Makefile
index e9a2c04..89f9756 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): echo.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref echo-client echo-server
 
 distclean: clean
 	rm -rf echo-client echo-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-client.c b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-client.c
index e3cba84..5ca5f02 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-client.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-client.c
@@ -10,6 +10,8 @@
 
 #include <stdio.h>
 #include <signal.h>
+#include <string.h>
+#include <stdlib.h>
 #include <orbit/orbit.h>
 
 /*
@@ -18,6 +20,7 @@
 
 #include "echo.h"
 
+#include "examples-toolkit.h" /* ie. etk_abort_if_exception() */ 
 
 static CORBA_ORB  global_orb = CORBA_OBJECT_NIL; /* global orb */
  
@@ -183,6 +186,7 @@ main(int argc, char* argv[])
 	echo_service = (Echo) etk_import_object_from_file (global_orb,
 							   filename,
 							   ev);
+
         etk_abort_if_exception(ev, "import service failed");
 
 	client_run (echo_service, ev);
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-server.c b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-server.c
index 8c644eb..ac152f3 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-server.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/echo-server.c
@@ -57,7 +57,6 @@ server_init (int                 *argc_ptr,
 	signal(SIGTERM, server_shutdown);
 	
 	/* create Object Request Broker (ORB) */
-	
         (*orb) = CORBA_ORB_init(argc_ptr, argv, "orbit-local-mt-orb", ev);
 	if (etk_raised_exception(ev)) 
 		goto failed_orb;
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/echo/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/echo/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/factory/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/factory/Makefile
index 7ec7600..1e8ea30 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/factory/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/factory/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): factory.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref factory-client factory-server
 
 distclean: clean
 	rm -rf factory-client factory-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/factory/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/factory/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/factory/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/factory/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/Makefile
index 871b2c2..97cb7b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): name-resolve.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref name-resolve-client name-resolve-server
 
 distclean: clean
 	rm -rf name-resolve-client name-resolve-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/name-resolve-client.c b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/name-resolve-client.c
index d5d1c04..4adf0d2 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/name-resolve-client.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/name-resolve/name-resolve-client.c
@@ -10,6 +10,8 @@
 
 #include <stdio.h>
 #include <signal.h>
+#include <stdlib.h>
+#include <string.h>
 #include <orbit/orbit.h>
 
 /*
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/Makefile b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/Makefile
index 1b7f587..c054236 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/Makefile
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/Makefile
@@ -21,7 +21,7 @@ $(IDLOUT): calculator.idl
 	$(ORBIT_IDL) --skeleton-impl $^
 
 clean:
-	rm -rf *.o *~ $(IDLOUT) *.ior *.ref
+	rm -rf *.o *~ $(IDLOUT) *.ior *.ref calculator-client mt-calculator-server
 
 distclean: clean
 	rm -rf calculator-client mt-calculator-server
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/calculator-client.c b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/calculator-client.c
index c2bab46..1b7f405 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/calculator-client.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/calculator-client.c
@@ -4,6 +4,7 @@
 #include <assert.h>
 #include <signal.h>
 #include <stdio.h>
+#include <stdlib.h>
 #include <orbit/orbit.h>
 
 #include "calculator.h"
diff --git a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/examples-toolkit.c b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/examples-toolkit.c
index 8a0c65b..cf8e5b0 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/examples-toolkit.c
+++ b/projects.gnome.org/ORBit2/orbit-docs/examples/threaded-calculator/examples-toolkit.c
@@ -1,4 +1,5 @@
-
+#include <stdlib.h>
+#include <string.h>
 #include "examples-toolkit.h"
 
 /** 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/Makefile.am b/projects.gnome.org/ORBit2/orbit-docs/orbit/Makefile.am
index 131809a..274167b 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/Makefile.am
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/Makefile.am
@@ -1,6 +1,6 @@
 SUBDIRS=stylesheet-images 
 
-urlpath = /ORBit2/orbit-docs/orbit
+urlpath=/projects/ORBit2/orbit-docs/orbit
 
 page_SCRIPTS= \
 book1.html c85.html    x140.html  x478.html \
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/c25.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/c25.html
index f823654..86c5d50 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/c25.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/c25.html
@@ -181,9 +181,9 @@ You can get :
 ><P
 >&#13;  The documentation and examples at
   <A
-HREF="http://projects.gnome.org/ORBit2/orbit-docs.tar.gz";
+HREF="http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz";
 TARGET="_top"
->&#13;  http://projects.gnome.org/ORBit2/orbit-docs.tar.gz
+>&#13;  http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz
   </A
 >
 </P
@@ -192,9 +192,9 @@ TARGET="_top"
 ><P
 >&#13;   A PostScript version of this document at 
   <A
-HREF="http://projects.gnome.org/ORBit2/orbit-docs/orbit.ps";
+HREF="http://www.gnome.org/projects/ORBit2/orbit-docs/orbit.ps";
 TARGET="_top"
->&#13;  http://projects.gnome.org/ORBit2/orbit-docs/orbit.ps
+>&#13;  http://www.gnome.org/projects/ORBit2/orbit-docs/orbit.ps
   </A
 >
   </P
@@ -203,9 +203,9 @@ TARGET="_top"
 ><P
 >&#13;   A PDF version of this document at 
   <A
-HREF="http://projects.gnome.org/ORBit2/orbit-docs/orbit.pdf";
+HREF="http://www.gnome.org/projects/ORBit2/orbit-docs/orbit.pdf";
 TARGET="_top"
->&#13;  http://projects.gnome.org/ORBit2/orbit-docs/orbit.pdf
+>&#13;  http://www.gnome.org/projects/ORBit2/orbit-docs/orbit.pdf
   </A
 >
   </P
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/c250.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/c250.html
index b86a03a..180b2aa 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/c250.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/c250.html
@@ -37,7 +37,7 @@
 
       <p>Three different, working programs will be presented in this chapter. They are all very simple and worth looking over and running (you will find the source code for them in the examples directory that comes with orbit-docs.tar.gz)</p>
 
-      <p>I have tested out the first two examples, echo and calculator and they work from the code in this document. The actual code with makefiles can be found at <a href="http://projects.gnome.org/ORBit2/orbit-docs.tar.gz"; target="_top">http://projects.gnome.org/ORBit2/orbit-docs.tar.gz</a> . However, it is likely that the code is not is well written as we would like, and I am sure it could get better. Please drop me a note if you would like to contribute something to the examples, preferably as patches to the code in examples directory and the orbit.xml document.</p>
+      <p>I have tested out the first two examples, echo and calculator and they work from the code in this document. The actual code with makefiles can be found at <a href="http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz"; target="_top">http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz</a> . However, it is likely that the code is not is well written as we would like, and I am sure it could get better. Please drop me a note if you would like to contribute something to the examples, preferably as patches to the code in examples directory and the orbit.xml document.</p>
     </div>
   </div>
 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/c258.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/c258.html
index 9d4e2f7..f36a718 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/c258.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/c258.html
@@ -37,7 +37,7 @@
 
       <p>Three different, working programs will be presented in this chapter. They are all very simple and worth looking over and running (you will find the source code for them in the examples directory that comes with orbit-docs.tar.gz)</p>
 
-      <p>I have tested out the first two examples, echo and calculator and they work from the code in this document. The actual code with makefiles can be found at <a href="http://projects.gnome.org/ORBit2/orbit-docs.tar.gz"; target="_top">http://projects.gnome.org/ORBit2/orbit-docs.tar.gz</a> . However, it is likely that the code is not is well written as we would like, and I am sure it could get better. Please drop me a note if you would like to contribute something to the examples, preferably as patches to the code in examples directory and the orbit.xml document.</p>
+      <p>I have tested out the first two examples, echo and calculator and they work from the code in this document. The actual code with makefiles can be found at <a href="http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz"; target="_top">http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz</a> . However, it is likely that the code is not is well written as we would like, and I am sure it could get better. Please drop me a note if you would like to contribute something to the examples, preferably as patches to the code in examples directory and the orbit.xml document.</p>
     </div>
   </div>
 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/c264.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/c264.html
index 5f3bab7..603bad4 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/c264.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/c264.html
@@ -91,9 +91,9 @@ in the examples directory that comes with orbit-docs.tar.gz)
 they work from the code in this document. The actual code with makefiles
 can be found at 
 <A
-HREF="http://projects.gnome.org/ORBit2/orbit-docs.tar.gz";
+HREF="http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz";
 TARGET="_top"
->&#13;http://projects.gnome.org/ORBit2/orbit-docs.tar.gz
+>&#13;http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz
 </A
 >.
 However, it is likely that the code is not is well written as we would like,
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/stylesheet-images/Makefile.am b/projects.gnome.org/ORBit2/orbit-docs/orbit/stylesheet-images/Makefile.am
index a0690e2..248cbb2 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/stylesheet-images/Makefile.am
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/stylesheet-images/Makefile.am
@@ -1,6 +1,6 @@
 SUBDIRS=
 
-urlpath = /ORBit2/orbit-docs/orbit/stylesheet-images
+urlpath=/projects/ORBit2/orbit-docs/orbit/stylesheet-images
 
 page_SCRIPTS=caution.gif  important.gif  note.gif  toc-blank.gif  up.gif  prev.gif  toc-minus.gif  warning.gif home.gif     next.gif       tip.gif   toc-plus.gif
 
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/x168.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/x168.html
index 167a382..71c8772 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/x168.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/x168.html
@@ -33,7 +33,7 @@
   <div class="sect1">
     <h1 class="sect1"><a name="AEN168" id="AEN168"></a>Getting the examples to run</h1>
 
-    <p>Once you have successfully installed orbit, getting the examples to run should be fine. The examples are available by http from <a href="http//projects.gnome.org/ORBit2/orbit-docs.tar.gz" target="_top">http//projects.gnome.org/ORBit2/orbit-docs.tar.gz</a> . Gunzip and untar the package, perhaps like:</p>
+    <p>Once you have successfully installed orbit, getting the examples to run should be fine. The examples are available by http from <a href="http//www.gnome.org/projects/ORBit2/orbit-docs.tar.gz" target="_top">http//www.gnome.org/projects/ORBit2/orbit-docs.tar.gz</a> . Gunzip and untar the package, perhaps like:</p>
 
     <table border="0" bgcolor="#E0E0E0" width="100%">
       <tr>
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/x176.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/x176.html
index 5e8a899..4d169f9 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/x176.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/x176.html
@@ -33,7 +33,7 @@
   <div class="sect1">
     <h1 class="sect1"><a name="AEN176" id="AEN176"></a>Getting the examples to run</h1>
 
-    <p>Once you have successfully installed orbit, getting the examples to run should be fine. The examples are available by http from <a href="http//projects.gnome.org/ORBit2/orbit-docs.tar.gz" target="_top">http//projects.gnome.org/ORBit2/orbit-docs.tar.gz</a> . Gunzip and untar the package, perhaps like:</p>
+    <p>Once you have successfully installed orbit, getting the examples to run should be fine. The examples are available by http from <a href="http//www.gnome.org/projects/ORBit2/orbit-docs.tar.gz" target="_top">http//www.gnome.org/projects/ORBit2/orbit-docs.tar.gz</a> . Gunzip and untar the package, perhaps like:</p>
 
     <table border="0" bgcolor="#E0E0E0" width="100%">
       <tr>
diff --git a/projects.gnome.org/ORBit2/orbit-docs/orbit/x182.html b/projects.gnome.org/ORBit2/orbit-docs/orbit/x182.html
index d89b085..9ab70aa 100644
--- a/projects.gnome.org/ORBit2/orbit-docs/orbit/x182.html
+++ b/projects.gnome.org/ORBit2/orbit-docs/orbit/x182.html
@@ -81,9 +81,9 @@ NAME="AEN182"
 run should be fine. 
 The examples are available by http from 
   <A
-HREF="http://projects.gnome.org/ORBit2/orbit-docs.tar.gz";
+HREF="http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz";
 TARGET="_top"
->&#13;  http://projects.gnome.org/ORBit2/orbit-docs.tar.gz
+>&#13;  http://www.gnome.org/projects/ORBit2/orbit-docs.tar.gz
   </A
 >
 Gunzip and untar the package, perhaps like:



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