6.1.4.5. Fossil¶
Integration with Fossil SCM
Support for Fossil SCM 2.x.
VCSIntegration Fossil supports line-by-line blame information.
Options¶
The following places define options that affect this rule: VCSIntegration, Project-GlobalOptions
binary¶
binary : str = 'fossil'
PATH or otherwise you have to specify an appropriate absolute path
here which works for both, CI and Dashboard.
blame_mode¶
blame_mode : BlameMode = 'all_authors'
last_author_only, issues for code regions are only
attributed to the author of the latest changes in that region. Otherwise, all
authors of that code region are considered responsible.
branch¶
branch : str = 'trunk'
encoding¶
encoding : str = 'utf-8'
rootpath¶
rootpath : bauhaus.analysis.config.ProjectRelativePath = '.'
rootpath options have to be set differently. The value of
rootpath must not be outside of
/Project/directory for source code to be visible
in the dashboard and for local_mode to work
correctly.
skip_blame¶
skip_blame : bool = False
sourceserver_remote_url¶
sourceserver_remote_url : str | None = None
sourceserver_repository¶
sourceserver_repository : str = 'None (value must be set)'
Fossil repository clone (*.fossil file), accessible from the
dashboard sourcecode server.
Any relative path (which is recommended) will be interpreted relative to the
dashboard's configuration subfolder repositories.
Any absolute path will stay absolute unless you set
ForceRelativeRepositoryPath to true inside
dashboard2.config in which case absolute paths are also forced to
be interpreted relative to the dashboard's configuration subfolder
repositories.
Option Types¶
These types are used by options listed above:
BlameMode¶
Enumeration of possible blame approaches for code regions.all_authors
All authors of a code region are considered responsible.last_author_only
Attribute issues only to the author of the latest change in the code region.