File: README

package info (click to toggle)
jsxgraph 0.98~dfsg1-3
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 28,132 kB
  • ctags: 1,325
  • sloc: xml: 5,869; java: 1,072; python: 667; php: 355; makefile: 129; sh: 36
file content (48 lines) | stat: -rw-r--r-- 1,848 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
JSXCompressor - Delivering compressed JavaScript

The open source library JSXGraph (http://jsxgraph.org) contains utilities to read files which
have been compressed by the ZLIB (http://zlib.org) library. That means, JSXGraph has a pure 
JavaScript implementation of DEFLATE, unzip and base64_decode.
This can be used for delivering compressed JavaScript inside of an HTML file.
Of course, with todays browsers it depends on the transmission bandwidth if this is worthwile.
If the web server does not support compression of data, then this tool may be an option.

One possibility to compress the JavaScript source is to use PHP. The code below
writes the content of a JavaScript file as a compressed, base64 encoded string
into the HTML. This string can be accessed via the JavaScript variable jsxcompressed.
<!-- -------------------------------------------------------- -->
<?php
function jxgcompress($filename) 
{   
    if (file_exists($filename)) {
        $base64 = base64_encode(gzcompress(rawurlencode(file_get_contents($filename)),9));
        echo "var jxgcompressed = \"$base64\";\n";
    } else {
        throw new Exception("$filename not found");
    }
}
?>

<script type="text/javascript">
<?php 
    jxgcompress("./helloworld.js");
?>   
</script>
<!-- -------------------------------------------------------- -->

To uncompress and run this code, the following code has to be included:
<!-- -------------------------------------------------------- -->
<script src="./jsxcompressor.js" type="text/javascript"></script>
<script type="text/javascript">
eval(JXG.decompress(jxgcompressed));
</script>
<!-- -------------------------------------------------------- -->

Thats all.

The zip file jsxcompressor.zip contains two examples: testhelloworld.php and testjsxgraph.php

Enjoy,
Alfred Wassermann

(alfred.wassermann@uni-bayreuth.de)