Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 792 Lines • ▼ Show 20 Lines | // -- Differential ---------------------------------------------------------- // | ||||
| // List of file regexps that should be treated as if they are generated by | // List of file regexps that should be treated as if they are generated by | ||||
| // an automatic process, and thus get hidden by default in differential. | // an automatic process, and thus get hidden by default in differential. | ||||
| 'differential.generated-paths' => array( | 'differential.generated-paths' => array( | ||||
| // '/config\.h$/', | // '/config\.h$/', | ||||
| // '#/autobuilt/#', | // '#/autobuilt/#', | ||||
| ), | ), | ||||
| // If you set this to true, users can accept their own revisions. This action | // If you set this to true, users can accept their own revisions. This action | ||||
| // is disabled by default because it's most likely not a behavior you want, | // is disabled by default because it's most likely not a behavior you want, | ||||
| // but it proves useful if you are working alone on a project and want to make | // but it proves useful if you are working alone on a project and want to make | ||||
| // use of all of differential's features. | // use of all of differential's features. | ||||
| 'differential.allow-self-accept' => false, | 'differential.allow-self-accept' => false, | ||||
| // If you set this to true, any user can close any revision so long as it has | // If you set this to true, any user can close any revision so long as it has | ||||
| // been accepted. This can be useful depending on your development model. For | // been accepted. This can be useful depending on your development model. For | ||||
| // example, github-style pull requests where the reviewer is often the | // example, github-style pull requests where the reviewer is often the | ||||
| // actual committer can benefit from turning this option to true. If false, | // actual committer can benefit from turning this option to true. If false, | ||||
| // only the submitter can close a revision. | // only the submitter can close a revision. | ||||
| 'differential.always-allow-close' => false, | 'differential.always-allow-close' => false, | ||||
| // If you set this to true, any user can abandon any revision. If false, only | // If you set this to true, any user can abandon any revision. If false, only | ||||
| // the submitter can abandon a revision. | // the submitter can abandon a revision. | ||||
| 'differential.always-allow-abandon' => false, | 'differential.always-allow-abandon' => false, | ||||
| // If you set this to true, any user can reopen a revision so long as it has | // If you set this to true, any user can reopen a revision so long as it has | ||||
| // been closed. This can be useful if a revision is accidentally closed or | // been closed. This can be useful if a revision is accidentally closed or | ||||
| // if a developer changes his or her mind after closing a revision. If it is | // if a developer changes his or her mind after closing a revision. If it is | ||||
| // false, reopening is not allowed. | // false, reopening is not allowed. | ||||
| 'differential.allow-reopen' => false, | 'differential.allow-reopen' => false, | ||||
| // Revisions newer than this number of days are marked as fresh in Action | // Revisions newer than this number of days are marked as fresh in Action | ||||
| // Required and Revisions Waiting on You views. Only work days (not weekends | // Required and Revisions Waiting on You views. Only work days (not weekends | ||||
| // and holidays) are included. Set to 0 to disable this feature. | // and holidays) are included. Set to 0 to disable this feature. | ||||
| 'differential.days-fresh' => 1, | 'differential.days-fresh' => 1, | ||||
| ▲ Show 20 Lines • Show All 265 Lines • Show Last 20 Lines | |||||