The deprecated FCM 1 commands, i.e. fcm build
, fcm cmp-ext-cfg
and
fcm extract
, can
modify their settings using the central and user configuration files at:
fcm
is installed.Note:
FCM1::Config
,
which should be located at lib/FCM1/Config.pm in your FCM
distribution.The following deprecated settings related to FCM keywords will no longer work in $FCM/etc/fcm.cfg but will continue to work in $HOME/.fcm. However, it would be desirable to migrate these settings to their equivalents in $HOME/.metomi/fcm/keyword.cfg as documented in Annex: FCM Configuration File > FCM Keyword Configuration.
$HOME/.metomi/fcm/keyword.cfg equivalent: location
or location{primary}
.
This declares a URL keyword for the package <pck>. The value of
the declaration must be a valid Subversion <URL>. Once declared,
the URL keyword <pck> will be associated with the specified URL. In
subsequent invocations of the fcm
command, the following
expansion may take place:
Example:
# Associate "var" with "svn://server/VAR_svn/var" set::url::var svn://server/VAR_svn/var # "fcm:var" is now the same as "svn://server/VAR_svn/var"
$HOME/.metomi/fcm/keyword.cfg equivalent: revision
.
This declares <keyword> to be the revision number for the package <pck>. The <keyword> string can contain any characters except spaces. It must not contain only digits (as digits are treated as revision numbers). It must not be the Subversion revision keywords HEAD, BASE, COMMITTED and PREV. It cannot begin and end with a pair of curly brackets (as this will be parsed as a revision date). The package <pck> must be associated with a URL using the SET::URL::<pck> declaration described above before this declaration can make sense. Once defined, <keyword> can be used anywhere in place the defined revision number.
Example:
set::revision::var::v22.0 8410 # E.g. "fcm list -r v22.0 fcm:var" is now the same as # "fcm list -r 8410 fcm:var".
$HOME/.metomi/fcm/keyword.cfg equivalent: browser.comp-pat
,
browser.loc-tmpl
,
and browser.rev-tmpl
.
These declarations are used to change the global default for mapping a version control system URL to its corresponding web browser URL. <key> can be LOCATION_COMPONENT_PATTERN, BROWSER_URL_TEMPLATE or BROWSER_REV_TEMPLATE.
Example:
set::url_browser_mapping_default::location_component_pattern ^//([^/]+)/(.*)$ set::url_browser_mapping_default::browser_url_template http://{1}/intertrac/source:{2}{3} set::url_browser_mapping_default::browser_rev_template @{1}
$HOME/.metomi/fcm/keyword.cfg equivalent: browser.comp-pat
,
browser.loc-tmpl
,
and browser.rev-tmpl
.
Similar to SET::URL_BROWSER_MAPPING_DEFAULT::<key>, but settings only apply to the specified <pck>.
Example:
set::url_browser_mapping::var::location_component_pattern ^//([^/]+)/(.*)$ set::url_browser_mapping::var::browser_url_template http://{1}/intertrac/source:{2}{3} set::url_browser_mapping::var::browser_rev_template @{1}