Skip to content

Commit

Permalink
Merge branch 'master' of github.com:0xdata/h2o
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Normoyle committed Sep 18, 2014
2 parents 7ae343f + c821b21 commit d48d6b5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/java/water/api/RequestServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,10 +134,8 @@ public enum API_VERSION {
Request.addToNavbar(registerRequest(new Timeline()), "Timeline", "Admin");
Request.addToNavbar(registerRequest(new JProfile()), "Profiler", "Admin");
Request.addToNavbar(registerRequest(new JStack()), "Stack Dump", "Admin");
Request.addToNavbar(registerRequest(new Debug()), "Debug Dump", "Admin");
Request.addToNavbar(registerRequest(new LogView()), "Inspect Log", "Admin");
Request.addToNavbar(registerRequest(new UnlockKeys()), "Unlock Keys", "Admin");
Request.addToNavbar(registerRequest(new NetworkTest()),"Network Test", "Admin");
Request.addToNavbar(registerRequest(new NetworkTest()), "Network Test", "Admin");
Request.addToNavbar(registerRequest(new Shutdown()), "Shutdown", "Admin");

// Help and Tutorials
Expand All @@ -155,12 +153,15 @@ public enum API_VERSION {
registerRequest(new hex.LR2());
registerRequest(new ReBalance());
registerRequest(new NFoldFrameExtractPage());
registerRequest(new Console());
registerRequest(new GapStatistic());
registerRequest(new CreateFrame());
registerRequest(new InsertMissingValues());
registerRequest(new KillMinus3());
registerRequest(new SaveModel());
registerRequest(new LoadModel());
registerRequest(new Debug());
registerRequest(new UnlockKeys());
} else {
Request.addToNavbar(registerRequest(new hex.LR2()), "Linear Regression2", "Beta");
Request.addToNavbar(registerRequest(new ReBalance()), "ReBalance", "Beta");
Expand All @@ -172,6 +173,8 @@ public enum API_VERSION {
Request.addToNavbar(registerRequest(new KillMinus3()), "Kill Minus 3", "Beta");
Request.addToNavbar(registerRequest(new SaveModel()), "Save Model", "Beta");
Request.addToNavbar(registerRequest(new LoadModel()), "Load Model", "Beta");
Request.addToNavbar(registerRequest(new Debug()), "Debug Dump (floods log file)","Beta");
Request.addToNavbar(registerRequest(new UnlockKeys()), "Unlock Keys (use with caution)","Beta");
}

registerRequest(new Up());
Expand Down

0 comments on commit d48d6b5

Please sign in to comment.