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

123

/opengrok-sun/src/org/opensolaris/opengrok/history/
H A DAccuRevHistoryParser.java23 package org.opensolaris.opengrok.history;
40 * Parse source history for a AccuRev Repository
47 private History history; field in class:AccuRevHistoryParser
51 * Parse the history for the specified file.
53 * @param file the file to parse history for
55 * @return object representing the file's history
62 history = null;
69 * workarea, no history is available, create fake.
78 history = new History(entries);
89 * Try again because there was no 'keep' history
[all...]
H A DClearCaseHistoryParser.java20 package org.opensolaris.opengrok.history;
41 private History history; field in class:ClearCaseHistoryParser
51 throw new HistoryException("Failed to get history for: \"" +
55 return history;
57 throw new HistoryException("Failed to get history for: \"" +
64 * into the history field.
79 // skip this history entry
119 history = new History();
120 history.setHistoryEntries(entries);
127 * @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 DBazaarTagEntry.java4 package org.opensolaris.opengrok.history;
H A DGitTagEntry.java4 package org.opensolaris.opengrok.history;
H A DHistory.java24 package org.opensolaris.opengrok.history;
30 * Class representing the history of a file.
57 * @return The list of entries in this history
64 * Check if at least one history entry has a file list.
79 * Check if at least one history entry has a tag list.
H A DHistoryException.java25 package org.opensolaris.opengrok.history;
28 * Exception thrown when retrieval or manipulation of history information
H A DMercurialTagEntry.java4 package org.opensolaris.opengrok.history;
H A DRepositoryFactory.java24 package org.opensolaris.opengrok.history;
H A DSCCSget.java24 package org.opensolaris.opengrok.history;
H A DCVSHistoryParser.java23 package org.opensolaris.opengrok.history;
48 private History history; field in class:CVSHistoryParser
53 * into the history field.
65 history = new History();
149 history.setHistoryEntries(entries);
153 * Parse the history for the specified file.
155 * @param file the file to parse history for
157 * @return object representing the file's history
166 throw new HistoryException("Failed to get history for: \"" +
170 throw new HistoryException("Failed to get history fo
[all...]
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 file, either from the cache or by
51 * parsing the history information in the repository.
53 * @param file The file to retrieve history for
55 * @param repository The external repository to read the history from (can
57 * @param withFiles A flag saying whether or not the returned history
61 * @throws HistoryException if the history canno
73 store(History history, Repository repository) argument
[all...]
H A DRCSHistoryParser.java24 package org.opensolaris.opengrok.history;
90 History history = new History();
91 history.setHistoryEntries(entries);
92 return history;
99 private void traverse(Node n, List<HistoryEntry> history) { argument
103 traverse(n.getChild(), history);
108 traverse(b, history);
118 history.add(entry);
H A DDirectoryHistoryReader.java23 package org.opensolaris.opengrok.history;
54 * Generate SCM history for directory by using the Index database. (Please note
72 History history; field in class:DirectoryHistoryReader
124 OpenGrokLogger.getLogger().log(Level.WARNING, "An error occured while getting history reader", e);
140 history = new History(entries);
153 return history;
H A DGitHistoryParser.java23 package org.opensolaris.opengrok.history;
51 private History history; field in class:GitHistoryParser
56 * into the history field.
77 history = new History();
143 history.setHistoryEntries(entries);
147 * Parse the history for the specified file.
149 * @param file the file to parse history for
151 * @return object representing the file's history
161 throw new HistoryException("Failed to get history for: \"" +
165 throw new HistoryException("Failed to get history fo
[all...]
H A DBazaarHistoryParser.java23 package org.opensolaris.opengrok.history;
61 throw new HistoryException("Failed to get history for: \"" +
65 throw new HistoryException("Failed to get history for: \"" +
82 * into the history field.
132 "Failed to parse history timestamp:" + s, e);
182 * @return The parsed history
H A DMercurialHistoryParser.java24 package org.opensolaris.opengrok.history;
60 * Parse the history for the specified file or directory. If a changeset is
61 * specified, only return the history from the changeset right after the
64 * @param file the file or directory to get history for
67 * @return history for the specified file or directory
68 * @throws HistoryException if an error happens when parsing the history
76 throw new HistoryException("Failed to get history for: \"" +
80 throw new HistoryException("Failed to get history for: \"" +
97 * into the history field.
H A DMonotoneHistoryParser.java24 package org.opensolaris.opengrok.history;
43 * Class used to parse the history log from Monotone
59 * Parse the history for the specified file or directory. If a changeset is
60 * specified, only return the history from the changeset right after the
63 * @param file the file or directory to get history for
66 * @return history for the specified file or directory
67 * @throws HistoryException if an error happens when parsing the history
75 throw new HistoryException("Failed to get history for: \"" +
79 throw new HistoryException("Failed to get history for: \"" +
88 * into the history fiel
[all...]
H A DRCSget.java24 package org.opensolaris.opengrok.history;
/opengrok-sun/test/org/opensolaris/opengrok/history/
H A DSCCSRepositoryTest.java25 package org.opensolaris.opengrok.history;
H A DBazaarHistoryParserTest.java24 package org.opensolaris.opengrok.history;
76 assertTrue("Should not contain any history entries", 0 == result.getHistoryEntries().size());
H A DBazaarRepositoryTest.java24 package org.opensolaris.opengrok.history;
H A DCVSHistoryParserTest.java23 package org.opensolaris.opengrok.history;
68 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;

Completed in 1105 milliseconds

123