- 
                Notifications
    
You must be signed in to change notification settings  - Fork 791
 
Per project configuration
        Vladimir Kotal edited this page Oct 1, 2021 
        ·
        29 revisions
      
    Each project can have its own set of properties. These control various aspects of how the project (plus its repositories) is handled.
The setting of per-project tunables is done in read-only configuration file (see https://github.com/OpenGrok/OpenGrok/wiki/Read-only-configuration). The file can look like this:
<?xml version="1.0" encoding="UTF-8"?>
<java version="1.8.0_121" class="java.beans.XMLDecoder">
 <object class="org.opengrok.indexer.configuration.Configuration" id="Configuration0">
  ...
  <void property="projects">
   <void method="put">
    <string>PROJECT_NAME</string>
    <object class="org.opengrok.indexer.configuration.Project">
     <void property="navigateWindowEnabled">
      <boolean>true</boolean>
     </void>
    </object>
   </void>
  </void>
 </object>
</java>
Warning: keep in mind that this way the read-only configuration can only be used for initial global indexing. After that comment per-project settings out in read-only configuration and use RESTful API to set per project properties. For more info see https://github.com/oracle/opengrok/issues/2147
| Property | Type | Since version | Meaning | 
|---|---|---|---|
navigateWindowEnabled | 
boolean | 
1.1 | display navigate window automatically when browsing xrefs | 
tabSize | 
int | 
pre 0.12 | size of tabulator in spaces. project reindex is necessary after changing the value ! | 
handleRenamedFiles | 
boolean | 
1.1 | disables or enables handling of renamed files | 
historyEnabled | 
boolean | 
1.1 | enables or disables history for particular project | 
indexed | 
boolean | XXX | marks the project (not) indexed. When the value is False, the project is not displayed in the web application. | 
mergeCommitsEnabled | 
boolean | 
1.6.5 | enables or disables storing merge commits in history | 
