|
From: <ai...@us...> - 2013-09-26 21:51:39
|
Revision: 12534
http://sourceforge.net/p/plplot/code/12534
Author: airwin
Date: 2013-09-26 21:51:35 +0000 (Thu, 26 Sep 2013)
Log Message:
-----------
Drop f77 and Perl/PDL example source code from being copied to website.
Include source code and pngcairo results for x00.
For generated results, allow more than 99 pages. (N.B. example 33
currently has 100 pages).
Modified Paths:
--------------
trunk/scripts/htdocs-gen_plot-examples.sh
Modified: trunk/scripts/htdocs-gen_plot-examples.sh
===================================================================
--- trunk/scripts/htdocs-gen_plot-examples.sh 2013-09-26 15:32:18 UTC (rev 12533)
+++ trunk/scripts/htdocs-gen_plot-examples.sh 2013-09-26 21:51:35 UTC (rev 12534)
@@ -62,9 +62,8 @@
rm -rf htdocsgen/build_dir htdocsgen/install
mkdir -p htdocsgen/build_dir htdocsgen/install
cd htdocsgen/build_dir
- # Specifically enable f77 and Ada so that examples will be generated.
cmake -DCMAKE_INSTALL_PREFIX=`pwd`/../install \
- -DDEFAULT_NO_BINDINGS=ON -DENABLE_f77=ON -DENABLE_ada=ON\
+ -DDEFAULT_NO_BINDINGS=ON \
-DDEFAULT_NO_DEVICES=ON -DPLD_pngcairo=ON \
../../
make -j3
@@ -81,7 +80,7 @@
# hack, x20c needs lena in the current directory
$CP examples/c/lena.pgm .
-for exe in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 \
+for exe in 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 \
23 24 25 26 27 28 29 30 31 32 33; do
if [ $exe = "08" -o $exe = "16" -o $exe = "20" -o $exe = "30" ] ; then
@@ -129,20 +128,17 @@
echo populating www directory demo${exe}
rm -rf $EXDIR/demo${exe}
mkdir -p $EXDIR/demo${exe}
- mv *${exe}.??.png $EXDIR/demo${exe}
- # Note configured fortran 77 examples must be grabbed from the installed
- # examples.
+ # page number is two digits or more.
+ mv *${exe}.*[0-9][0-9].png $EXDIR/demo${exe}
for f in \
examples/ada/x${exe}a.adb \
examples/ada/xthick${exe}a.adb \
examples/c/x${exe}c.c \
examples/c++/x${exe}.cc \
- $cexamples_dir/../f77/x${exe}f.f \
examples/f95/x${exe}f.f90 \
examples/java/x${exe}.java \
examples/ocaml/x${exe}.ml \
examples/octave/x${exe}c.m \
- examples/perl/x${exe}.pl \
examples/python/xw${exe}.py \
examples/tcl/x${exe}.tcl \
; do
@@ -161,12 +157,10 @@
*.adb \
*.c \
*.cc \
- *.f \
*.f90 \
*.java \
*.ml \
*.m \
- *.pl \
*.py \
*.tcl \
; do
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|