RE: Help: Obtaining User Changes

2003-06-30 Thread Hill, Benjamin W
Thanks!

I did a:

cvs log -d 2003-07-01 | grep date  changes.log

...and that produces:

date: 2003/05/13 10:36:10;  author: [USERID];  state: Exp;

...which shows activity percentile over date periods. The changelog:


cvs log -d 2003-07-01

...produces some decent info too!

Cheers,

Ben


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2003 18:53
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Help: Obtaining User Changes


Hill, Benjamin W writes:
 
 Is there a method in CVS is obtain changes to files for a particular 
 user, over a particular time? I am using pserver to connect to a 
 remote repository, and would like to find out what files have been 
 edited over a particular time range.

Sort of.  cvs log can list the log messages for changes checked in by a
particular user over a time range.  cvs diff can show the changes over a
time range, but it would be for all users, not just a particular one.

-Larry Jones

What this games needs are negotiated settlements. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Help: Obtaining User Changes

2003-06-30 Thread Hill, Benjamin W
This has made me think...

Are there any good tools that can generate HTML reports from CVS ChangeLogs?

I'd be looking for something that generates in tabular form, a report that
would list the updates to files, and activity percentile of authors. I know
there is view CVS, but would it do this job?

Cheers,

Ben

-Original Message-
From: Hill, Benjamin W 
Sent: 30 June 2003 10:08
To: Jones, Larry
Cc: [EMAIL PROTECTED]
Subject: RE: Help: Obtaining User Changes


Thanks!

I did a:

cvs log -d 2003-07-01 | grep date  changes.log

...and that produces:

date: 2003/05/13 10:36:10;  author: [USERID];  state: Exp;

...which shows activity percentile over date periods. The changelog:


cvs log -d 2003-07-01

...produces some decent info too!

Cheers,

Ben


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: 29 June 2003 18:53
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: Re: Help: Obtaining User Changes


Hill, Benjamin W writes:
 
 Is there a method in CVS is obtain changes to files for a particular
 user, over a particular time? I am using pserver to connect to a 
 remote repository, and would like to find out what files have been 
 edited over a particular time range.

Sort of.  cvs log can list the log messages for changes checked in by a
particular user over a time range.  cvs diff can show the changes over a
time range, but it would be for all users, not just a particular one.

-Larry Jones

What this games needs are negotiated settlements. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Help: Obtaining User Changes

2003-06-29 Thread Hill, Benjamin W
Hi,

Is there a method in CVS is obtain changes to files for a particular user,
over a particular time? I am using pserver to connect to a remote
repository, and would like to find out what files have been edited over a
particular time range.

Cheers,

Ben


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Help: Linux CVS Server Access Problem

2003-06-09 Thread Hill, Benjamin W
What would be the appropriate entries?

Cheers,

Ben

-Original Message-
From: Robert Clark [mailto:[EMAIL PROTECTED] 
Sent: 06 June 2003 17:52
To: [EMAIL PROTECTED]
Subject: RE: Help: Linux CVS Server Access Problem


On Fri, 2003-06-06 at 11:25, Hill, Benjamin W wrote:
 ...but when I enter a password I get:
 
 cvs [login aborted]: connect to [SERVERNAME]([SERVERNAME]):2401 
 failed: No connection could be made because the target machine 
 actively refused it.
 

Some ideas 

Since you are running CVS through tcpd, make sure you have the appropriate
entries in /etc/hosts.allow.

Also check the system logs on the server, specifically /var/log/messages,
/var/log/secure and /var/log/syslog if they exist, for any clues why the
connection was rejected.

- Rob



___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Help: Linux CVS Server Access Problem

2003-06-09 Thread Hill, Benjamin W
That gleans the same result as a: telnet [SERVERNAME].

Cheers,

Ben

-Original Message-
From: Danny Sauer [mailto:[EMAIL PROTECTED] 
Sent: 06 June 2003 17:38
To: [EMAIL PROTECTED]
Cc: Hill, Benjamin W
Subject: RE: Help: Linux CVS Server Access Problem


You might try (from the client machine that's having problems):

telnet [SERVERNAME] 2401

If that works (ie, it doesn't reject your connection), try typing

BEGIN VERIFICATION REQUEST
/cvs/repository
username
password
END VERIFICATION REQUEST

Hit return (yes, forcefully strike the key) after each line.  It should tell
you that it hates you, and close the conenction (because the password isn't
properly encrypted and you hopefully don't have any user called username).

You probably will get stopped at the telnet part, though, since you probably
have something rejecting connections on the server box.  Check to see that
xinetd isn't set up to block connections from hosts other than localhost,
and that tcp wrappers (if used) isn't rejecting connections to the CVS
service.  Make sure that the LISTEN entry in netstat is listening on all
relevent addresses (probably *:cvspserver), too.

--Danny


Hill, Benjamin W said:
 Hi,

 I have been through the troubleshooter, but not found anything I 
 haven't tried.

 When I try to connect to the server from a Windows machine using:

 set cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
 cvs login [USERNAME]

 ..I get the line:

 CVS password:

 ...but when I enter a password I get:

 cvs [login aborted]: connect to [SERVERNAME]([SERVERNAME]):2401 
 failed: No connection could be made because the target machine 
 actively refused it.

 I have checked that the cvspserver file is in /etc/xinetd.d and that 
 there is a LISTEN entry when doing a netstat.

 I can however log in from the Linux box itself using:

 export cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
 cvs login [USERNAME]

 ..and check out code etc. I will look at the pserver -f bit though!

 Cheers,

 Ben

 -Original Message-
 From: Jones, Larry
 Sent: 06 June 2003 16:17
 To: Hill, Benjamin W
 Cc: [EMAIL PROTECTED]
 Subject: Re: Help: Linux CVS Server Access Problem


 Hill, Benjamin W writes:

 And I can authenticate, and then check out code in the repository 
 fine. The problem is when I try to connect to the server remotely and 
 do the same thing.

 See the troubleshooting advice in the manual:

   http://www.cvshome.org/docs/manual/cvs-1.11.6/cvs_21.html#SEC184

 If that doesn't help, feel free to ask for help, but at least tell us 
 exactly what the problem is!

 server_args = --allow-root=/cvs/repository pserver -f

 The -f belongs before pserver, not after.

 -Larry Jones

 Oh, what the heck.  I'll do it. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


FIXED_UPDATE: RE: Help: Linux CVS Server Access Problem

2003-06-09 Thread Hill, Benjamin W
Just thought I'd let you know that the problem is fixed, and to thank you
all for your kind help.

I have hardly believe what the issue was! The problem was that there was
another machine of the same name on the network, not running CVS! So when I
CVSd to it, of course it refused...

Doh^2!

Cheers,

Ben

-Original Message-
From: Hill, Benjamin W [mailto:[EMAIL PROTECTED] 
Sent: 06 June 2003 16:26
To: Jones, Larry
Cc: [EMAIL PROTECTED]
Subject: RE: Help: Linux CVS Server Access Problem


Hi,

I have been through the troubleshooter, but not found anything I haven't
tried.

When I try to connect to the server from a Windows machine using:

set cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
cvs login [USERNAME]

..I get the line:

CVS password:

...but when I enter a password I get:

cvs [login aborted]: connect to [SERVERNAME]([SERVERNAME]):2401 failed: No
connection could be made because the target machine actively refused it.

I have checked that the cvspserver file is in /etc/xinetd.d and that there
is a LISTEN entry when doing a netstat.

I can however log in from the Linux box itself using:

export cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
cvs login [USERNAME]

..and check out code etc. I will look at the pserver -f bit though!

Cheers,

Ben

-Original Message-
From: Jones, Larry 
Sent: 06 June 2003 16:17
To: Hill, Benjamin W
Cc: [EMAIL PROTECTED]
Subject: Re: Help: Linux CVS Server Access Problem


Hill, Benjamin W writes:
 
 And I can authenticate, and then check out code in the repository
 fine. The problem is when I try to connect to the server remotely and 
 do the same thing.

See the troubleshooting advice in the manual:

http://www.cvshome.org/docs/manual/cvs-1.11.6/cvs_21.html#SEC184

If that doesn't help, feel free to ask for help, but at least tell us
exactly what the problem is!

 server_args = --allow-root=/cvs/repository pserver -f

The -f belongs before pserver, not after.

-Larry Jones

Oh, what the heck.  I'll do it. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


Help: Linux CVS Server Access Problem

2003-06-06 Thread Hill, Benjamin W
I am setting up a CVS repository on a Redhat 9 Linux server in a directory
/cvs/repository, but am having some problems.

I have set up the repository, and on the box itself can do a:

bash# export CVSROOT=:pserver:[EMAIL PROTECTED]:/cvs/repository
bash# cvs login

And I can authenticate, and then check out code in the repository fine. The
problem is when I try to connect to the server remotely and do the same
thing.

I have:

* disabled the firewall using redhat-config-securitylevel

* Added the file; /etc/xinetd.d/cvspserver with the contents:

service cvspserver
{
socket_type = stream
protocol= tcp
wait= no
user= root
passenv =
server  = /usr/bin/cvs
server_args = --allow-root=/cvs/repository pserver -f
}

(and restarted xinet.d)

* checked via a netstat that there is a LISTEN for cvspserver.

The server is using DHCP to obtain an IP.

Anything else I can try?

Cheers,

Ben

---

Software Engineer [SCJP] Specialist, SME Java Technologies
Member Institute of Software Architects [www.wwisa.org]

EDS EMEA Solutions Consulting - UK North East  Scotland
mail: [EMAIL PROTECTED]


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Help: Linux CVS Server Access Problem

2003-06-06 Thread Hill, Benjamin W
I only have xinetd as it is RH9, but I have the /etc/services entry in
there. 

I have tried the IP also, and no luck :-(

Cheers,

Ben

-Original Message-
From: Gurpreet Singh (SCM) [mailto:[EMAIL PROTECTED] 
Sent: 06 June 2003 13:03
To: Hill, Benjamin W
Cc: '[EMAIL PROTECTED]'
Subject: RE: Help: Linux CVS Server Access Problem


Specific error ... 

Still may Check with the following file
1. /etc/inetd.conf  for :
cvspserver stream tcp   nowait  root/usr/sbin/tcpd  /usr/bin/cvs -f
--allow-root=/CVS/repository pserver

2. /etc/servicesfor:
cvspserver  2401/tcp# cvspserver
cvspserver  2401/udp# cvspserver

3. Try giving the server IP rather the server name - directly !^!



Gurpreet S


-Original Message-
From: Hill, Benjamin W [mailto:[EMAIL PROTECTED]
Sent: Friday, June 06, 2003 4:46 PM
To: '[EMAIL PROTECTED]'
Subject: Help: Linux CVS Server Access Problem


I am setting up a CVS repository on a Redhat 9 Linux server in a directory
/cvs/repository, but am having some problems.

I have set up the repository, and on the box itself can do a:

bash# export CVSROOT=:pserver:[EMAIL PROTECTED]:/cvs/repository
bash# cvs login

And I can authenticate, and then check out code in the repository fine. The
problem is when I try to connect to the server remotely and do the same
thing.

I have:

* disabled the firewall using redhat-config-securitylevel

* Added the file; /etc/xinetd.d/cvspserver with the contents:

service cvspserver
{
socket_type = stream
protocol= tcp
wait= no
user= root
passenv =
server  = /usr/bin/cvs
server_args = --allow-root=/cvs/repository pserver -f
}

(and restarted xinet.d)

* checked via a netstat that there is a LISTEN for cvspserver.

The server is using DHCP to obtain an IP.

Anything else I can try?

Cheers,

Ben

---

Software Engineer [SCJP] Specialist, SME Java Technologies Member Institute
of Software Architects [www.wwisa.org]

EDS EMEA Solutions Consulting - UK North East  Scotland
mail: [EMAIL PROTECTED]


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs


RE: Help: Linux CVS Server Access Problem

2003-06-06 Thread Hill, Benjamin W
Hi,

I have been through the troubleshooter, but not found anything I haven't
tried.

When I try to connect to the server from a Windows machine using:

set cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
cvs login [USERNAME]

..I get the line:

CVS password:

...but when I enter a password I get:

cvs [login aborted]: connect to [SERVERNAME]([SERVERNAME]):2401 failed: No
connection could be made because the target machine actively refused it.

I have checked that the cvspserver file is in /etc/xinetd.d and that there
is a LISTEN entry when doing a netstat.

I can however log in from the Linux box itself using:

export cvsroot=:pserver:[EMAIL PROTECTED]:/cvs/repository
cvs login [USERNAME]

..and check out code etc. I will look at the pserver -f bit though!

Cheers,

Ben

-Original Message-
From: Jones, Larry 
Sent: 06 June 2003 16:17
To: Hill, Benjamin W
Cc: [EMAIL PROTECTED]
Subject: Re: Help: Linux CVS Server Access Problem


Hill, Benjamin W writes:
 
 And I can authenticate, and then check out code in the repository 
 fine. The problem is when I try to connect to the server remotely and 
 do the same thing.

See the troubleshooting advice in the manual:

http://www.cvshome.org/docs/manual/cvs-1.11.6/cvs_21.html#SEC184

If that doesn't help, feel free to ask for help, but at least tell us
exactly what the problem is!

 server_args = --allow-root=/cvs/repository pserver -f

The -f belongs before pserver, not after.

-Larry Jones

Oh, what the heck.  I'll do it. -- Calvin


___
Info-cvs mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/info-cvs