Skip to content

Commit 1e5a93e

Browse files
committed
Add docs back again, required to build Github Pages
1 parent 689a039 commit 1e5a93e

7 files changed

Lines changed: 660 additions & 0 deletions

File tree

docs/index.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Human Behaviour Change Project Information Extraction (hbcpIE)
2+
The project executes the following action:
3+
4+
Indexes a collection of documents
5+
Store them in a Lucene index
6+
Extracts pieces of information from arbitrary passages.
7+
Running the project
8+
To run the project, simply type from your command-line.
9+

docs/javadoc.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home/jre/../bin/javadoc @options @packages

docs/options

Lines changed: 24 additions & 0 deletions
Large diffs are not rendered by default.

docs/package-list

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
api
2+
experiments
3+
extractor
4+
glm
5+
indexer
6+
nb
7+
normrsv
8+
ref
9+
servlets
10+
tableanalyzer
11+
wvec

docs/packages

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
ref
2+
tableanalyzer
3+
experiments
4+
servlets
5+
extractor
6+
nb
7+
api
8+
wvec
9+
glm
10+
indexer
11+
normrsv

docs/script.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
function show(type)
2+
{
3+
count = 0;
4+
for (var key in methods) {
5+
var row = document.getElementById(key);
6+
if ((methods[key] & type) != 0) {
7+
row.style.display = '';
8+
row.className = (count++ % 2) ? rowColor : altColor;
9+
}
10+
else
11+
row.style.display = 'none';
12+
}
13+
updateTabs(type);
14+
}
15+
16+
function updateTabs(type)
17+
{
18+
for (var value in tabs) {
19+
var sNode = document.getElementById(tabs[value][0]);
20+
var spanNode = sNode.firstChild;
21+
if (value == type) {
22+
sNode.className = activeTableTab;
23+
spanNode.innerHTML = tabs[value][1];
24+
}
25+
else {
26+
sNode.className = tableTab;
27+
spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
28+
}
29+
}
30+
}

0 commit comments

Comments
 (0)