/opengrok-sun/ext/SampleRazorRepository/Repository/OpenGrokSample/RAZOR_UNIVERSE/DOMAIN_01/Simple/History/SimpleCProgram/ |
H A D | header.h | 2 ##TITLE: Introduced file
|
/opengrok-sun/platform/solaris/ips/ |
H A D | create.sh | 5 # The contents of this file are subject to the terms of the 7 # You may not use this file except in compliance with the License. 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE. 66 PKGSEND add file platform/solaris/smf/opengrok.xml mode=0444 owner=root group=sys path=/var/svc/manifest/application/opengrok.xml restart_fmri=svc:/system/manifest-import:default 67 PKGSEND add file platform/solaris/smf/svc-opengrok mode=0555 owner=root group=bin path=/lib/svc/method/svc-opengrok 68 PKGSEND add file platform/solaris/smf/ogindexd mode=0555 owner=root group=bin path=/usr/opengrok/lib/ogindexd 69 PKGSEND add file OpenGrok mode=0555 owner=root group=bin path=/usr/opengrok/bin/OpenGrok 70 PKGSEND add file dist/opengrok.jar mode=0444 owner=root group=bin path=/usr/opengrok/lib/opengrok.jar 72 PKGSEND add file loggin [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/index/ |
H A D | IgnoredNames.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 28 * This class maintains a list of file names (like "cscope.out"), SRC_ROOT 29 * relative file paths (like "usr/src/uts" or "usr/src/Makefile"), and glob 84 * Should the file be ignored or not? 85 * @param file the file to check 86 * @return true if this file shoul 88 ignore(File file) argument [all...] |
/opengrok-sun/test/org/opensolaris/opengrok/util/ |
H A D | FileUtilities.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 52 File file = new File(root, ze.getName()); 54 file.mkdirs(); 58 FileOutputStream out = new FileOutputStream(file); 115 File file = File.createTempFile(prefix, "opengrok"); 116 if (!file.delete()) { 118 "Could not create delete temporary file " [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/history/ |
H A D | RCSRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 51 boolean fileHasHistory(File file) { argument 52 return getRCSFile(file) != null; 58 File file = new File(parent, basename); 59 File rcsFile = getRCSFile(file); 69 boolean fileHasAnnotation(File file) { argument 70 return fileHasHistory(file); 74 annotate(File file, String revision) argument 79 annotate(File file, String revision, File rcsFile) argument 124 isRepositoryFor(File file) argument 137 getRCSFile(File file) argument 150 getHistory(File file) argument [all...] |
H A D | RepoRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 73 boolean isRepositoryFor(File file) { argument 74 if (file.isDirectory()) { 75 File f = new File(file, ".repo"); 87 boolean fileHasHistory(File file) { argument 97 History getHistory(File file) { argument 107 boolean fileHasAnnotation(File file) { argument 112 annotate(File file, String revision) argument [all...] |
H A D | RazorRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 47 * interface called 'issue weaver'. Each group has a file repository, managed 51 * of the file repository itself. 61 * and one or more Groups each consisting of file repository and thread 63 * directories (Archive, History, Info, Scripts and Tables). When file revision 64 * control is needed on a file (both committed files and some internal 67 * Each file i 175 getOpenGrokFileNameFor(File file) argument 184 getRazorHistoryFileFor(File file) argument 188 getRazorArchiveRCSFileFor(File file) argument 192 getRazorArchiveBinaryFileFor(File file, String rev) argument 196 getRazorArchiveSCCSFileFor(File file) argument 201 fileHasHistory( File file) argument 249 annotate( File file, String revision) argument 267 fileHasAnnotation( File file) argument 293 pathTranslation(File file, String intermediateElements, String filePrefix, String fileSuffix) argument 325 isRepositoryFor( File file) argument 336 getHistory(File file) argument [all...] |
H A D | SCCSRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 78 private void getAuthors(File file) throws IOException { argument 89 argv.add(file.getCanonicalPath()); 92 pb.directory(file.getCanonicalFile().getParentFile()); 131 * Annotate the specified file/revision. 133 * @param file file t 138 annotate(File file, String revision) argument 194 fileHasAnnotation(File file) argument 204 fileHasHistory(File file) argument 215 isRepositoryFor(File file) argument 248 getHistory(File file) argument [all...] |
H A D | RepositoryFactory.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 76 * Returns a repository for the given file, or null if no repository was found. 78 * @param file File that might contain a repository 79 * @return Correct repository for the given file 81 public static Repository getRepository(File file) throws InstantiationException, IllegalAccessException { argument 85 if (rep.isRepositoryFor(file)) { 88 res.setDirectoryName(file [all...] |
H A D | FileHistoryCache.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 78 * Get a <code>File</code> object describing the cache file. 80 * @param file the file to find the cache for 81 * @return file that might contain cached history for <code>file</code> 83 private static File getCachedFile(File file) throw argument 108 readCache(File file) argument 121 storeFile(History history, File file) argument 221 get(File file, Repository repository, boolean withFiles) argument 270 isUpToDate(File file, File cachedFile) argument [all...] |
H A D | HistoryGuru.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 118 * Annotate the specified revision of a file. 120 * @param file the file to annotate 122 * @return file annotation, or <code>null</code> if the 126 public Annotation annotate(File file, String rev) throws IOException { argument 129 Repository repos = getRepository(file); 174 getHistoryReader(File file) argument 186 getHistory(File file) argument 200 getHistory(File file, boolean withFiles) argument 245 hasHistory(File file) argument 262 hasAnnotation(File file) argument 605 ensureHistoryCacheExists(File file) argument [all...] |
H A D | CVSRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 68 File getRCSFile(File file) { argument 70 RCSHistoryParser.getCVSFile(file.getParent(), file.getName()); 78 public boolean isRepositoryFor(File file) { argument 79 if (file.isDirectory()) { 80 File cvsDir = new File(file, "CV 109 getHistoryLogExecutor(final File file) argument 210 fileHasAnnotation(File file) argument 215 fileHasHistory(File file) argument 223 getHistory(File file) argument 228 annotate(File file, String revision) argument [all...] |
H A D | PerforceRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 63 public Annotation annotate(File file, String rev) throws IOException { argument 64 Annotation a = new Annotation(file.getName()); 67 PerforceHistoryParser.getRevisions(file, rev).getHistoryEntries(); 79 cmd.add(file.getPath() + ((rev == null) ? "" : "#" + rev)); 81 Executor executor = new Executor(cmd, file.getParentFile()); 103 "Error: Could not read annotations for " + file, 137 fileHasHistory(File file) argument 142 fileHasAnnotation(File file) argument 155 isInP4Depot(File file) argument 193 isRepositoryFor(File file) argument 212 getHistory(File file) argument [all...] |
H A D | AccuRevRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 46 * It appears that the file path that is given to all these methods is the 47 * complete path to the file which includes the path to the root of the source 89 public Annotation annotate(File file, String rev) throws IOException { argument 91 Annotation a = new Annotation(file.getName()); 100 String path = getDepotRelativePath(file); 113 Executor executor = new Executor(cmd, file 150 getHistoryLogExecutor(File file) argument 247 fileHasHistory(File file) argument 252 fileHasAnnotation(File file) argument 306 getDepotRelativePath(File file) argument 349 getHistory(File file) argument [all...] |
H A D | RCSHistoryParser.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 44 * Virtualise RCS file as a reader, getting a specified version 72 History parse(File file, Repository repos) throws HistoryException { argument 74 return parseFile(file); 80 private History parseFile(File file) throws IOException { argument 82 Archive archive = new Archive(getRCSFile(file).getPath()); 95 "Could not parse file " 122 getRCSFile(File file) argument 158 readFirstLine(File file) argument [all...] |
H A D | BazaarRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 56 * named file. 58 * @param file The file to retrieve history for 61 Executor getHistoryLogExecutor(final File file, final String sinceRevision) argument 64 String abs = file.getCanonicalPath(); 75 if (file 145 annotate(File file, String revision) argument 195 fileHasAnnotation(File file) argument 224 fileHasHistory(File file) argument 233 isRepositoryFor(File file) argument 256 getHistory(File file, String sinceRevision) argument 268 getHistory(File file) argument [all...] |
H A D | ClearCaseRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 79 * named file. 81 * @param file The file to retrieve history for 84 Executor getHistoryLogExecutor(final File file) throws IOException { argument 85 String abs = file.getCanonicalPath(); 95 if (file 199 annotate(File file, String revision) argument 249 fileHasAnnotation(File file) argument 315 fileHasHistory(File file) argument 333 isRepositoryFor(File file) argument 399 getHistory(File file) argument [all...] |
H A D | MonotoneRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 109 Executor getHistoryLogExecutor(File file, String changeset) argument 111 String abs = file.getCanonicalPath(); 139 * Annotate the specified file/revision. 141 * @param file file to annotate 143 * @return file annotatio 146 annotate(File file, String revision) argument 191 fileHasAnnotation(File file) argument 220 fileHasHistory(File file) argument 225 isRepositoryFor(File file) argument 245 getHistory(File file) argument 250 getHistory(File file, String sinceRevision) argument [all...] |
H A D | SCCSHistoryParser.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 41 * Reads and filters out junk from a SCCS history file 42 * see sccsfile(4) for details of the file format 43 * Wrote it since invoking sccs prs for each file was 60 History parse(File file, Repository repos) throws HistoryException { argument 63 return parseFile(file); 69 private History parseFile(File file) throw argument 244 getSCCSFile(File file) argument [all...] |
H A D | SCCSget.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 35 public static InputStream getRevision(String command, File file, String revision) throws IOException { argument 44 argv.add(file.getCanonicalPath());
|
H A D | SubversionRepository.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 117 if (!url.startsWith("file")) { 149 * named file. 151 * @param file The file to retrieve history for 156 Executor getHistoryLogExecutor(final File file, String sinceRevision) { argument 157 String abs = file 216 getHistory(File file) argument 221 getHistory(File file, String sinceRevision) argument 274 annotate(File file, String revision) argument 328 fileHasAnnotation(File file) argument 333 fileHasHistory(File file) argument 357 isRepositoryFor(File file) argument [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/web/ |
H A D | DirectoryListing.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 61 * Write part of HTML code which contains file/directory last 65 * @param child the file or directory to use for writing the data 141 for (String file : files) { 142 if (ignoredNames.ignore(file)) { 145 File child = new File(dir, file); 146 if (file [all...] |
H A D | DiffData.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 30 * for a certain versioned file. 37 /** the directory which contains the given file wrt. to the source root 51 /** the content of the original and new file line-by-line corresponding 53 public String[][] file; field in class:DiffData
|
/opengrok-sun/src/org/opensolaris/opengrok/management/ |
H A D | JMXConfiguration.java | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 48 //write it to file as well 51 File file = new File(configfile); 52 if (!file.exists()) { 53 if (!file.createNewFile()) { 54 throw new IOException("Could not create configuration file: '" + configfile + "'"); 57 RuntimeEnvironment.getInstance().writeConfiguration(file); [all...] |
/opengrok-sun/src/org/opensolaris/opengrok/analysis/fortran/ |
H A D | FortranXref.lex | 4 * The contents of this file are subject to the terms of the 6 * You may not use this file except in compliance with the License. 12 * file and include the License file at LICENSE.txt. 25 * Cross reference a Fortran file 42 // TODO move this into an include file when bug #16053 is fixed 75 String file = yytext(); 76 file = file.substring(1, file [all...] |