summaryrefslogtreecommitdiffstats
Unidiff
-rw-r--r--.gitignore10
-rw-r--r--README29
-rw-r--r--configure.ac28
-rw-r--r--src/Makefile.am19
-rw-r--r--src/controller/callbacks/keyboard.c8
-rw-r--r--src/model/state/state.h5
-rw-r--r--src/plugin/README_plugin.txt5
-rw-r--r--src/plugin/install.rdf2
-rwxr-xr-xsrc/plugin/make_xpi.sh18
-rw-r--r--src/plugin/plugin.c40
-rw-r--r--src/plugin/plugin.h2
-rw-r--r--src/plugin/test.html6
-rw-r--r--src/view/geometry.c6
-rw-r--r--src/view/init.c1
-rw-r--r--test/ParaView/explore.pvsm4896
-rw-r--r--test/ParaView/proteins_by_year.csv106810
-rw-r--r--test/ParaView/proteins_by_year.sql19
-rw-r--r--test/explore-time.mw358
18 files changed, 112222 insertions, 40 deletions
diff --git a/src/plugin/make_xpi.sh b/src/plugin/make_xpi.sh
index cb206db..63fdd01 100755
--- a/src/plugin/make_xpi.sh
+++ b/src/plugin/make_xpi.sh
@@ -3,7 +3,7 @@
3# This script creates a XPI file.3# This script creates a XPI file.
44
5# The structure of an Installable Bundle is documented on-line at:5# The structure of an Installable Bundle is documented on-line at:
6# https://developer.mozilla.org/en/Bundles. Note that Iceweasel6# https://developer.mozilla.org/en/Bundles Note that Iceweasel
7# 3.0.12 on Debian x86 is unable to find the library if gcc4 is used7# 3.0.12 on Debian x86 is unable to find the library if gcc4 is used
8# in place of gcc3 or if the library name is not truncated to .so.8# in place of gcc3 or if the library name is not truncated to .so.
9# Also running from the GNOME taskbar does not include the DB29# Also running from the GNOME taskbar does not include the DB2
@@ -12,8 +12,20 @@
12# LD_LIBRARY_PATH set resolves this. DB2 run-time libraries should be12# LD_LIBRARY_PATH set resolves this. DB2 run-time libraries should be
13# statically linked however static verions are not including with DB213# statically linked however static verions are not including with DB2
14# v9.5 Express/C.14# v9.5 Express/C.
15cp ../.libs/libflumapplugin.so.0.0.0 \15
16platform/Linux_x86-gcc3/plugins/libflumapplugin.so16# As per https://developer.mozilla.org/en/OS_TARGET
17OS_TARGET=`uname -s`
18
19# As per https://developer.mozilla.org/en/XPCOM_ABI
20CPU_ARCH=`uname -m`
21TARGET_COMPILER_ABI=gcc3
22TARGET_XPCOM_ABI=${CPU_ARCH}-${TARGET_COMPILER_ABI}
23
24# As per https://developer.mozilla.org/en/Bundles
25PLATFORM_STRING=${OS_TARGET}_${TARGET_XPCOM_ABI}
26
27install -D ../.libs/libflumapplugin.so.0.0.0 \
28platform/${PLATFORM_STRING}/plugins/libflumapplugin.so
1729
18# ZIP is used make the extension as per the instructions at:30# ZIP is used make the extension as per the instructions at:
19# https://developer.mozilla.org/en/Extension_Packaging31# https://developer.mozilla.org/en/Extension_Packaging

Valid XHTML 1.0 Strict

Copyright © 2009 Don Pellegrino All Rights Reserved.