To comment on the following update, log in, then open the issue:
http://www.openoffice.org/issues/show_bug.cgi?id=60709
User cloph changed the following:
What |Old value |New value
================================================================================
CC|'vq' |'cloph,vq'
--------------------------------------------------------------------------------
Keywords| |oooqa
--------------------------------------------------------------------------------
------- Additional comments from [EMAIL PROTECTED] Wed Jan 18 06:22:36 -0800
2006 -------
There is already code that does this in CwsConfig.pm:
sub vcsid
{
my $self = shift;
if ( !defined($self->{VCSID}) ) {
# environment overrides config file
my $vcsid = $ENV{VCSID};
if ( !defined($vcsid) ) {
# check config file
my $config_file = $self->get_config_file();
$vcsid = $config_file->{CWS_CONFIG}->{'CVS_ID'};
if ( !defined($vcsid) ) {
# give up
croak("ERROR: no CVS_ID entry found in '\$HOME/.cwsrc'.\n" );
}
}
$self->{VCSID} = $vcsid;
}
return $self->{VCSID};
}
---------------------------------------------------------------------
Please do not reply to this automatically generated notification from
Issue Tracker. Please log onto the website and enter your comments.
http://qa.openoffice.org/issue_handling/project_issues.html#notification
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]