Searched refs:changeset (Results 1 - 6 of 6) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/history/
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 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 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 DMonotoneRepository.java126 Executor getHistoryLogExecutor(File file, String changeset) argument
140 if (changeset != null) {
142 cmd.add(changeset);
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...]
H A DJDBCHistoryCache.java516 /** Statement that retrieves all the files touched by a given changeset. */
572 // Get the information about a changeset
582 // Fill the list of files touched by the changeset, if
585 int changeset = rs.getInt(5);
586 filePS.setInt(1, changeset);
747 // added this dir/changeset combination.

Completed in 178 milliseconds