Searched refs:projects (Results 1 - 7 of 7) sorted by relevance

/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DSearchHelper.java114 /** projects to use to setup indexer searchers. Usually setup via
116 public SortedSet<String> projects; field in class:SearchHelper
129 * projects. Does not produce any {@link #redirect} link. It also does
145 * <li>{@link #projects}</li>
149 * @param projects project to use query. If empty, a none-project opengrok
155 public SearchHelper prepareExec(SortedSet<String> projects) { argument
162 if (projects == null) {
166 this.projects = projects;
168 if (projects
[all...]
H A DPageConfig.java688 Set<String> projects = getRequestedProjects();
689 if (projects.isEmpty()) {
693 for (String name : projects) {
713 * Get a reference to a set of requested projects via request parameter
728 * project, the set with invalid projects removed gets returned.
732 * projects removed gets returned. Otherwise:</li>
808 List<Project> projects = getConfig().getProjects();
809 if (projects == null) {
812 if (projects.size() == 1) {
813 set.add(projects
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/index/
H A DIndexerTest.java105 * Test that rescanning for projects does not erase customization of
106 * existing projects. Bug #16006.
120 // should not be in the list of projects after the rescan.
125 // Make the runtime environment aware of these two projects.
126 List<Project> projects = new ArrayList<Project>();
127 projects.add(p1);
128 projects.add(p2);
130 cfg.setProjects(projects);
132 // Do a rescan of the projects, and only that (we don't care about
136 true, // scan and add projects
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/configuration/
H A DConfiguration.java110 private List<Project> projects; field in class:Configuration
456 * Get all of the projects
457 * @return a list containing all of the projects (may be null)
460 return projects;
464 * Set the list of the projects
465 * @param projects the list of projects to use
467 public void setProjects(List<Project> projects) { argument
468 this.projects = projects;
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/index/
H A DIndexer.java547 * like zapping or refreshing the history cache, list available projects
548 * including their path, create spelling index for related projects,
553 * @param addProjects If {@code true} add automatically projects found
559 * for the given or all projects.
561 * the index database for given projects to stdout.
563 * tokens for related projects to stdout.
564 * @param subFiles Determine target projects by the given repo
566 * {@code true}. {@code null} implies "all projects".
568 * "all projects".
571 * @param listRepoPathes If {@code true}, just list available projects
[all...]
/opengrok-jel/src/org/opensolaris/opengrok/management/client/
H A DConfigurationsFrame.java185 List<Project> projects = config.getProjects();
187 new DefaultTableModel(projectTableHeaders,projects.size());
191 for (Project proj:projects) {
873 config.setProjects(projects);
/opengrok-jel/web/static/
H A Dopengrok.js94 projects: [], // see menu.jspf
402 /** Select all projects in the project selection list. */
406 /** Invert the list of selected projects in the project selection list. */

Completed in 25 milliseconds