-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add docs back again, required to build Github Pages
- Loading branch information
1 parent
689a039
commit 1e5a93e
Showing
7 changed files
with
660 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>"; | ||
} | ||
} | ||
} |
Oops, something went wrong.