Searched defs:hasHistory (Results 1 - 3 of 3) sorted by relevance

/opengrok/test/org/opensolaris/opengrok/history/
H A DFileHistoryCacheTest.java420 boolean hasHistory, boolean historyFileExists) throws Exception {
433 assertEquals(hasHistory, (retrievedHistory != null));
419 checkNoHistoryFetchRepo(String reponame, String filename, boolean hasHistory, boolean historyFileExists) argument
/opengrok/src/org/opensolaris/opengrok/history/
H A DHistoryGuru.java274 public boolean hasHistory(File file) { method in class:HistoryGuru
/opengrok/src/org/opensolaris/opengrok/web/
H A DPageConfig.java112 private Boolean hasHistory; field in class:PageConfig
353 if (redir == null && getPrefix() == Prefix.HIST_L && !hasHistory()) {
360 && !getRequestedRevision().isEmpty() && !hasHistory()) {
598 * @see HistoryGuru#hasHistory(File)
600 public boolean hasHistory() { method in class:PageConfig
601 if (hasHistory == null) {
602 hasHistory = HistoryGuru.getInstance().hasHistory(getResourceFile());
604 return hasHistory;
615 && HistoryGuru.getInstance().hasHistory(getResourceFil
[all...]

Completed in 126 milliseconds