Searched refs:sinceRevision (Results 1 - 10 of 10) sorted by relevance

/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DRepository.java89 * @param sinceRevision the revision right before the first one to return,
94 History getHistory(File file, String sinceRevision) argument
99 if (sinceRevision != null) {
110 if (sinceRevision == null) {
117 if (sinceRevision.equals(entry.getRevision())) {
123 removeAndVerifyOldestChangeset(partial, sinceRevision);
259 * @param sinceRevision if non-null, incrementally update the cache with
265 final void createCache(HistoryCache cache, String sinceRevision) argument
286 history = getHistory(directory, sinceRevision);
288 if (sinceRevision
[all...]
H A DBazaarHistoryParser.java55 History parse(File file, String sinceRevision) throws HistoryException { argument
57 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
73 if (sinceRevision != null) {
74 repository.removeAndVerifyOldestChangeset(entries, sinceRevision);
H A DSubversionHistoryParser.java142 * @param sinceRevision the revision number immediately preceding the first
146 History parse(File file, SubversionRepository repos, String sinceRevision) argument
153 Executor executor = repos.getHistoryLogExecutor(file, sinceRevision);
164 // sinceRevision. Remove it.
165 if (sinceRevision != null) {
166 repos.removeAndVerifyOldestChangeset(entries, sinceRevision);
H A DBazaarRepository.java61 Executor getHistoryLogExecutor(final File file, final String sinceRevision) argument
80 if (sinceRevision != null) {
82 cmd.add(sinceRevision + "..-1");
256 History getHistory(File file, String sinceRevision) throws HistoryException { argument
258 History result = new BazaarHistoryParser(this).parse(file, sinceRevision);
H A DSubversionRepository.java152 * @param sinceRevision the revision number immediately preceding the first
156 Executor getHistoryLogExecutor(final File file, String sinceRevision) { argument
171 if (sinceRevision != null) {
173 // We would like to use sinceRevision+1 here, but if no new
174 // revisions have been added after sinceRevision, it would fail
175 // because there is no such revision as sinceRevision+1. Instead,
177 cmd.add("BASE:" + sinceRevision);
221 History getHistory(File file, String sinceRevision) argument
223 return new SubversionHistoryParser().parse(file, this, sinceRevision);
H A DGitHistoryParser.java153 History parse(File file, Repository repos, String sinceRevision) throws HistoryException { argument
157 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DGitRepository.java117 Executor getHistoryLogExecutor(final File file, String sinceRevision) argument
133 if (sinceRevision != null) {
134 cmd.add(sinceRevision + "..");
395 History getHistory(File file, String sinceRevision) argument
398 History result = new GitHistoryParser().parse(file, this, sinceRevision);
H A DHistoryGuru.java451 private void createCache(Repository repository, String sinceRevision) { argument
469 repository.createCache(historyCache, sinceRevision);
617 String sinceRevision = null;
620 sinceRevision = historyCache.getLatestCachedRevision(repository);
621 if (sinceRevision == null) {
630 createCache(getRepository(file), sinceRevision);
H A DMonotoneRepository.java250 History getHistory(File file, String sinceRevision) argument
252 return new MonotoneHistoryParser(this).parse(file, sinceRevision);
H A DMercurialRepository.java339 History getHistory(File file, String sinceRevision) argument
342 History result = new MercurialHistoryParser(this).parse(file, sinceRevision);

Completed in 45 milliseconds