Searched defs:history (Results 1 - 25 of 59) sorted by relevance

123

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DAccuRevHistoryParser.java23 package org.opensolaris.opengrok.history;
41 * Parse source history for a AccuRev Repository
49 private History history; field in class:AccuRevHistoryParser
53 * Parse the history for the specified file.
55 * @param file the file to parse history for
57 * @return the file's history
61 history = null;
66 * no history is available, create fake. */
71 history = new History(entries);
75 /* Try again because there was no 'keep' history
[all...]
H A DClearCaseHistoryParser.java20 package org.opensolaris.opengrok.history;
42 private History history; field in class:ClearCaseHistoryParser
52 throw new HistoryException("Failed to get history for '" +
56 return history;
58 throw new HistoryException("Failed to get history for '" +
65 * into the history field.
80 // skip this history entry
121 history = new History();
122 history.setHistoryEntries(entries);
129 * @return The parsed history
[all...]
H A DHistoryReader.java24 package org.opensolaris.opengrok.history;
33 * Class for reading history entries in a way suitable for indexing by Lucene.
40 HistoryReader(History history) { argument
41 entries = history.getHistoryEntries();
H A DHistory.java25 package org.opensolaris.opengrok.history;
31 * Class representing the history of a file.
58 * @return The list of entries in this history
65 * Check if at least one history entry has a file list.
H A DHistoryException.java25 package org.opensolaris.opengrok.history;
28 * Exception thrown when retrieval or manipulation of history information
H A DSCCSget.java24 package org.opensolaris.opengrok.history;
H A DCVSHistoryParser.java24 package org.opensolaris.opengrok.history;
49 private History history; field in class:CVSHistoryParser
54 * into the history field.
66 history = new History();
121 history.setHistoryEntries(entries);
125 * Parse the history for the specified file.
127 * @param file the file to parse history for
129 * @return object representing the file's history
138 throw new HistoryException("Failed to get history for '" +
142 throw new HistoryException("Failed to get history fo
[all...]
H A DRCSHistoryParser.java24 package org.opensolaris.opengrok.history;
96 History history = new History();
97 history.setHistoryEntries(entries);
98 return history;
105 private void traverse(Node n, List<HistoryEntry> history) { argument
109 traverse(n.getChild(), history);
114 traverse(b, history);
124 history.add(entry);
H A DDirectoryHistoryReader.java23 package org.opensolaris.opengrok.history;
56 * Generate SCM history for directory by using the Index database. (Please note
75 History history; field in class:DirectoryHistoryReader
141 logger.warning("An error occured while getting history reader: "
159 history = new History(entries);
167 * Get the history entry collection of this instance.
168 * @return a possible empty history
171 return history;
H A DHistoryCache.java23 package org.opensolaris.opengrok.history;
32 * Create and initialize an empty history cache if one doesn't exist
40 * Check whether this cache implementation can store history for the given
44 * @return {@code true} if this cache implementation can store history
50 * Retrieve the history for the given path, either from the cache or by
51 * parsing the history information in the repository.
53 * @param path The path to retrieve history for
55 * @param repository The external repository to read the history from
57 * @param withFiles If {@code true} the returned history will contain
60 * @param isDir If {@code null} the returned history typ
78 store(History history, Repository repository) argument
[all...]
H A DGitHistoryParser.java23 package org.opensolaris.opengrok.history;
55 private History history; field in class:GitHistoryParser
61 * into the history field.
83 history = new History();
115 // TBD: Perhaps we should add this to the history entry as well
193 history.setHistoryEntries(entries);
197 * Parse the history for the specified file.
199 * @param file the file to parse history for
201 * @return object representing the file's history
214 throw new HistoryException("Failed to get history fo
[all...]
H A DBazaarHistoryParser.java23 package org.opensolaris.opengrok.history;
64 throw new HistoryException("Failed to get history for '" +
68 throw new HistoryException("Failed to get history for '" +
87 * into the history field.
140 logger.warning("Failed to parse history timestamp "
196 * @return The parsed history
H A DMonotoneHistoryParser.java24 package org.opensolaris.opengrok.history;
45 * Class used to parse the history log from Monotone
63 * 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
67 * @param file the file or directory to get history for
70 * @return history for the specified file or directory
71 * @throws HistoryException if an error happens when parsing the history
79 throw new HistoryException("Failed to get history for '"
83 throw new HistoryException("Failed to get history for '"
95 * into the history fiel
[all...]
H A DRCSget.java24 package org.opensolaris.opengrok.history;
H A DRepositoryFactory.java24 package org.opensolaris.opengrok.history;
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DSCCSRepositoryTest.java25 package org.opensolaris.opengrok.history;
H A DAnnotationTest.java25 package org.opensolaris.opengrok.history;
H A DBazaarHistoryParserTest.java24 package org.opensolaris.opengrok.history;
70 assertTrue("Should not contain any history entries",
H A DBazaarRepositoryTest.java24 package org.opensolaris.opengrok.history;
H A DCVSHistoryParserTest.java24 package org.opensolaris.opengrok.history;
69 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
H A DCVSRepositoryTest.java24 package org.opensolaris.opengrok.history;
H A DClearCaseHistoryParserTest.java24 package org.opensolaris.opengrok.history;
H A DGitHistoryParserTest.java24 package org.opensolaris.opengrok.history;
73 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
128 assertTrue("Should contain three history entries", 3 == result.getHistoryEntries().size());
191 assertTrue("Should contain two history entries", 2 == result.getHistoryEntries().size());
276 assertTrue("Should contain two history entries", 2 == result.getHistoryEntries().size());
H A DGitRepositoryTest.java24 package org.opensolaris.opengrok.history;
H A DMercurialRepositoryTest.java25 package org.opensolaris.opengrok.history;
109 * argument doesn't match any of the revisions in the history.

Completed in 22 milliseconds

123