mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-22 07:08:23 +00:00
www faq integration
Original commit message from CVS: www faq integration
This commit is contained in:
parent
535d8911aa
commit
b275fbeaff
1 changed files with 22 additions and 0 deletions
|
@ -13,3 +13,25 @@ CSS=base.css
|
|||
EXTRA_DIST = $(XML) $(CSS) magic-png magic-pdf
|
||||
|
||||
include $(srcdir)/../manuals.mak
|
||||
|
||||
# target for building the faq dir to be put on the website and rsync-ing it
|
||||
www: www-faq
|
||||
export RSYNC_RSH=ssh
|
||||
cd www-faq && rsync -arv * thomasvs@shell.sf.net:/home/groups/g/gs/gstreamer/htdocs/docs/faq/
|
||||
|
||||
www-faq: gstreamer-faq
|
||||
mkdir -p www-faq
|
||||
cp gstreamer-faq/base.css www-faq
|
||||
cd gstreamer-faq && for a in *.html; do \
|
||||
xmllint --format --htmlout $$a 2> /dev/null | \
|
||||
tail +3 > ../www-faq/$$a; \
|
||||
done
|
||||
cd www-faq && rename html php *.html && for a in *.php; do \
|
||||
perl -i -p -e's@^.*\<head.*@\<?php include "../../lib/template.php"; echo get_header ("GStreamer: FAQ", "../.."); \?\>@' $$a; \
|
||||
perl -i -p -e's@^.*\</body.*@\<?php echo get_footer(); \?\>@' $$a; \
|
||||
perl -i -p -e's@^.*\</html.*@@' $$a; \
|
||||
done
|
||||
cd www-faq && for a in *.php; do \
|
||||
perl -i -p -e's@href="index\.html@href="index.php@' $$a; \
|
||||
perl -i -p -e's@href="(ar.*)\.html@href="$$1.php@' $$a; \
|
||||
done
|
||||
|
|
Loading…
Reference in a new issue