This repository has been archived by the owner on May 25, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathjobad_repo.js
67 lines (61 loc) · 2.07 KB
/
jobad_repo.js
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
jobad_repo.js
Official JOBAD Repository
Copyright (C) 2013 KWARC Group <kwarc.info>
This file is part of JOBAD.
JOBAD is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
JOBAD is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with JOBAD. If not, see <http://www.gnu.org/licenses/>.
*/
JOBAD.repo.config({
"provides": [ //which modules are available
/*
Core Modules
Modules from the JOBAD Core
*/
"template",
"jobad.debug",
"jobad.config",
"jobad.folding",
"mathjax.mathjax",
"test.click",
"test.hover",
"test.menu1",
"test.menu2",
"test.sidebar",
"math.satree",
"math.clipboard",
"math.showsource",
"math.wolframalpha"
],
"at": {
/*
Core Modules
loaded from local copy
*/
"template": "core/template/template.js", //make a manual override of location of files.
"jobad.debug": "core/jobad/jobad.debug.js",
"jobad.config": "core/jobad/jobad.config.js",
"jobad.folding": "core/jobad/jobad.folding.js",
"mathjax.mathjax": "core/mathjax.mathjax.js",
"test.click": "core/test/test.click.js",
"test.hover": "core/test/test.hover.js",
"test.menu1": "core/test/test.menu1.js",
"test.menu2": "core/test/test.menu2.js",
"test.sidebar": "core/test/test.sidebar.js",
"math.satree": "satree/satree.min.js",
"math.clipboard":"MathMenu/math.clipboard.js",
"math.showsource":"MathMenu/math.showsource.js",
"math.wolframalpha":"MathMenu/math.wolframalpha.js",
},
"versions": ["3.1.8", "3.1.9", "3.2.0", "3.2.1"], //compatible JOBAD versions
"name": "Official JOBAD Modules Repository", //name
"description": "The official JOBAD Modules repository" //description
});