ProjectConfig
Extends:
The current project's configuration, with overrides (through ATSCM_PROJECT__
env vars) already
handled.
Test:
Static Member Summary
Static Public Members | ||
public static get |
The atvise server's host. Can be overridden with the |
|
public static get |
A regular expression matching all ignored nodes. |
|
public static get |
The login to use. |
|
public static get |
The atvise server ports to use. |
|
public static get |
A regular expression matching all source nodes. |
|
public static get |
The connection timeout, in milliseconds. |
Static Private Members | ||
private static |
|
|
private static |
|
Static Method Summary
Static Public Methods | ||
public static |
isExternal(id: string): boolean Returns |
Static Private Methods | ||
private static |
Return the project configuration override for the given name if available. |
Static Public Members
public static get host: string source
The atvise server's host. Can be overridden with the ATSCM_PROJECT__HOST
env variable.
public static get login: Object source
The login to use. Return false if no login is required (default).
public static get timeout: number source
The connection timeout, in milliseconds. Can be overridden with the ATSCM_PROJECT__TIMEOUT
env variable.
Static Private Members
private static _ignoredNodesRegExp: * source
private static _sourceNodesRegExp: * source
Static Public Methods
public static isExternal(id: string): boolean source
Returns true
for all external (not in Atviseproject.nodes or ignored by
Atviseproject.ignoreNodes).
Params:
Name | Type | Attribute | Description |
id | string | The node id to check. |