-rw-r--r-- | src/plugin/README_plugin.txt | 37 | ||||
-rw-r--r-- | src/plugin/install.rdf | 19 | ||||
-rwxr-xr-x | src/plugin/make_xpi.sh | 22 | ||||
-rw-r--r-- | src/plugin/plugin.c | 199 | ||||
-rw-r--r-- | src/plugin/plugin.h | 29 | ||||
-rw-r--r-- | src/plugin/test.html | 17 |
6 files changed, 323 insertions, 0 deletions
diff --git a/src/plugin/README_plugin.txt b/src/plugin/README_plugin.txt new file mode 100644 index 0000000..91100ed --- a/dev/null +++ b/src/plugin/README_plugin.txt | |||
@@ -0,0 +1,37 @@ | |||
1 | The contents of this directory are used to deploy the application as a | ||
2 | web browser plugin. The following references are relevant to the | ||
3 | technologies used here: | ||
4 | |||
5 | "Plugins," Mozilla Developer Center, last modified August 23, 2009, https://developer.mozilla.org/en/Plugins. | ||
6 | |||
7 | "Shipping a plugin as an extension," Mozilla Developer Center, last | ||
8 | modified June 2, 2008, | ||
9 | https://developer.mozilla.org/en/Shipping_a_plugin_as_an_extension. | ||
10 | |||
11 | Analysis of current library dependencies for the web browser plugin: | ||
12 | $ ldd libflumapplugin.so.0.0.0 | ||
13 | |||
14 | Basic Linux Runtime | ||
15 | ------------------- | ||
16 | /lib/ld-linux.so.2 | ||
17 | libgcc_s.so.1 => /lib/libgcc_s.so.1 | ||
18 | libstdc++.so.5 => /usr/lib/libstdc++.so.5 | ||
19 | linux-gate.so.1 => | ||
20 | libc.so.6 => /lib/i686/cmov/libc.so.6 | ||
21 | libcrypt.so.1 => /lib/i686/cmov/libcrypt.so.1 | ||
22 | libdl.so.2 => /lib/i686/cmov/libdl.so.2 | ||
23 | libm.so.6 => /lib/i686/cmov/libm.so.6 | ||
24 | libpthread.so.0 => /lib/i686/cmov/libpthread.so.0 | ||
25 | librt.so.1 => /lib/i686/cmov/librt.so.1 | ||
26 | |||
27 | IBM DB2 Client | ||
28 | -------------- | ||
29 | libdb2.so.1 => /home/db2inst1/sqllib/lib32/libdb2.so.1 | ||
30 | libdb2dascmn.so.1 => /home/db2inst1/sqllib/lib32/libdb2dascmn.so.1 | ||
31 | libdb2g11n.so.1 => /home/db2inst1/sqllib/lib32/libdb2g11n.so.1 | ||
32 | libdb2genreg.so.1 => /home/db2inst1/sqllib/lib32/libdb2genreg.so.1 | ||
33 | libdb2install.so.1 => /home/db2inst1/sqllib/lib32/libdb2install.so.1 | ||
34 | libdb2locale.so.1 => /home/db2inst1/sqllib/lib32/libdb2locale.so.1 | ||
35 | libdb2osse.so.1 => /home/db2inst1/sqllib/lib32/libdb2osse.so.1 | ||
36 | libdb2osse_db2.so.1 => /home/db2inst1/sqllib/lib32/libdb2osse_db2.so.1 | ||
37 | libdb2trcapi.so.1 => /home/db2inst1/sqllib/lib32/libdb2trcapi.so.1 | ||