Searched defs:changeset (Results 1 - 5 of 5) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DMonotoneHistoryParser.java63 * Parse the history for the specified file or directory. If a changeset is
64 * specified, only return the history from the changeset right after the
68 * @param changeset the changeset right before the first one to fetch, or
73 History parse(File file, String changeset) throws HistoryException { argument
75 Executor executor = repository.getHistoryLogExecutor(file, changeset);
H A DMercurialHistoryParser.java64 * Parse the history for the specified file or directory. If a changeset is
65 * specified, only return the history from the changeset right after the
69 * @param changeset the changeset right before the first one to fetch, or
74 History parse(File file, String changeset) throws HistoryException { argument
76 Executor executor = repository.getHistoryLogExecutor(file, changeset);
88 // If a changeset to start from is specified, remove that changeset
90 // Also check that the specified changeset was found, otherwise throw
92 if (changeset !
[all...]
H A DMonotoneRepository.java126 Executor getHistoryLogExecutor(File file, String changeset) argument
140 if (changeset != null) {
142 cmd.add(changeset);
H A DAnnotation.java165 String changeset; field in class:Annotation.Desc
219 Desc(String changeset, String msg, String user, Date date) { argument
220 this.changeset = changeset;
228 html = "changeset: " + encode(changeset, EOL) + EOL
239 "<b>Changeset</b>: " + encode(changeset, BR) + BR
253 void addDesc(String revision, String changeset, String msg, String user, argument
260 info.desc = new Desc(changeset, msg, user, date);
H A DMercurialRepository.java73 "changeset: {rev}:{node|short}\\n"
78 "changeset: {rev}:{node|short}:{node}\\n"
126 out.write("changeset = \"");
240 * @param changeset the oldest changeset to return from the executor,
244 Executor getHistoryLogExecutor(File file, String changeset) argument
263 if (changeset != null) {
265 String[] parts = changeset.split(":");
269 throw new HistoryException("Don't know how to parse changeset "
270 + changeset
[all...]

Completed in 193 milliseconds