-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (84 loc) · 4.88 KB
/
index.html
File metadata and controls
132 lines (84 loc) · 4.88 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>JPC</title>
<link rel="stylesheet" href="/styles/publication/sc.tutorial.css" />
<link rel="stylesheet" href="/styles/publication/sc.tooglejs.css" />
<script type="text/javascript" src="/js/jquery.min.js" charset="utf-8"></script>
<script type="text/javascript" src="/js/ace-builds/src-noconflict/ace.js" charset="utf-8"></script>
<script type="text/javascript" src="/js/publication/jquery.tableofcontents.min.js" charset="utf-8"></script>
<script type="text/javascript" src="/js/publication/jquery.sc.publication.js" charset="utf-8"></script>
<script type="text/javascript">//<![CDATA[
(function ($) {
$(document).ready(function(){
$('#table_of_content_entries').tableOfContents('#content', {startLevel:2, depth: 3});
$.prettifyCodeSnippets("eclipse");
//$.prettifyCodeSnippets("solarized_light");
$.configureFootnotes();
})
})(jQuery);
//]]></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-47515052-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
<body>
<h1 class="commentedH1">The JPC Library</h1>
A Java-Prolog integration library inspired by <a href="https://code.google.com/p/google-gson/" title="Google's Gson">Google's Gson</a>.
<div id="table_of_content">
<strong>Contents</strong>
<ol id="table_of_content_entries"></ol>
</div>
<div id="content">
<h2>Documentation</h2>
<ul>
<li>A <a href="short_paper.html" title="JPC and LogicObjects overview">short paper</a> on the automatic integration of hybrid Java-Prolog entities.</li>
<li>JPC <a href="architecture.html" title="Architecture">architecture</a>: Describes the JPC architecture and design.</li>
<li>JPC <a href="installation_guide.html" title="Installation guide">installation guide</a>: A step by step guide to install JPC.</li>
<li>JPC <a href="user_manual.html" title="User manual">user manual</a>: Explains how to use JPC in your code.</li>
<li>JPC <a href="javadocs/index.html" title="API documentation">API</a>: Javadocs for the current JPC release.</li>
<li>JPC <a href="publications.html" title="Publications">publications</a>: Publications related to JPC.</li>
</ul>
<h2>Open-Source Software</h2>
<p>
The following is a list of the open-source software used by JPC:
</p>
<ul>
<li> Several open-source <a href="architecture.html#compatiblePrologEngines" title="Prolog engines">Prolog engines</a> (development) </li>
<li> Several open-source <a href="architecture.html#jpcDrivers" title="Java-Prolog bridge libraries">Java-Prolog bridge libraries</a> (drivers development) </li>
<li> <a href="http://logtalk.org/" title="Logtalk">Logtalk</a> (development) </li>
<li> <a href="https://github.com/jgum" title="JGum">JGum</a> (development) </li>
<li> <a href="https://github.com/jconverter" title="JConverter">JConverter</a> (development) </li>
<li> <a href="https://code.google.com/p/reflections/" title="Reflections">Reflections</a> (development) </li>
<li> <a href="https://code.google.com/p/guava-libraries/" title="Google's Guava">Google's Guava</a> (development) </li>
<li> <a href="https://code.google.com/p/google-gson/" title="Google's Gson">Google's Gson</a> (development, parsing of settings file) </li>
<li> <a href="http://www.csg.ci.i.u-tokyo.ac.jp/~chiba/javassist/" title="Javassist">Javassist</a> (LogicObjects development) </li>
<li> <a href="http://slf4j.org/" title="SLF4J">SLF4J</a> (logging) </li>
<li> <a href="http://logging.apache.org/log4j/" title="Apache log4j">Apache log4j</a> (logging) </li>
<li> <a href="http://junit.org/" title="JUnit">JUnit</a> (testing) </li>
<li> <a href="http://maven.apache.org/" title="Apache Maven">Apache Maven</a> (project management) </li>
<li> <a href="http://git-scm.com/" title="Git">Git</a> (source code version control) </li>
</ul>
<h2>License</h2>
<p>
JPC is open source, distributed under the terms of this <a href="https://github.com/java-prolog-connectivity/jpc/blob/master/LICENSE.txt" title="License">license</a>.
</p>
<h2>Source Code</h2>
<p>
JPC sources are available at <a href="https://github.com/java-prolog-connectivity/jpc" title="JPC at GitHub">GitHub</a>.
</p>
<h2 id="contact">Contact</h2>
<p>
Constructive feedback and criticism, questions or a wish list can be sent to <em>[uclouvain(dot)be (that symbol for emails) sergio(dot)castro]</em> (inversing the order).
Or just drop me a line if you want to say hello ! :-)
</p>
</div> <!-- end of content -->
</body>
</html>