under BeOS
+
+[TODO]
+
diff --git a/trunk/www.videolan.org/doc/videolan-howto/Makefile b/trunk/www.videolan.org/doc/videolan-howto/Makefile
index d361222430b60c37550aa764cd20a6a803b6f92b..801d8dd7cd530f640cf7055188b32d536a7da3bb 100644
--- a/trunk/www.videolan.org/doc/videolan-howto/Makefile
+++ b/trunk/www.videolan.org/doc/videolan-howto/Makefile
@@ -1,34 +1,42 @@
-all: clean html ps pdf rtf txt
+# Makefile for the VideoLAN Documentation
+
+DOC := videolan-howto
+
+# We build HTML, PS, PDF, RTF and TXT for the Web site
+all: images html ps pdf rtf txt
+
+# Get the images from the /images/documentation directory
+images:
+ rm -rf images
+ cp -R ../../images/documentation images
html:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b html -s ../common/stylesheet-html.dsl videolan-howto.sgml
- mv videolan-howto/*.html .
- rmdir videolan-howto
+ sgmltools -b html -s ../common/stylesheet-html.dsl $(DOC).sgml
+ mv $(DOC)/*.html .
+ rmdir $(DOC)
ln -sf book1.html index.html
- zip videolan-howto-html.zip *.html *.jpg
+ rm -f $(DOC)-html.zip
+ zip $(DOC)-html.zip *.html images/*.jpg
ps:
/bin/cp ../common/magic-eps.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.eps .
- sgmltools -b ps -s ../common/stylesheet-print.dsl videolan-howto.sgml
- zip videolan-howto-ps.zip videolan-howto.ps
+ sgmltools -b ps -s ../common/stylesheet-print.dsl $(DOC).sgml
+ zip $(DOC)-ps.zip $(DOC).ps
pdf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl videolan-howto.sgml
- zip videolan-howto-pdf.zip videolan-howto.pdf
+ sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ zip $(DOC)-pdf.zip $(DOC).pdf
rtf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl videolan-howto.sgml
- zip videolan-howto-rtf.zip videolan-howto.rtf *.jpg
+ sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ rm -f $(DOC)-rtf.zip
+ zip $(DOC)-rtf.zip $(DOC).rtf images/*.jpg
txt:
- sgmltools -b txt videolan-howto.sgml
+ sgmltools -b txt $(DOC).sgml
clean:
rm -f *.zip *.html *.pdf *.ps *.txt *.rtf
diff --git a/trunk/www.videolan.org/doc/videolan-quickstart/Makefile b/trunk/www.videolan.org/doc/videolan-quickstart/Makefile
index e3b9da04a52469419cda23368281aec7ea50fc21..58b96959296d582792e4a20de55d8df97812cf2f 100644
--- a/trunk/www.videolan.org/doc/videolan-quickstart/Makefile
+++ b/trunk/www.videolan.org/doc/videolan-quickstart/Makefile
@@ -1,34 +1,42 @@
-all: clean html ps pdf rtf txt
+# Makefile for the VideoLAN Documentation
+
+DOC := videolan-quickstart
+
+# We build HTML, PS, PDF, RTF and TXT for the Web site
+all: images html ps pdf rtf txt
+
+# Get the images from the /images/documentation directory
+images:
+ rm -rf images
+ cp -R ../../images/documentation images
html:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b html -s ../common/stylesheet-html.dsl videolan-quickstart.sgml
- mv videolan-quickstart/*.html .
- rmdir videolan-quickstart
+ sgmltools -b html -s ../common/stylesheet-html.dsl $(DOC).sgml
+ mv $(DOC)/*.html .
+ rmdir $(DOC)
ln -sf book1.html index.html
- zip videolan-quickstart-html.zip *.html *.jpg
+ rm -f $(DOC)-html.zip
+ zip $(DOC)-html.zip *.html images/*.jpg
ps:
/bin/cp ../common/magic-eps.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.eps .
- sgmltools -b ps -s ../common/stylesheet-print.dsl videolan-quickstart.sgml
- zip videolan-quickstart-ps.zip videolan-quickstart.ps
+ sgmltools -b ps -s ../common/stylesheet-print.dsl $(DOC).sgml
+ zip $(DOC)-ps.zip $(DOC).ps
pdf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl videolan-quickstart.sgml
- zip videolan-quickstart-pdf.zip videolan-quickstart.pdf
+ sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ zip $(DOC)-pdf.zip $(DOC).pdf
rtf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl videolan-quickstart.sgml
- zip videolan-quickstart-rtf.zip videolan-quickstart.rtf *.jpg
+ sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ rm -f $(DOC)-rtf.zip
+ zip $(DOC)-rtf.zip $(DOC).rtf images/*.jpg
txt:
- sgmltools -b txt videolan-quickstart.sgml
+ sgmltools -b txt $(DOC).sgml
clean:
- rm -f *.zip *.html *.pdf *.ps *.txt
+ rm -f *.zip *.html *.pdf *.ps *.txt *.rtf
diff --git a/trunk/www.videolan.org/doc/vlc-user-guide/Makefile b/trunk/www.videolan.org/doc/vlc-user-guide/Makefile
index ea8bfe8dfc1300ddaf0c8cd94b124510de8f3816..dde0b6bfd0ed5ab71a106e690a66730e24a0d91f 100644
--- a/trunk/www.videolan.org/doc/vlc-user-guide/Makefile
+++ b/trunk/www.videolan.org/doc/vlc-user-guide/Makefile
@@ -1,35 +1,42 @@
-all: clean html ps pdf rtf txt
+# Makefile for the VideoLAN Documentation
+
+DOC := vlc-user-guide
+
+# We build HTML, PS, PDF, RTF and TXT for the Web site
+all: images html ps pdf rtf txt
+
+# Get the images from the /images/documentation directory
+images:
+ rm -rf images
+ cp -R ../../images/documentation images
html:
- rm -f *.html
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b html -s ../common/stylesheet-html.dsl vlc-user-guide.sgml
- mv vlc-user-guide/*.html .
- rmdir vlc-user-guide
+ sgmltools -b html -s ../common/stylesheet-html.dsl $(DOC).sgml
+ mv $(DOC)/*.html .
+ rmdir $(DOC)
ln -sf book1.html index.html
- zip vlc-user-guide-html.zip *.html *.jpg
+ rm -f $(DOC)-html.zip
+ zip $(DOC)-html.zip *.html images/*.jpg
ps:
/bin/cp ../common/magic-eps.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.eps .
- sgmltools -b ps -s ../common/stylesheet-print.dsl vlc-user-guide.sgml
- zip vlc-user-guide-ps.zip vlc-user-guide.ps
+ sgmltools -b ps -s ../common/stylesheet-print.dsl $(DOC).sgml
+ zip $(DOC)-ps.zip $(DOC).ps
pdf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl vlc-user-guide.sgml
- zip vlc-user-guide-pdf.zip vlc-user-guide.pdf
+ sgmltools -b pdf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ zip $(DOC)-pdf.zip $(DOC).pdf
rtf:
/bin/cp ../common/magic-jpg.sgml ../common/magic.sgml
- /bin/cp ../../images/plan-videolan-640.jpg .
- sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl vlc-user-guide.sgml
- zip vlc-user-guide-rtf.zip vlc-user-guide.rtf *.jpg
+ sgmltools -b rtf -s ../common/stylesheet-print-noicones.dsl $(DOC).sgml
+ rm -f $(DOC)-rtf.zip
+ zip $(DOC)-rtf.zip $(DOC).rtf images/*.jpg
txt:
- sgmltools -b txt vlc-user-guide.sgml
+ sgmltools -b txt $(DOC).sgml
clean:
- rm -f *.zip *.html *.pdf *.ps *.jpg *.txt *.rtf
+ rm -f *.zip *.html *.pdf *.ps *.txt *.rtf
diff --git a/trunk/www.videolan.org/streaming/index.html b/trunk/www.videolan.org/streaming/index.html
index 88b82256014cc905e6b5c2b85274989399038cef..98a2df996f7f4709b09cf02c0b3a5cfa315e51cd 100644
--- a/trunk/www.videolan.org/streaming/index.html
+++ b/trunk/www.videolan.org/streaming/index.html
@@ -28,9 +28,9 @@ display MPEG streams under multiple operating systems.
This diagram illustrates the VideoLAN solution:
-![VideoLAN Solution]()
-
+
+
+
@@ -149,4 +149,4 @@ download page.
- footer('$Id: index.html,v 1.36 2003/05/05 12:55:19 alexis Exp $'); ?>
+ footer('$Id: index.html,v 1.37 2003/05/06 17:16:04 alexis Exp $'); ?>