summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorThomas Vander Stichele <thomas@apestaart.org>2005-08-30 19:20:02 +0000
committerThomas Vander Stichele <thomas@apestaart.org>2005-08-30 19:20:02 +0000
commit90603b748a032d38e000ef6412cb0570f016bb29 (patch)
tree905632781ace525580f37f92c5e7f730ed7e1911 /docs
parentbab306f55d3a35e8c78e1a9197cf65645800fc15 (diff)
commit new stuff
Original commit message from CVS: commit new stuff
Diffstat (limited to 'docs')
-rw-r--r--docs/upload.mak34
-rw-r--r--docs/version.entities.in2
2 files changed, 36 insertions, 0 deletions
diff --git a/docs/upload.mak b/docs/upload.mak
new file mode 100644
index 00000000..ed01e5e9
--- /dev/null
+++ b/docs/upload.mak
@@ -0,0 +1,34 @@
+# this snippet is to be included by both our docbook manuals
+# and gtk-doc API references
+
+# it adds an upload target to each of these dir's Makefiles
+
+# each Makefile.am should define the following variables:
+# - DOC: the base name of the documentation
+# (faq, manual, pwg, gstreamer, gstreamer-libs)
+# - FORMATS: the formats in which DOC is output
+# (html ps pdf)
+
+# if you want to use it, make sure your ..sh/config file contains the
+# correct User entry for the Host entry for the DOC_SERVER
+
+# these variables define the location of the online docs
+DOC_SERVER=freedesktop.org
+DOC_BASE=/srv/gstreamer.freedesktop.org/www/data/doc
+DOC_URL=$(DOC_SERVER):$(DOC_BASE)
+
+
+upload: $(FORMATS)
+ @if test "x$(GST_VERSION_NANO)" = x0; then \
+ export DOCVERSION=$(VERSION); \
+ else export DOCVERSION=head; \
+ fi; \
+ export DIR=$(DOC_BASE)/gstreamer/$$DOCVERSION/$(DOC); \
+ ssh $(DOC_SERVER) mkdir -p $$DIR; \
+ if echo $(FORMATS) | grep html > /dev/null; then export SRC="$$SRC html"; fi; \
+ if echo $(FORMATS) | grep ps > /dev/null; then export SRC="$$SRC $(DOC).ps"; fi; \
+ if echo $(FORMATS) | grep pdf > /dev/null; then export SRC="$$SRC $(DOC).pdf"; fi; \
+ echo Uploading $$SRC to $(DOC_SERVER):$$DIR; \
+ rsync -rv -e ssh --delete $$SRC $(DOC_SERVER):$$DIR; \
+ ssh $(DOC_SERVER) chmod -R g+w $$DIR; \
+ echo Done
diff --git a/docs/version.entities.in b/docs/version.entities.in
new file mode 100644
index 00000000..79a68981
--- /dev/null
+++ b/docs/version.entities.in
@@ -0,0 +1,2 @@
+<!ENTITY GST_MAJORMINOR "@GST_MAJORMINOR@">
+<!ENTITY GST_VERSION "@VERSION@">