-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopers.html
More file actions
114 lines (93 loc) · 5.68 KB
/
developers.html
File metadata and controls
114 lines (93 loc) · 5.68 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html lang="en">
<head><!-- Head -->
<title>For developers: CoCoViLa - Compiler Compiler for Visual Languages</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="bootstrap/bootstrap.css">
<link rel="stylesheet" href="css/customize.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="bootstrap/bootstrap.min.js"></script>
<script src="js/load.js"></script>
<script src="js/ZeroClipboard.js"></script>
<link rel="stylesheet" href="fonts/octicons.css">
<script language="JavaScript">
////copy to clip
var clip = null;
clip.addEventListener( 'onComplete', my_complete );
function init() {
clip = new ZeroClipboard.Client();
clip.setHandCursor( true );
/*clip.addEventListener( 'complete', function(client, text) {
alert(" Your alert goes gere : " + text + "\n Content already copied on clipboard !");
} );*/
}
function move_swf(ee) {
//copything = document.getElementById(ee.id+"_text").value;
//alert(document.getElementById(ee.id).getAttributeNode("tocopy").value);
copything = document.getElementById(ee.id).getAttributeNode("tocopy").value;
clip.setText(copything);
if (clip.div) {
clip.receiveEvent('mouseout', null);
clip.reposition(ee.id);
}
else{ clip.glue(ee.id);
}
clip.receiveEvent('mouseover', null);
}
</script>
</head>
<body id="body-developers" onload="init();">
<div id="top-nav"></div>
<div class="container">
<!-- Panel1 -->
<div class="jumbotron">
<h1>Development</h1>
<p class="lead"> The project is developed in public and the source code is distributed under the GNU GPL. The <a href="https://github.com/CoCoViLa/CoCoViLa" title="CoCoViLa project's development" class="colored">source code repository</a> is hosted on
GitHub. The development is coordinated by the <a href="http://www.cs.ioc.ee/msg/" title="Modeling and Simulation Group at IoC" class="colored">Modeling and Simulation Group</a> at the <a href="http://cs.ioc.ee/" title="Software Science Laboratory" class="colored">Software Science Laboratory</a> of the <a href="http://www.ioc.ee/" title="Institute of Cybernetics" class="colored">Institute of Cybernetics</a>.
</p>
<!-- <a href="http://sourceforge.net/projects/cocovila/files/CoCoViLa/" class="btn btn-success btn-lg"><span class="glyphicon glyphicon-download"></span> Sourceforge</a> -->
<a href="https://github.com/CoCoViLa/CoCoViLa" class="btn btn-success btn-lg"><span class="glyphicon glyphicon-new-window"></span> View on GitHub</a>
<a href="https://github.com/CoCoViLa/CoCoViLa/wiki" class="btn btn-success btn-lg"><span class="glyphicon glyphicon-new-window"></span> Wiki</a>
</div>
<!-- Panel1 end-->
<!-- Panel2 -->
<div class="panel panel-default">
<div class="panel-body">
<h2>Building</h2>
<p class="lead">(requires Apache Maven <a href="http://maven.apache.org/">http://maven.apache.org/</a>)</p>
<p class="lead"><code>cd <path to CoCoViLa>/</code>
<button id="text1" onMouseOver="move_swf(this)" type="button" class="btn btn-default clip_button" aria-label="copy" tocopy="cd <path to CoCoViLa>/"> <span class="octicon octicon-clippy"></span></span>
</button>
</p>
<p class="lead"><code>mvn clean install</code>
<button id="text2" onMouseOver="move_swf(this)" type="button" class="btn btn-default clip_button" aria-label="copy" tocopy="mvn clean install"> <span class="octicon octicon-clippy"></span></span>
</button>
</p>
<h2>Running CoCoViLa Scheme Editor</h2>
<p class="lead"><code>mvn exec:exec -Prun-se</code>
<button id="text3" onMouseOver="move_swf(this)" type="button" class="btn btn-default clip_button" aria-label="copy" tocopy="mvn exec:exec -Prun-se"> <span class="octicon octicon-clippy"></span></span>
</button>
</p>
<h2>Running CoCoViLa Class Editor</h2>
<p class="lead"><code>mvn exec:exec -Prun-ce</code>
<button id="text4" onMouseOver="move_swf(this)" type="button" class="btn btn-default clip_button" aria-label="copy" tocopy="mvn exec:exec -Prun-ce"> <span class="octicon octicon-clippy"></span></span>
</button>
</p>
</div>
</div>
<!-- Panel2 end -->
<!-- Panel3 -->
<div class="jumbotron">
<h1> API Documentation </h1>
<p class="lead">CoCoViLa API documentation generated by Javadoc can be browsed online. For CoCoViLa package developers the most relevant Java package is ee.ioc.cs.vsle.api, especially the ProgramContext class in that package.</p>
<a href="http://www.cs.ioc.ee/cocovila/api/index.html" class="btn btn-success btn-lg"><span class="glyphicon glyphicon-download"></span> CoCoViLa API documentation </a>
<h1> CoCoViLa package XML description (DTD)</h1>
<p class="lead">CoCoViLa package XML description (DTD) (If your browser refuses to display the content of this file you can try downloading and saving the file by right-clicking the link. You can then open the file from the local disk using your favourite text editor.)</p>
<p><a href="files/developers/05_package_dtd.txt" class="btn btn-success btn-lg"><span class="glyphicon glyphicon-download"></span> CoCoViLa package XML description (DTD) </a> </p>
</div>
</div>
<!-- Panel3 end -->
<div id="footer"></div>
</body>
</html>