Subversion Repositories wimsdev

Rev

Rev 15332 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 15332 Rev 16489
Line 28... Line 28...
28
* Mailing List/Google Group: https://groups.google.com/group/jsxgraph
28
* Mailing List/Google Group: https://groups.google.com/group/jsxgraph
29
* JSXGraph questions at https://stackoverflow.com/search?tab=newest&q=jsxgraph
29
* JSXGraph questions at https://stackoverflow.com/search?tab=newest&q=jsxgraph
30
* jsFiddle template: https://jsfiddle.net/8kep9syd/
30
* jsFiddle template: https://jsfiddle.net/8kep9syd/
31
* Moodle filter: https://github.com/jsxgraph/moodle-filter_jsxgraph
31
* Moodle filter: https://github.com/jsxgraph/moodle-filter_jsxgraph
32
* (outdated: SourceForge project site: https://sf.net/projects/jsxgraph)
32
* (outdated: SourceForge project site: https://sf.net/projects/jsxgraph)
33
* CDN: Embed JSXGraph via
33
* CDNs: Embed JSXGraph via
34
 
34
 
35
```
35
```
36
<script type="text/javascript" charset="UTF-8"
36
<script type="text/javascript" charset="UTF-8"
37
 src="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.99.7/jsxgraphcore.js"></script>
37
 src="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraphcore.js"></script>
38
<link rel="stylesheet"
38
<link rel="stylesheet"
-
 
39
 type="text/css" href="https://cdn.jsdelivr.net/npm/jsxgraph/distrib/jsxgraph.css" />
-
 
40
 ```
-
 
41
 
-
 
42
or
-
 
43
 
-
 
44
```
-
 
45
<script type="text/javascript" charset="UTF-8"
-
 
46
 src="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/1.2.3/jsxgraphcore.js"></script>
-
 
47
<link rel="stylesheet"
39
 type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/0.99.7/jsxgraph.css" />
48
 type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/jsxgraph/1.2.3/jsxgraph.css" />
40
```
49
```
41
 
50
 
42
Please report bugs to our issue tracking system found at
51
Please report bugs to our issue tracking system found at
43
https://github.com/jsxgraph/jsxgraph/issues
52
https://github.com/jsxgraph/jsxgraph/issues
44
 
53
 
45
Usage
54
Usage
46
-----
55
-----
47
 
56
 
-
 
57
Include 
-
 
58
 
-
 
59
* `jsxgraphcore.js` and 
-
 
60
* `jsxgraph.css` and, 
48
Include `jsxgraphcore.js` and `jsxgraph.css` and, if required, one or more file readers in your HTML
61
* if required, one or more file readers 
-
 
62
 
-
 
63
from a CDN or a local version in your HTML file. 
-
 
64
 
-
 
65
For developing content, it is recommended to include `jsxgraphsrc.js` (`jsxgraphcore.js` is the minified version of `jsxgraphsrc.js`).
49
file. For further usage instructions please consult our [wiki](https://jsxgraph.org/wiki/)
66
For further usage instructions please consult our [wiki](https://jsxgraph.org/wiki/)
50
especially our [tutorials](https://jsxgraph.org/wiki/index.php/Documentation)
67
especially our [tutorials](https://jsxgraph.org/wiki/index.php/Documentation)
51
or [the API reference docs](https://jsxgraph.org/docs/).
68
or [the API reference docs](https://jsxgraph.org/docs/).
52
 
69
 
53
Build and develop JSXGraph
70
Build and develop JSXGraph
54
--------------
71
--------------
Line 58... Line 75...
58
2) In order to build and develop *JSXGraph* you need [node.js](https://nodejs.org/) v0.6+. First, install all
75
2) In order to build and develop *JSXGraph* you need [node.js](https://nodejs.org/) v0.6+. First, install all
59
dependencies required to build JSXGraph using npm in the JSXGraph root directory: `$ npm install`.
76
dependencies required to build JSXGraph using npm in the JSXGraph root directory: `$ npm install`.
60
This will create a new subdirectory ```node_modules``` in the JSXGraph root directory which holds
77
This will create a new subdirectory ```node_modules``` in the JSXGraph root directory which holds
61
all tools and libraries required to build ```jsxgraphcore.js```. 
78
all tools and libraries required to build ```jsxgraphcore.js```. 
62
 
79
 
63
3) To build JSXGraph run `$ make core` which will output an unminified version of ```jsxgraphcore.js``` in ```build/bin```. To build a minified version run `$ make core-min`. This will produce the files `jsxgraphsrc.js` (not minified) and `jsxgraphcore.js` (minified) in directory `distrib`.
80
3) To build JSXGraph run `$ make core` which will output an unminified version ```jsxgraphsrc.js```  and the minified version ```jsxgraphcore.js``` in ```distrib```.
64
 
81
 
65
 
82
 
66
License
83
License
67
-------
84
-------
68
 
85
 
69
    Copyright 2008-2020
86
    Copyright 2008-2022
70
        Matthias Ehmann,
87
        Matthias Ehmann,
71
        Michael Gerhaeuser,
88
        Michael Gerhaeuser,
72
        Carsten Miller,
89
        Carsten Miller,
73
        Emmanuel Ostenne,
90
        Emmanuel Ostenne,
74
        Bianca Valentin,
91
        Bianca Valentin,