Skip to content

Commit

Permalink
Add docs back again, required to build Github Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinGleize committed Jul 7, 2021
1 parent 689a039 commit 1e5a93e
Show file tree
Hide file tree
Showing 7 changed files with 660 additions and 0 deletions.
9 changes: 9 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Human Behaviour Change Project Information Extraction (hbcpIE)
The project executes the following action:

Indexes a collection of documents
Store them in a Lucene index
Extracts pieces of information from arbitrary passages.
Running the project
To run the project, simply type from your command-line.

1 change: 1 addition & 0 deletions docs/javadoc.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/Library/Java/JavaVirtualMachines/jdk1.8.0_111.jdk/Contents/Home/jre/../bin/javadoc @options @packages
24 changes: 24 additions & 0 deletions docs/options

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions docs/package-list
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
api
experiments
extractor
glm
indexer
nb
normrsv
ref
servlets
tableanalyzer
wvec
11 changes: 11 additions & 0 deletions docs/packages
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ref
tableanalyzer
experiments
servlets
extractor
nb
api
wvec
glm
indexer
normrsv
30 changes: 30 additions & 0 deletions docs/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
function show(type)
{
count = 0;
for (var key in methods) {
var row = document.getElementById(key);
if ((methods[key] & type) != 0) {
row.style.display = '';
row.className = (count++ % 2) ? rowColor : altColor;
}
else
row.style.display = 'none';
}
updateTabs(type);
}

function updateTabs(type)
{
for (var value in tabs) {
var sNode = document.getElementById(tabs[value][0]);
var spanNode = sNode.firstChild;
if (value == type) {
sNode.className = activeTableTab;
spanNode.innerHTML = tabs[value][1];
}
else {
sNode.className = tableTab;
spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>";
}
}
}
Loading

0 comments on commit 1e5a93e

Please sign in to comment.