[root] / trunk / net / auth / src / TAuthenticate.cxx Repository:
ViewVC logotype

Log of /trunk/net/auth/src/TAuthenticate.cxx

Parent Directory Parent Directory


Links to HEAD: (view) (download) (as text) (annotate)
Sticky Revision:

Revision 46215 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 27 11:04:24 2012 UTC (2 years, 3 months ago) by rdm
File length: 166198 byte(s)
Diff to previous 46214
Remove also Linux Mips and SGI Irix platform support.

Revision 46214 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 27 10:10:19 2012 UTC (2 years, 3 months ago) by rdm
File length: 166217 byte(s)
Diff to previous 44512
Digital Alpha is no longer supported. Remove all references to __alpha and
__true64.

Revision 44512 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 4 13:55:55 2012 UTC (2 years, 7 months ago) by ganis
File length: 166238 byte(s)
Diff to previous 44507
Fix RESOURCE_LEAK and bunch of FORWARD_NULL coverity issues; make sure SafeDel macro is defined

Revision 44507 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jun 4 12:30:41 2012 UTC (2 years, 7 months ago) by axel
File length: 166175 byte(s)
Diff to previous 43081
Remove
  using namespace std;
from Riostream.h, which has huge consequences for all of ROOT.
Riostream.h is now a simple wrapper for fstream, iostream, iomanip for backward compatibility; Riosfwd.h simply wraps iosfwd.

Because of templates and their inline functions, Riostream.h needed to be included in headers, too (e.g. TParameter.h), which violated the assumption that Riostream.h is not exposing its using namespace std to headers.
ROOT now requires R__ANSISTREAM, R__SSTREAM, which does not change the set of supported compilers.

Without "using namespace std", several identifiers are now prefixed by std::; e.g. roofit/* source files now have a using namespace std to keep their coding style.
TFile::MakeProject() now generates "using namespace std" to convert the CINT-style class names into C++ ones.

Revision 43081 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Feb 22 10:04:08 2012 UTC (2 years, 11 months ago) by rdm
File length: 166169 byte(s)
Diff to previous 43071
fix a bunch C++11 warnings.

Revision 43071 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Feb 21 17:01:01 2012 UTC (2 years, 11 months ago) by axel
File length: 166160 byte(s)
Diff to previous 41339
Fix clang warnings: strlcpy(A, B, len) with len == strlen(B) instead of sizeof(A). Was okay in all cases, but double call to strlen() for no good reason.

Revision 41339 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 11 14:43:26 2011 UTC (3 years, 3 months ago) by rdm
File length: 166097 byte(s)
Diff to previous 41016
use #ifdef instead of #if in several cases.

Revision 41016 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 27 07:46:01 2011 UTC (3 years, 3 months ago) by pcanal
File length: 166094 byte(s)
Diff to previous 39419
Fix gcc 4.6.1 warning  variable ‘added’ set but not used

Revision 39419 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu May 26 14:42:57 2011 UTC (3 years, 7 months ago) by axel
File length: 166069 byte(s)
Diff to previous 39415
Fix remaining issue with TAuthenticate on MSVC71.

Revision 39415 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu May 26 14:04:11 2011 UTC (3 years, 7 months ago) by axel
File length: 166073 byte(s)
Diff to previous 39402
Work around MSVC 7.1 compiler bug - which makes the code a bit nicer anyway.
Assign the proper variable to the principal.

Revision 39402 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu May 26 12:56:31 2011 UTC (3 years, 8 months ago) by axel
File length: 166067 byte(s)
Diff to previous 38915
Replace legacy clib/getline and editline by a new library, textinput,
located at core/textinput/src/textinput. That new library is written
in C++, standalone (no external dependencies), cross platform
including Windows, and contains only what we need - unlike
e.g. editline. It implements almost all bash-like editing commands,
color highlighting, history etc. It allows for multiple input objects
and multiple display objects, e.g. GUI and terminal in parallel. It
can be used as a stand-alone library, too, and will become part of
cling - which explains the different license and file names (.cpp).

core/textinputs/src/Getline* contains the adapters to ROOT; the
previous core/editline/enhance.cxx is transformed to
Getline_color.cxx. This new adapter interfaces with TTabCom directly,
without going via an extern "C" function pointer, to allow for an
ostream being passed that will contain all completion options, one per
line. TApplication now defines a virtual function to be called for tab
completion; TRint implements it using TTabCom.

One major change is that the user input string is accessible as const
char* instead of being a char* - the buffer length is unknown
anyway. This caused changes in callers of Getline(); the history and
the getline function types needed to change for CINT.

--enable-editline has been deprecated and is inoperable.

Revision 38915 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 19 09:07:04 2011 UTC (3 years, 9 months ago) by rdm
File length: 166039 byte(s)
Diff to previous 36308
fix Coverity issues and use TString::Form() iso Form().

Revision 36308 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 12 07:13:29 2010 UTC (4 years, 3 months ago) by brun
File length: 165943 byte(s)
Diff to previous 36147
use strlcpy

Revision 36147 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 7 11:03:25 2010 UTC (4 years, 3 months ago) by ganis
File length: 165869 byte(s)
Diff to previous 36145
Make sure that the rndm integer extracted from /dev/urandom is >= 0

Revision 36145 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 7 10:38:16 2010 UTC (4 years, 3 months ago) by ganis
File length: 165809 byte(s)
Diff to previous 36142
More fixes from coverity

Revision 36142 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Oct 7 08:27:10 2010 UTC (4 years, 3 months ago) by ganis
File length: 166002 byte(s)
Diff to previous 36117
Other fixes for Coverity issues

Revision 36117 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 6 14:05:29 2010 UTC (4 years, 3 months ago) by ganis
File length: 165600 byte(s)
Diff to previous 36116
Hopefully fix compilation problem on Windows introduced in the last patch

Revision 36116 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Oct 6 13:58:05 2010 UTC (4 years, 3 months ago) by ganis
File length: 165579 byte(s)
Diff to previous 36086
Fix another bunch of Coverity issues

Revision 36086 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Oct 5 16:15:41 2010 UTC (4 years, 3 months ago) by ganis
File length: 166138 byte(s)
Diff to previous 36054
Fix a bunch of issues found by Coverity

Revision 36054 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Oct 4 10:07:27 2010 UTC (4 years, 3 months ago) by ganis
File length: 165808 byte(s)
Diff to previous 35527
Fix a bunch of Coverity issues

Revision 35527 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 21 12:27:01 2010 UTC (4 years, 4 months ago) by brun
File length: 165360 byte(s)
Diff to previous 35505
do not include snprintf.h

Revision 35505 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 21 08:18:20 2010 UTC (4 years, 4 months ago) by brun
File length: 165382 byte(s)
Diff to previous 35480
Fix strlcpy calls

Revision 35480 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Sep 20 18:39:42 2010 UTC (4 years, 4 months ago) by brun
File length: 165522 byte(s)
Diff to previous 35326
Do not include snprintf.h

Revision 35326 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Sep 16 10:39:21 2010 UTC (4 years, 4 months ago) by ganis
File length: 165522 byte(s)
Diff to previous 35229
Fix Coverity issue

Revision 35229 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Sep 10 15:30:21 2010 UTC (4 years, 4 months ago) by ganis
File length: 165516 byte(s)
Diff to previous 35202
Fix some coverity reports

Revision 35202 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 8 13:12:42 2010 UTC (4 years, 4 months ago) by rdm
File length: 165493 byte(s)
Diff to previous 34238
fix issues flagged as critical by coverity.

Revision 34238 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jun 30 12:49:56 2010 UTC (4 years, 6 months ago) by brun
File length: 165249 byte(s)
Diff to previous 30944
fix format in Warning and Error statements

Revision 30944 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 2 13:21:30 2009 UTC (5 years, 2 months ago) by ganis
File length: 165204 byte(s)
Diff to previous 28642
Fix compilation warning (unchecked return code)

Revision 28642 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri May 15 15:20:48 2009 UTC (5 years, 8 months ago) by rdm
File length: 165107 byte(s)
Diff to previous 25357
use new TBase64 class to base-64 encode and decode.

Revision 25357 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 3 16:09:56 2008 UTC (6 years, 4 months ago) by ganis
File length: 170542 byte(s)
Diff to previous 24778
Fix problem with parsing of the received command info for SSH authentication (bug #40949)

Revision 24778 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 10 22:59:38 2008 UTC (6 years, 6 months ago) by rdm
File length: 170797 byte(s)
Diff to previous 24713
remove tests on "UnNamedHost" which are not needed anymore.

Revision 24713 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 8 14:17:19 2008 UTC (6 years, 6 months ago) by ganis
File length: 171276 byte(s)
Diff to previous 24691
Fix warnings about shadowed variables

Revision 24691 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Jul 7 16:53:31 2008 UTC (6 years, 6 months ago) by ganis
File length: 171292 byte(s)
Diff to previous 23510
Fix problem with passing the prompt to the password dialog

Revision 23510 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Apr 24 13:29:01 2008 UTC (6 years, 9 months ago) by brun
File length: 171277 byte(s)
Diff to previous 23380
Fix shadowed variables

Revision 23380 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Apr 22 07:41:07 2008 UTC (6 years, 9 months ago) by brun
File length: 171325 byte(s)
Diff to previous 23091
From Federico:
Fixes for gcc4.3

Revision 23091 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Apr 9 15:04:27 2008 UTC (6 years, 9 months ago) by rdm
File length: 171305 byte(s)
Diff to previous 22488
moving the follwing directories to "net":

alien, auth, glite, globusauth, krb5auth, ldap, monalisa, net, netx,
rootd, rpdutils, srputils, xrootd

Revision 22488 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 6 16:04:47 2008 UTC (6 years, 10 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171305 byte(s)
Diff to previous 21591
remove first batch of warning reported by gcc 4.3:
- warning: suggest parentheses around && within ||
- warning: suggest explicit braces to avoid ambiguous if else

Revision 21591 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jan 8 17:28:21 2008 UTC (7 years ago) by brun
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171295 byte(s)
Diff to previous 20935
From Gerri:
      - Fix "dereferencing type-punned pointer will break strict-aliasing rules" warnings

Revision 20935 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Nov 20 17:39:33 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171282 byte(s)
Diff to previous 20882
Remove gcc 4.2 compiler warnings.

Revision 20882 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 19 11:31:26 2007 UTC (7 years, 2 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171270 byte(s)
Diff to previous 20411
Set property svn:eol-style LF on all source and Makefiles. This should avoid
problems with Win32 line endings ending up in the repository. All MS tools
support LF eols fine.

Revision 20411 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 19 12:37:58 2007 UTC (7 years, 3 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171270 byte(s)
Diff to previous 19826
remove conditional around include of RConfigure.h:

#ifdef R__HAVE_CONFIG
#include "RConfigure.h"
#endif 

Having this conditional caused RConfigure.h to be missing from the .d
files and hence these files would not be recompiled after re-configuring
using --prefix.

Revision 19826 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:56:11 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171299 byte(s)
Diff to previous 19825
imported svn:keywords Id property

Revision 19825 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 19 19:49:10 2007 UTC (7 years, 4 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171354 byte(s)
Diff to previous 18983
remove :$ from tag line

Revision 18983 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Jun 8 09:17:26 2007 UTC (7 years, 7 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171364 byte(s)
Diff to previous 18191
From Gerri:
- Do not explicitely set full paths when loading plugin libraries.

Revision 18191 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 8 11:41:27 2007 UTC (7 years, 10 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171676 byte(s)
Diff to previous 18190
From Gerri:
fixes a bug in the negotiation mechanism preventing, in some case, the
full list of mechanisms to be tried.

Revision 18190 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Mar 8 11:37:20 2007 UTC (7 years, 10 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171537 byte(s)
Diff to previous 17019
From Gerri:
The passwd dialog was loading all the graphic libraries even when not used.
Now done just before the first use.

Revision 17019 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Dec 1 15:19:29 2006 UTC (8 years, 1 month ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171629 byte(s)
Diff to previous 17000
fcntl.h is now in TSystem.h.

Revision 17000 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Dec 1 07:47:13 2006 UTC (8 years, 1 month ago) by brun
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171651 byte(s)
Diff to previous 16999
Fix a side-effect of the removal of G__ci.h from TSystem.
Add a missing include. Did not compile on Linux.

Revision 16999 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 30 23:19:47 2006 UTC (8 years, 1 month ago) by pcanal
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171627 byte(s)
Diff to previous 16796
Remove G__ci.h from TSystem.h.  Correct the source file that require G__ci.h __or__ one of the header it included

Revision 16796 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Nov 16 17:18:32 2006 UTC (8 years, 2 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171607 byte(s)
Diff to previous 14985
Changes to get rid of the config.h and HAVE_CONFIG define. These were way
too trivial (just do a locate config.h to see how many there are):
- replace occurances of config.h by RConfigure.h
- add #warning in config.h that is should not be used
- change HAVE_CONFIG to R__HAVE_CONFIG

Revision 14985 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 10 14:06:06 2006 UTC (8 years, 8 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171575 byte(s)
Diff to previous 14981
use TSystem::HomeDirectory() instead of TSystem::Getenv("HOME").

Revision 14981 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed May 10 07:40:12 2006 UTC (8 years, 8 months ago) by brun
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171572 byte(s)
Diff to previous 14746
Fix coding conventions violations.

Revision 14746 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Apr 19 08:29:18 2006 UTC (8 years, 9 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171573 byte(s)
Diff to previous 14380
From Gerri:
The last  patch to TAuthenticate contained an unwanted change breaking
TAuthenticate::RfioAuth. I have put back the original version.

Revision 14380 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Mar 22 21:57:17 2006 UTC (8 years, 10 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 171576 byte(s)
Diff to previous 13863
From Gerri:
This patch adds support for SSH authentication via a SSH tunnel.
There was a request on rootdev about that and the guy just replied that
this fix solved the problem.

Revision 13863 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Jan 18 21:49:25 2006 UTC (9 years ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 170670 byte(s)
Diff to previous 13840
From Gerri:
This fixes a problem appearing when running in stand alone without an
instance of TApplication.

Revision 13840 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jan 17 14:12:48 2006 UTC (9 years ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 170698 byte(s)
Diff to previous 13300
From Gerri:
Though deprecated in the proof.conf.sample file, TAuthenticate still scans
proof.conf for authentication directives. I suggest to clean this up, also
because we cannot use TProofResourcesStatic there (it does not know about
auth directives, and I do not think we should make it know).

TAuthenticate.h,.cxx
 - Remove ReadProofConf() and any reference to it

proof.conf.sample
 - Drop any residual reference to authentication directives as additional
   options to 'worker' or 'slave' directives.

Revision 13300 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Mon Nov 21 11:17:18 2005 UTC (9 years, 2 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 176460 byte(s)
Diff to previous 12959
coding style fixes.

Revision 12959 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Fri Oct 14 10:58:38 2005 UTC (9 years, 3 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 189969 byte(s)
Diff to previous 12798
From Gerri:
use TGPasswdDialog when not in batch mode. Load dialog via plugin manager.
User can turn dialog off in rootrc file via:
Auth.UsePasswdDialogBox: off

Revision 12798 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Sep 21 12:39:47 2005 UTC (9 years, 4 months ago) by brun
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 188795 byte(s)
Diff to previous 12667
From Gerri:
  - Reset Getline buffer after password prompt; when invoked from a window
    different from the main one, the password was inserted into the history
    list when hitting return to restore the ROOT prompt.

  - Add support for wild card or domain specification in parsing of
    .rootnetrc and .netrc

Revision 12667 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Sep 6 09:34:34 2005 UTC (9 years, 4 months ago) by brun
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 188801 byte(s)
Diff to previous 12579
From Gerri:
Fix coding conventions violations.

Revision 12579 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Wed Aug 31 11:11:46 2005 UTC (9 years, 4 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 175434 byte(s)
Diff to previous 12360
From Gerri:
- fix desynchronisation problem showing up when host equivalence
  was used.

Revision 12360 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Thu Jul 21 14:08:06 2005 UTC (9 years, 6 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 175449 byte(s)
Diff to previous 12341
From Gerri:
Fix a bug related to a change I did while cleaning the patch (I know,
one should never do that ...) to call ProofAuthSetup only for
PROOF: it relied on TApplication::ApplicationName() which returns an
empty string in PROOF. I've changed to use Argv(0) which works
much better.

The second had to do with the transfer of the Authentication buffer
when the M->S authentication was ugid.

Revision 12341 - (view) (download) (as text) (annotate) - [select for diffs]
Modified Tue Jul 19 00:10:16 2005 UTC (9 years, 6 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 174857 byte(s)
Diff to previous 12337
Fix compilation problem on Windows.

Revision 12337 - (view) (download) (as text) (annotate) - [select for diffs]
Added Mon Jul 18 16:20:53 2005 UTC (9 years, 6 months ago) by rdm
Original Path: trunk/auth/src/TAuthenticate.cxx
File length: 174892 byte(s)
From Gerri:
Big patch restructuring the authentication code so libCore does not depend
on libssl etc. anymore. Isolate the current authentication code behind a
plugin library to be loaded on demand.
Setup of a framework able to manage both sets of authentication modules
(the current one and the one based on xrdsec, coming soon).
Cleanup all direct reference to authentication in TSlave and TProofServ,
allowing for significant simplification for the forthcoming changes
in PROOF for XPD.

New module: auth

New files: base/inc/TVirtualAuth.h
           auth/Module.Mk
           auth/inc/LinkDefRoot.h
           auth/inc/TRootAuth.h auth/inc/TRootSecContext.h
           auth/src/TRootAuth.cxx auth/src/TRootSecContext.cxx

Moved files:
   net/inc -> auth/inc : TAuthenticate.h THostAuth.h DaemonUtils.h AuthConst.h
   net/src -> auth/src : TAuthenticate.cxx THostAuth.cxx DaemonUtils.cxx

This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

Sort log by:

Subversion Admin
ViewVC Help
Powered by ViewVC 1.0.9