You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(164) |
Nov
(133) |
Dec
(307) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(202) |
Feb
(385) |
Mar
(235) |
Apr
(295) |
May
(258) |
Jun
(293) |
Jul
(199) |
Aug
(404) |
Sep
(439) |
Oct
(417) |
Nov
(360) |
Dec
(146) |
2003 |
Jan
(51) |
Feb
(47) |
Mar
(299) |
Apr
(257) |
May
(282) |
Jun
(294) |
Jul
(298) |
Aug
(284) |
Sep
(80) |
Oct
(34) |
Nov
(70) |
Dec
(73) |
2004 |
Jan
(227) |
Feb
(239) |
Mar
(206) |
Apr
(108) |
May
(162) |
Jun
(195) |
Jul
(187) |
Aug
(212) |
Sep
(241) |
Oct
(320) |
Nov
(161) |
Dec
(46) |
2005 |
Jan
(55) |
Feb
(129) |
Mar
(104) |
Apr
(111) |
May
(14) |
Jun
(211) |
Jul
(330) |
Aug
(314) |
Sep
(20) |
Oct
(90) |
Nov
(12) |
Dec
(39) |
2006 |
Jan
(18) |
Feb
(4) |
Mar
|
Apr
(5) |
May
|
Jun
|
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
(16) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-server/Server/Command Modified Files: approve_csr.pm backup_key.pm batch_cmd_backup_key.pm batch_cmd_check_csr.pm batch_cmd_check_csr_params.pm batch_cmd_check_key.pm batch_cmd_check_key_params.pm batch_cmd_check_pin.pm batch_cmd_complete_csr.pm batch_cmd_create_cert.pm batch_cmd_create_csr.pm batch_cmd_create_key.pm batch_cmd_create_pin.pm batch_cmd_enroll_pin.pm batch_cmd_enroll_pkcs12.pm batch_do_step.pm batch_import_data.pm check_csr.pm create_global_id.pm create_pin.pm create_pkcs10.pm create_pkcs8.pm dataexchange_backup.pm dataexchange_export.pm dataexchange_import.pm dataexchange_recovery.pm genCACert.pm genCAReq.pm genSKey.pm get_cert.pm get_csr.pm get_signature.pm insert_csr.pm insert_pin.pm insert_pkcs8.pm insert_signature.pm issue_cert.pm list_cert.pm list_csr.pm list_signature.pm lock_global_id.pm set_crin.pm unlock_global_id.pm update_csr.pm Added Files: ldap_add_cert.pm Log Message: adding two missing modules and take back my copyright Author of changes: --- NEW FILE: ldap_add_cert.pm --- ## OpenCA::Server::Command::ldap_add_cert ## Written by Michael Bell for the OpenCA project 2000 ## (c) Copyright 2005 Michael Bell ## (c) Copyright 2000-2005 Michael Bell =pod =head1 Description This module adds a certificate to the LDAP directory. If the certificate is already present then this is not an error. =head1 Parameters =over =item KEY The serial of the certificate which should be pushed to LDAP server. This parameter is required. =back =head1 Version $Revision: 1.1 $ =cut use strict; use warnings; package OpenCA::Server::Command::ldap_add_cert; use OpenCA::Server::Command; use vars qw(@ISA); @ISA = qw(OpenCA::Server::Command); use OpenCA::API qw (i18nGettext); $OpenCA::Server::Command::ldap_add_cert::AC::operation = "ldap cert adding"; $OpenCA::Server::Command::ldap_add_cert::AC::owner = "CERTIFICATE"; ####################################################################################### sub execute { my $self = shift; my $keys = { @_ }; ## check the interface parameters my $key = $keys->{'KEY'}; return $self->set_error ("I18N_OPENCA_API_CMD_LDAP_ADD_CERT_MISSING_KEY") if (not $keys->{KEY}); my $item = $self->{db}->get ( TABLE => "CERTIFICATE", KEY => $key, MODE => "OBJECT" ); if (not $self->{ldap}->publish_cert ($item)) { $self->debug ("This certificate should not be published."); $self->set_error (-1, "I18N_OPENCA_SERVER_CMD_LDAP_ADD_CERT_NO_PUBLIC_CERT"); return undef; } my $ca = 0; $ca = 1 if ($item->getParsed()->{IS_CA}); ## FIXME: missing errorhandling my $dn = $self->{ldap}->get_ldap_dn ($item->getParsed()->{DN}); my $result = $self->{ldap}->add_object (DN => $dn, ATTRIBUTES => $item->getParsed()->{DN_HASH}, CA => $ca); if ($ca) { $result = $self->{ldap}->add_attribute (DN => $dn, AUTHORITY_CERTIFICATE => $item); } else { $result = $self->{ldap}->add_attribute (DN => $dn, CERTIFICATE => $item); } return 1; } 1; Index: approve_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/approve_csr.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** approve_csr.pm 10 Aug 2005 16:03:49 -0000 1.7 --- approve_csr.pm 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA::Server::Command::approve_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::approve_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: backup_key.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/backup_key.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** backup_key.pm 10 Aug 2005 16:03:49 -0000 1.4 --- backup_key.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::backup_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::backup_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_backup_key.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_backup_key.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** batch_cmd_backup_key.pm 10 Aug 2005 16:03:49 -0000 1.4 --- batch_cmd_backup_key.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_backup_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_backup_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_check_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_check_csr.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** batch_cmd_check_csr.pm 10 Aug 2005 16:03:49 -0000 1.3 --- batch_cmd_check_csr.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_check_csr ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_check_csr ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_check_csr_params.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_check_csr_params.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** batch_cmd_check_csr_params.pm 10 Aug 2005 16:03:49 -0000 1.5 --- batch_cmd_check_csr_params.pm 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_check_csr_params ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_check_csr_params ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_check_key.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_check_key.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** batch_cmd_check_key.pm 10 Aug 2005 16:03:49 -0000 1.3 --- batch_cmd_check_key.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_check_key ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_check_key ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_check_key_params.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_check_key_params.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** batch_cmd_check_key_params.pm 10 Aug 2005 16:03:49 -0000 1.5 --- batch_cmd_check_key_params.pm 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_check_key_params ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_check_key_params ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_check_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_check_pin.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** batch_cmd_check_pin.pm 10 Aug 2005 16:03:49 -0000 1.4 --- batch_cmd_check_pin.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_check_pin ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_check_pin ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_complete_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_complete_csr.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** batch_cmd_complete_csr.pm 10 Aug 2005 16:03:49 -0000 1.3 --- batch_cmd_complete_csr.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_complete_csr ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_complete_csr ## Written 2004 by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2005 Michael Bell =pod Index: batch_cmd_create_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_create_cert.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** batch_cmd_create_cert.pm 10 Aug 2005 16:03:49 -0000 1.2 --- batch_cmd_create_cert.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_create_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_create_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_create_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_create_csr.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** batch_cmd_create_csr.pm 10 Aug 2005 16:03:49 -0000 1.3 --- batch_cmd_create_csr.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_create_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_create_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_create_key.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_create_key.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** batch_cmd_create_key.pm 10 Aug 2005 16:03:49 -0000 1.4 --- batch_cmd_create_key.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_create_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_create_key ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_create_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_create_pin.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** batch_cmd_create_pin.pm 10 Aug 2005 16:03:49 -0000 1.4 --- batch_cmd_create_pin.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_enroll_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_enroll_pin.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** batch_cmd_enroll_pin.pm 10 Aug 2005 16:03:49 -0000 1.2 --- batch_cmd_enroll_pin.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_enroll_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_enroll_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_cmd_enroll_pkcs12.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_cmd_enroll_pkcs12.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** batch_cmd_enroll_pkcs12.pm 12 Aug 2005 13:47:44 -0000 1.4 --- batch_cmd_enroll_pkcs12.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_cmd_enroll_pkcs12 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_cmd_enroll_pkcs12 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_do_step.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_do_step.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** batch_do_step.pm 10 Aug 2005 16:03:49 -0000 1.5 --- batch_do_step.pm 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_do_step ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_do_step ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: batch_import_data.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/batch_import_data.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** batch_import_data.pm 10 Aug 2005 16:03:49 -0000 1.5 --- batch_import_data.pm 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA::Server::Command::batch_import_data ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::batch_import_data ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: check_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/check_csr.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** check_csr.pm 12 Aug 2005 13:47:44 -0000 1.8 --- check_csr.pm 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA::Server::Command::check_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::check_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: create_global_id.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/create_global_id.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** create_global_id.pm 10 Aug 2005 16:03:49 -0000 1.3 --- create_global_id.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::create_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::create_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: create_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/create_pin.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** create_pin.pm 10 Aug 2005 16:03:49 -0000 1.3 --- create_pin.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: create_pkcs10.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/create_pkcs10.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** create_pkcs10.pm 10 Aug 2005 16:03:49 -0000 1.4 --- create_pkcs10.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::create_pkcs10 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::create_pkcs10 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: create_pkcs8.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/create_pkcs8.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** create_pkcs8.pm 10 Aug 2005 16:03:49 -0000 1.3 --- create_pkcs8.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::create_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::create_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: dataexchange_backup.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/dataexchange_backup.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_backup.pm 10 Aug 2005 16:03:49 -0000 1.2 --- dataexchange_backup.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::Server::Command::dataexchange_backup ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## --- 1,5 ---- ## OpenCA::Server::Command::dataexchange_backup ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## Index: dataexchange_export.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/dataexchange_export.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_export.pm 10 Aug 2005 16:03:49 -0000 1.2 --- dataexchange_export.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::Server::Command::dataexchange_export ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## --- 1,5 ---- ## OpenCA::Server::Command::dataexchange_export ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## Index: dataexchange_import.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/dataexchange_import.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** dataexchange_import.pm 10 Aug 2005 16:03:49 -0000 1.3 --- dataexchange_import.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::dataexchange_import ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## --- 1,5 ---- ## OpenCA::Server::Command::dataexchange_import ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## Index: dataexchange_recovery.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/dataexchange_recovery.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_recovery.pm 10 Aug 2005 16:03:49 -0000 1.2 --- dataexchange_recovery.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::Server::Command::dataexchange_recovery ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## --- 1,5 ---- ## OpenCA::Server::Command::dataexchange_recovery ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## Index: genCACert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/genCACert.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** genCACert.pm 12 Aug 2005 13:47:44 -0000 1.7 --- genCACert.pm 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA::Server::Command::genCACert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::genCACert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: genCAReq.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/genCAReq.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** genCAReq.pm 10 Aug 2005 16:03:49 -0000 1.4 --- genCAReq.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::genCAReq ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::genCAReq ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: genSKey.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/genSKey.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** genSKey.pm 12 Aug 2005 13:47:44 -0000 1.6 --- genSKey.pm 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA::Server::Command::genSKey ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004,2005 The OpenCA Project ## --- 1,5 ---- ## OpenCA::Server::Command::genSKey ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004,2005 Michael Bell ## Index: get_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/get_cert.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** get_cert.pm 15 Aug 2005 14:36:47 -0000 1.4 --- get_cert.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::get_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::get_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: get_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/get_csr.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** get_csr.pm 10 Aug 2005 16:03:49 -0000 1.9 --- get_csr.pm 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA::Server::Command::get_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::get_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: get_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/get_signature.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** get_signature.pm 10 Aug 2005 16:03:49 -0000 1.4 --- get_signature.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::get_signature ## Written by Michael Bell ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::get_signature ## Written by Michael Bell ! ## (c) Copyright 2005 Michael Bell =pod Index: insert_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/insert_csr.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** insert_csr.pm 15 Aug 2005 14:36:47 -0000 1.10 --- insert_csr.pm 5 Oct 2005 13:14:17 -0000 1.11 *************** *** 1,5 **** ## OpenCA::Server::Command::insert_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::insert_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: insert_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/insert_pin.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** insert_pin.pm 10 Aug 2005 16:03:49 -0000 1.4 --- insert_pin.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::insert_pin.pm ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::insert_pin.pm ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: insert_pkcs8.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/insert_pkcs8.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** insert_pkcs8.pm 10 Aug 2005 16:03:49 -0000 1.5 --- insert_pkcs8.pm 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA::Server::Command::insert_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::insert_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: insert_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/insert_signature.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** insert_signature.pm 10 Aug 2005 16:03:49 -0000 1.7 --- insert_signature.pm 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA::Server::Command::insert_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::insert_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: issue_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/issue_cert.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** issue_cert.pm 10 Aug 2005 16:03:49 -0000 1.9 --- issue_cert.pm 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA::Server::Command::issue_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::issue_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: list_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/list_cert.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** list_cert.pm 15 Aug 2005 14:36:47 -0000 1.4 --- list_cert.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,4 **** ## OpenCA::Server::Command::list_cert ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,4 ---- ## OpenCA::Server::Command::list_cert ! ## (c) Copyright 2005 Michael Bell =pod Index: list_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/list_csr.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** list_csr.pm 26 Jul 2005 16:22:41 -0000 1.6 --- list_csr.pm 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,4 **** ## OpenCA::Server::Command::list_csr ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,4 ---- ## OpenCA::Server::Command::list_csr ! ## (c) Copyright 2005 Michael Bell =pod Index: list_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/list_signature.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** list_signature.pm 10 Aug 2005 16:03:49 -0000 1.6 --- list_signature.pm 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA::Server::Command::list_signature ## Written by Michael Bell ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::list_signature ## Written by Michael Bell ! ## (c) Copyright 2005 Michael Bell =pod Index: lock_global_id.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/lock_global_id.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** lock_global_id.pm 10 Aug 2005 16:03:49 -0000 1.3 --- lock_global_id.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::lock_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::lock_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: set_crin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/set_crin.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** set_crin.pm 10 Aug 2005 16:03:49 -0000 1.4 --- set_crin.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::Server::Command::set_crin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::set_crin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: unlock_global_id.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/unlock_global_id.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** unlock_global_id.pm 10 Aug 2005 16:03:49 -0000 1.3 --- unlock_global_id.pm 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA::Server::Command::unlock_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::unlock_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: update_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-server/Server/Command/update_csr.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** update_csr.pm 15 Aug 2005 14:36:47 -0000 1.12 --- update_csr.pm 5 Oct 2005 13:14:17 -0000 1.13 *************** *** 1,5 **** ## OpenCA::Server::Command::update_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::Server::Command::update_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod |
From: <ope...@li...> - 2005-10-05 13:15:15
|
Update of /cvsroot/openca/openca-0.9/src/common/lib/locale/de_DE In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/common/lib/locale/de_DE Modified Files: openca.po Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: openca.po =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/locale/de_DE/openca.po,v retrieving revision 1.73 retrieving revision 1.74 diff -C2 -d -r1.73 -r1.74 *** openca.po 17 Aug 2005 08:13:34 -0000 1.73 --- openca.po 5 Oct 2005 13:14:24 -0000 1.74 *************** *** 3797,3801 **** #~ msgid "I18N_OPENCA_API_COPYRIGHT" ! #~ msgstr "(C) 1998-2005 The OpenCA Project" #~ msgid "I18N_OPENCA_API_MENU_HELP" --- 3797,3801 ---- #~ msgid "I18N_OPENCA_API_COPYRIGHT" ! #~ msgstr "(C) 1998-2005 Michael Bell" #~ msgid "I18N_OPENCA_API_MENU_HELP" |
Update of /cvsroot/openca/openca-0.9/src/common/lib/cmds In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/common/lib/cmds Modified Files: Makefile addCRR add_module add_right add_role add_script approveCRR approveCRRnotSigned bpDeletePIN bpDoFunction bpDoStep bpExportPIN bpImportNewProcess bpImportNewUser bpImportProcessData bpImportProcessDataCompact bpImportUpdateUser bpIssueCertificate bpRevokeCertificate bpSetState bpUnsetState changeCRR changePasswd cleanupSessions confirm_revreq crlList dataSearch dataView deleteCRR deleteCSR deletePasswd delete_module delete_right editCRR exportCAReqCert exportDB genCRL genCRLfromFile getStaticPage getcert hsmLogin hsmLogout importCACert importDB keyRecovery ldapAddCRL ldapAddCRLbyName ldapAddCert ldapAddCertByName ldapAddCerts ldapCreateCSR ldapDeleteCert ldapDeleteCertByName ldapImportCerts ldapUpdate ldapUpdateCA ldapUpdateCRL ldapUpdateCerts listCRR listCerts lists logRecovery new_module new_right new_role nodeDownloadAll nodeDownloadBP nodeDownloadCRL nodeDownloadCert nodeDownloadConfig nodeEnrollAll nodeEnrollBP nodeEnrollCACert nodeEnrollCRL nodeEnrollCert nodeEnrollConfig nodeReceiveAll nodeReceiveCRR nodeReceiveCSR nodeUploadAll nodeUploadCRR nodeUploadCSR raList rebuildChain rebuildOpenSSLindexDB removeFiles removeItem removeKey renewCSR revokeCertificate revoke_req scepGetCACert scepPKIOperation search search_rights sendCRINMail sendMail send_cert_key send_cert_key_openssl send_cert_key_pkcs12 send_cert_key_pkcs8 send_email_cert sendcert setPasswd setupInitialCert show_modules show_prepared_module show_prepared_right show_prepared_role show_rights show_roles signConfig stopDaemon submit_revreq test_cert updateOCSPindexDB updateSearchAttributes verifyPIN verifySignature viewCRL viewCRR viewCert viewLog viewSignature warnExpiring writeCertMail Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Makefile =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/Makefile,v retrieving revision 1.54 retrieving revision 1.55 diff -C2 -d -r1.54 -r1.55 *** Makefile 18 Nov 2004 14:43:54 -0000 1.54 --- Makefile 5 Oct 2005 13:14:17 -0000 1.55 *************** *** 1,5 **** # file: src/common/lib/cmds/Makefile # ! # (c) Copyright 2001-2004 The OpenCA Project TOP = ../../../.. --- 1,5 ---- # file: src/common/lib/cmds/Makefile # ! # (c) Copyright 2001-2004 Michael Bell TOP = ../../../.. Index: addCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/addCRR,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** addCRR 9 Nov 2004 16:53:16 -0000 1.11 --- addCRR 5 Oct 2005 13:14:17 -0000 1.12 *************** *** 1,4 **** ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: addCRR --- 1,4 ---- ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: addCRR Index: add_module =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/add_module,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** add_module 1 Oct 2004 10:03:29 -0000 1.9 --- add_module 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: add_module --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: add_module Index: add_right =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/add_right,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** add_right 1 Oct 2004 10:03:29 -0000 1.10 --- add_right 5 Oct 2005 13:14:17 -0000 1.11 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: add_right --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: add_right Index: add_role =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/add_role,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** add_role 1 Oct 2004 10:03:29 -0000 1.9 --- add_role 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: add_role --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: add_role Index: add_script =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/add_script,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** add_script 1 Oct 2004 10:03:29 -0000 1.9 --- add_script 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: add_script --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: add_script Index: approveCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/approveCRR,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** approveCRR 9 Nov 2004 16:53:16 -0000 1.19 --- approveCRR 5 Oct 2005 13:14:17 -0000 1.20 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: approveCRR --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: approveCRR Index: approveCRRnotSigned =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/approveCRRnotSigned,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** approveCRRnotSigned 9 Nov 2004 16:53:16 -0000 1.15 --- approveCRRnotSigned 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,4 **** ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: approveCRRnotSigned --- 1,4 ---- ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: approveCRRnotSigned Index: bpDeletePIN =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpDeletePIN,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** bpDeletePIN 1 Oct 2004 10:03:30 -0000 1.6 --- bpDeletePIN 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpDeletePIN --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpDeletePIN Index: bpDoFunction =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpDoFunction,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** bpDoFunction 9 Nov 2004 16:53:16 -0000 1.4 --- bpDoFunction 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: bpDoFunction --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 Michael Bell ## ## File Name: bpDoFunction Index: bpDoStep =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpDoStep,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** bpDoStep 15 Nov 2004 09:31:56 -0000 1.17 --- bpDoStep 5 Oct 2005 13:14:17 -0000 1.18 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: bpDoStep --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 Michael Bell ## ## File Name: bpDoStep Index: bpExportPIN =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpExportPIN,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -d -r1.20 -r1.21 *** bpExportPIN 15 Nov 2004 09:31:56 -0000 1.20 --- bpExportPIN 5 Oct 2005 13:14:17 -0000 1.21 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpExportPIN --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpExportPIN Index: bpImportNewProcess =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpImportNewProcess,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** bpImportNewProcess 1 Oct 2004 10:03:30 -0000 1.6 --- bpImportNewProcess 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpImportNewProcess --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpImportNewProcess Index: bpImportNewUser =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpImportNewUser,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** bpImportNewUser 1 Oct 2004 10:03:30 -0000 1.13 --- bpImportNewUser 5 Oct 2005 13:14:17 -0000 1.14 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpImportNewUser --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpImportNewUser Index: bpImportProcessData =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpImportProcessData,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** bpImportProcessData 1 Oct 2004 10:03:30 -0000 1.12 --- bpImportProcessData 5 Oct 2005 13:14:17 -0000 1.13 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpImportProcessData --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpImportProcessData Index: bpImportProcessDataCompact =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpImportProcessDataCompact,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** bpImportProcessDataCompact 9 Nov 2004 16:53:16 -0000 1.7 --- bpImportProcessDataCompact 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpImportProcessData --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpImportProcessData Index: bpImportUpdateUser =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpImportUpdateUser,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** bpImportUpdateUser 1 Oct 2004 10:03:30 -0000 1.12 --- bpImportUpdateUser 5 Oct 2005 13:14:17 -0000 1.13 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpImportUpdateUser --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpImportUpdateUser Index: bpIssueCertificate =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpIssueCertificate,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** bpIssueCertificate 1 Oct 2004 10:03:30 -0000 1.15 --- bpIssueCertificate 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2004 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: bpIssueCertificate --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2004 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 Michael Bell ## ## File Name: bpIssueCertificate Index: bpRevokeCertificate =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpRevokeCertificate,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** bpRevokeCertificate 1 Oct 2004 10:03:30 -0000 1.18 --- bpRevokeCertificate 5 Oct 2005 13:14:17 -0000 1.19 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2004 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: bpRevokeCertificate --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2004 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 Michael Bell ## ## File Name: bpRevokeCertificate Index: bpSetState =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpSetState,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bpSetState 1 Oct 2004 10:03:30 -0000 1.2 --- bpSetState 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: bpSetState --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: bpSetState Index: bpUnsetState =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/bpUnsetState,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** bpUnsetState 1 Oct 2004 10:03:30 -0000 1.2 --- bpUnsetState 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) 2002-2004 The OpenCA Project ## ## File Name: bpUnsetState --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) 2002-2004 Michael Bell ## ## File Name: bpUnsetState Index: changeCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/changeCRR,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** changeCRR 9 Nov 2004 16:53:16 -0000 1.21 --- changeCRR 5 Oct 2005 13:14:17 -0000 1.22 *************** *** 1,4 **** ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: changeCRR --- 1,4 ---- ## OpenCA - Public Web-Gateway Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: changeCRR Index: changePasswd =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/changePasswd,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** changePasswd 1 Oct 2004 10:03:30 -0000 1.13 --- changePasswd 5 Oct 2005 13:14:17 -0000 1.14 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: changePasswd --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: changePasswd Index: cleanupSessions =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/cleanupSessions,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** cleanupSessions 1 Oct 2004 10:03:30 -0000 1.2 --- cleanupSessions 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,4 **** ## OpenCA - CA Command ! ## (c) 1998-2003 The OpenCA Project ## ## File Name: cleanupSessions --- 1,4 ---- ## OpenCA - CA Command ! ## (c) 1998-2003 Michael Bell ## ## File Name: cleanupSessions Index: confirm_revreq =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/confirm_revreq,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** confirm_revreq 9 Nov 2004 16:53:17 -0000 1.23 --- confirm_revreq 5 Oct 2005 13:14:17 -0000 1.24 *************** *** 1,4 **** ## OpenCA Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: new_ask4rev --- 1,4 ---- ## OpenCA Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: new_ask4rev Index: crlList =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/crlList,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** crlList 25 Apr 2005 15:39:26 -0000 1.13 --- crlList 5 Oct 2005 13:14:17 -0000 1.14 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: crlList --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: crlList Index: dataSearch =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/dataSearch,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dataSearch 15 Nov 2004 16:33:09 -0000 1.1 --- dataSearch 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) 2002-2004 by The OpenCA Project ## ## File Name: dataSearch --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) 2002-2004 by Michael Bell ## ## File Name: dataSearch Index: dataView =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/dataView,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dataView 15 Nov 2004 16:33:09 -0000 1.1 --- dataView 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: dataView --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: dataView Index: deleteCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/deleteCRR,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** deleteCRR 1 Oct 2004 10:03:30 -0000 1.7 --- deleteCRR 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: deleleCRR --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: deleleCRR Index: deleteCSR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/deleteCSR,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** deleteCSR 1 Oct 2004 10:03:30 -0000 1.6 --- deleteCSR 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: deleteCSR --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: deleteCSR Index: deletePasswd =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/deletePasswd,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** deletePasswd 1 Oct 2004 10:03:30 -0000 1.4 --- deletePasswd 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: deletePasswd --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: deletePasswd Index: delete_module =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/delete_module,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** delete_module 1 Oct 2004 10:03:30 -0000 1.8 --- delete_module 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001 The OpenCA Project ## ## File Name: delete_module --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001 Michael Bell ## ## File Name: delete_module Index: delete_right =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/delete_right,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** delete_right 1 Oct 2004 10:03:30 -0000 1.8 --- delete_right 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001 The OpenCA Project ## ## File Name: delete_right --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001 Michael Bell ## ## File Name: delete_right Index: editCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/editCRR,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** editCRR 1 Oct 2004 10:03:30 -0000 1.13 --- editCRR 5 Oct 2005 13:14:17 -0000 1.14 *************** *** 1,5 **** ## OpenCA - RAServer Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: editCRR --- 1,5 ---- ## OpenCA - RAServer Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: editCRR Index: exportCAReqCert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/exportCAReqCert,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** exportCAReqCert 1 Oct 2004 10:03:30 -0000 1.8 --- exportCAReqCert 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 The OpenCA Project ## ## File Name: exportCAReqCert --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 Michael Bell ## ## File Name: exportCAReqCert Index: exportDB =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/exportDB,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** exportDB 1 Oct 2004 10:03:30 -0000 1.5 --- exportDB 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,4 **** ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: exportDB --- 1,4 ---- ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: exportDB Index: genCRL =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/genCRL,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** genCRL 1 Oct 2004 10:03:30 -0000 1.15 --- genCRL 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: genCRL --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: genCRL Index: genCRLfromFile =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/genCRLfromFile,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** genCRLfromFile 4 Apr 2005 09:07:21 -0000 1.15 --- genCRLfromFile 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: genCRLfromFile --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: genCRLfromFile Index: getStaticPage =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/getStaticPage,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** getStaticPage 1 Apr 2005 21:05:21 -0000 1.30 --- getStaticPage 5 Oct 2005 13:14:17 -0000 1.31 *************** *** 1,5 **** ## OpenCA Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: getStaticPage --- 1,5 ---- ## OpenCA Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 Michael Bell ## ## File Name: getStaticPage Index: getcert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/getcert,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** getcert 1 Oct 2004 10:03:30 -0000 1.15 --- getcert 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,5 **** ## OpenCA - Public Web-Gateway Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: getcert --- 1,5 ---- ## OpenCA - Public Web-Gateway Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: getcert Index: hsmLogin =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/hsmLogin,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** hsmLogin 1 Apr 2005 15:42:34 -0000 1.5 --- hsmLogin 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 The OpenCA Project ## ## File Name: HSMlogin --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 Michael Bell ## ## File Name: HSMlogin Index: hsmLogout =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/hsmLogout,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** hsmLogout 1 Apr 2005 15:42:34 -0000 1.5 --- hsmLogout 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 The OpenCA Project ## ## File Name: HSMlogout --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2002 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2003-2004 Michael Bell ## ## File Name: HSMlogout Index: importCACert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/importCACert,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** importCACert 1 Oct 2004 10:03:30 -0000 1.10 --- importCACert 5 Oct 2005 13:14:17 -0000 1.11 *************** *** 1,4 **** ## OpenCA - CA Command ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: importCACert --- 1,4 ---- ## OpenCA - CA Command ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: importCACert Index: importDB =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/importDB,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** importDB 1 Oct 2004 10:03:30 -0000 1.6 --- importDB 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,4 **** ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: importDB --- 1,4 ---- ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: importDB Index: keyRecovery =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/keyRecovery,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** keyRecovery 15 Nov 2004 16:33:09 -0000 1.1 --- keyRecovery 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: keyRecovery --- 1,5 ---- ## OpenCA - CA Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: keyRecovery Index: ldapAddCRL =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapAddCRL,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapAddCRL 1 Oct 2004 10:03:30 -0000 1.3 --- ldapAddCRL 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapAddCRL --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapAddCRL Index: ldapAddCRLbyName =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapAddCRLbyName,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapAddCRLbyName 1 Oct 2004 10:03:30 -0000 1.3 --- ldapAddCRLbyName 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapAddCRLbyName --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapAddCRLbyName Index: ldapAddCert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapAddCert,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapAddCert 1 Oct 2004 10:03:30 -0000 1.3 --- ldapAddCert 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapAddCert --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapAddCert Index: ldapAddCertByName =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapAddCertByName,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapAddCertByName 1 Oct 2004 10:03:30 -0000 1.3 --- ldapAddCertByName 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapAddCertByName --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapAddCertByName Index: ldapAddCerts =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapAddCerts,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ldapAddCerts 9 Nov 2004 16:53:17 -0000 1.4 --- ldapAddCerts 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapAddCerts --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapAddCerts Index: ldapCreateCSR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapCreateCSR,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** ldapCreateCSR 25 Nov 2004 17:02:17 -0000 1.7 --- ldapCreateCSR 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: ldapCreateCSR --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 Michael Bell ## ## File Name: ldapCreateCSR Index: ldapDeleteCert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapDeleteCert,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapDeleteCert 1 Oct 2004 10:03:30 -0000 1.3 --- ldapDeleteCert 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapDeleteCert --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapDeleteCert Index: ldapDeleteCertByName =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapDeleteCertByName,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapDeleteCertByName 1 Oct 2004 10:03:30 -0000 1.3 --- ldapDeleteCertByName 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapDeleteCertByName --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapDeleteCertByName Index: ldapImportCerts =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapImportCerts,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapImportCerts 1 Oct 2004 10:03:30 -0000 1.3 --- ldapImportCerts 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: ldapImportCerts --- 1,5 ---- ## OpenCA - command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: ldapImportCerts Index: ldapUpdate =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapUpdate,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapUpdate 1 Oct 2004 10:03:30 -0000 1.3 --- ldapUpdate 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: ldapUpdate --- 1,5 ---- ## OpenCA - command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: ldapUpdate Index: ldapUpdateCA =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapUpdateCA,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapUpdateCA 1 Oct 2004 10:03:30 -0000 1.3 --- ldapUpdateCA 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapUpdateCA --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapUpdateCA Index: ldapUpdateCRL =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapUpdateCRL,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ldapUpdateCRL 1 Oct 2004 10:03:30 -0000 1.3 --- ldapUpdateCRL 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapUpdateCRL --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapUpdateCRL Index: ldapUpdateCerts =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/ldapUpdateCerts,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** ldapUpdateCerts 9 Nov 2004 16:53:17 -0000 1.4 --- ldapUpdateCerts 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 The OpenCA Project ## ## File Name: ldapUpdateCerts --- 1,5 ---- ## OpenCA - command ## Written by Michael Bell for the OpenCA project 2000 ! ## (c) Copyright 2000-2004 Michael Bell ## ## File Name: ldapUpdateCerts Index: listCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/listCRR,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** listCRR 9 Nov 2004 16:53:17 -0000 1.4 --- listCRR 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: listCRR --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 Michael Bell ## ## File Name: listCRR Index: listCerts =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/listCerts,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** listCerts 4 Apr 2005 09:07:22 -0000 1.18 --- listCerts 5 Oct 2005 13:14:17 -0000 1.19 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: certsList --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: certsList Index: lists =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/lists,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** lists 4 Apr 2005 09:07:22 -0000 1.18 --- lists 5 Oct 2005 13:14:17 -0000 1.19 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: lists --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: lists Index: logRecovery =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/logRecovery,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** logRecovery 1 Oct 2004 10:03:30 -0000 1.3 --- logRecovery 5 Oct 2005 13:14:17 -0000 1.4 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 The OpenCA Project ## ## File Name: logRecovery --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004 Michael Bell ## ## File Name: logRecovery Index: new_module =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/new_module,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** new_module 1 Oct 2004 10:03:30 -0000 1.7 --- new_module 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: new_module --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: new_module Index: new_right =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/new_right,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** new_right 1 Oct 2004 10:03:30 -0000 1.7 --- new_right 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: new_right --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: new_right Index: new_role =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/new_role,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** new_role 9 Nov 2004 16:53:17 -0000 1.10 --- new_role 5 Oct 2005 13:14:17 -0000 1.11 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: new_role --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: new_role Index: nodeDownloadAll =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeDownloadAll,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nodeDownloadAll 1 Oct 2004 10:03:30 -0000 1.5 --- nodeDownloadAll 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeDownloadAll --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeDownloadAll Index: nodeDownloadBP =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeDownloadBP,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeDownloadBP 1 Oct 2004 10:03:30 -0000 1.6 --- nodeDownloadBP 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeDownloadBP --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeDownloadBP Index: nodeDownloadCRL =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeDownloadCRL,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeDownloadCRL 1 Oct 2004 10:03:30 -0000 1.6 --- nodeDownloadCRL 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeDownloadCRL --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeDownloadCRL Index: nodeDownloadCert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeDownloadCert,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeDownloadCert 1 Oct 2004 10:03:30 -0000 1.6 --- nodeDownloadCert 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeDownloadCert --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeDownloadCert Index: nodeDownloadConfig =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeDownloadConfig,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeDownloadConfig 1 Oct 2004 10:03:30 -0000 1.6 --- nodeDownloadConfig 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeDownloadConfig --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeDownloadConfig Index: nodeEnrollAll =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollAll,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nodeEnrollAll 1 Oct 2004 10:03:30 -0000 1.5 --- nodeEnrollAll 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollAll --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollAll Index: nodeEnrollBP =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollBP,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeEnrollBP 1 Oct 2004 10:03:30 -0000 1.6 --- nodeEnrollBP 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollBP --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollBP Index: nodeEnrollCACert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollCACert,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** nodeEnrollCACert 1 Oct 2004 10:03:30 -0000 1.7 --- nodeEnrollCACert 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollCACert --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollCACert Index: nodeEnrollCRL =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollCRL,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeEnrollCRL 1 Oct 2004 10:03:30 -0000 1.6 --- nodeEnrollCRL 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollCRL --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollCRL Index: nodeEnrollCert =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollCert,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeEnrollCert 1 Oct 2004 10:03:30 -0000 1.6 --- nodeEnrollCert 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollCert --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollCert Index: nodeEnrollConfig =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeEnrollConfig,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeEnrollConfig 1 Oct 2004 10:03:30 -0000 1.6 --- nodeEnrollConfig 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeEnrollConfig --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeEnrollConfig Index: nodeReceiveAll =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeReceiveAll,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeReceiveAll 1 Oct 2004 10:03:30 -0000 1.6 --- nodeReceiveAll 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeReceiveAll --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeReceiveAll Index: nodeReceiveCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeReceiveCRR,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeReceiveCRR 1 Oct 2004 10:03:30 -0000 1.6 --- nodeReceiveCRR 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeReceiveCRR --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeReceiveCRR Index: nodeReceiveCSR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeReceiveCSR,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeReceiveCSR 1 Oct 2004 10:03:30 -0000 1.6 --- nodeReceiveCSR 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeReceiveCSR --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeReceiveCSR Index: nodeUploadAll =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeUploadAll,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** nodeUploadAll 1 Oct 2004 10:03:30 -0000 1.5 --- nodeUploadAll 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeUploadAll --- 1,5 ---- ## OpenCA - Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeUploadAll Index: nodeUploadCRR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeUploadCRR,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeUploadCRR 1 Oct 2004 10:03:30 -0000 1.6 --- nodeUploadCRR 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeUploadCRR --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeUploadCRR Index: nodeUploadCSR =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/nodeUploadCSR,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** nodeUploadCSR 1 Oct 2004 10:03:30 -0000 1.6 --- nodeUploadCSR 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 The OpenCA Project ## ## File Name: nodeUploadCSR --- 1,5 ---- ## OpenCA - CA Command ## Written by Michael Bell for the OpenCA project 2001 ! ## (c) Copyright 2001-2004 Michael Bell ## ## File Name: nodeUploadCSR Index: raList =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/raList,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** raList 1 Oct 2004 10:03:30 -0000 1.15 --- raList 5 Oct 2005 13:14:17 -0000 1.16 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: raList --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: raList Index: rebuildChain =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/rebuildChain,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** rebuildChain 1 Oct 2004 10:03:30 -0000 1.5 --- rebuildChain 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,5 **** ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: rebuildChain --- 1,5 ---- ## OpenCA - Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: rebuildChain Index: rebuildOpenSSLindexDB =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/rebuildOpenSSLindexDB,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** rebuildOpenSSLindexDB 1 Oct 2004 10:03:30 -0000 1.5 --- rebuildOpenSSLindexDB 5 Oct 2005 13:14:17 -0000 1.6 *************** *** 1,4 **** ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 The OpenCA Project ## ## File Name: rebuildOpenSSLindexDB --- 1,4 ---- ## OpenCA - CA Command ! ## (c) Copyright 1998-2004 Michael Bell ## ## File Name: rebuildOpenSSLindexDB Index: removeFiles =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/lib/cmds/removeFiles,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** removeFiles 1 Oct 2004 10:03:30 -0000 1.4 --- removeFiles 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 2,6 **** ## OpenCA - RA Server Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 The OpenCA Project ## ## File Name: removeFiles --- 2,6 ---- ## OpenCA - RA Server Command ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2004 Michael Bell ## ## File Name: removeFiles Index: removeItem =================================================================== RCS file: /c... [truncated message content] |
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-html/HTML/Command Modified Files: approve_csr.pm change_csr.pm dataexchange_backup.pm dataexchange_export.pm dataexchange_import.pm dataexchange_recovery.pm edit_csr.pm genCACert.pm genCAReq.pm genSKey.pm getParams.pm insert_signature.pm issue_cert.pm list_cert.pm list_csr.pm new_csr.pm server_info.pm set_language.pm view_cert.pm view_csr.pm view_signature.pm Added Files: ldap_add_cert.pm Log Message: adding two missing modules and take back my copyright Author of changes: --- NEW FILE: ldap_add_cert.pm --- ## OpenCA::UI::HTML::Command::ldap_add_cert ## (c) Copyright 2005 Michael Bell =pod =head1 Description Add a certificate to the LDAP server. =head1 Parameters =over =item * key =back =cut use strict; use warnings; package OpenCA::UI::HTML::Command::ldap_add_cert; use OpenCA::UI::HTML::Command; use vars qw(@ISA); @ISA = qw(OpenCA::UI::HTML::Command); use OpenCA::API qw (i18nGettext); use Math::BigInt lib => 'GMP'; use Date::Parse; ($OpenCA::UI::HTML::Command::ldap_add_cert::VERSION = '$Revision: 1.1 $' ) =~ s/(?:^.*: (\d+))|(?:\s+\$$)/defined $1?"0\.9":""/eg; sub execute { my $self = shift; my $result = $self->{api}->command ("ldap_add_cert", "KEY" => $self->{query}->param('key')); return $self->api_error() if (not $result); return $self->{parent}->send_page ( "TITLE" => i18nGettext ("I18N_OPENCA_UI_HTML_CMD_LDAP_ADD_CERT_TITLE"), "EXPLANATION" => i18nGettext ("I18N_OPENCA_UI_HTML_CMD_LDAP_ADD_CERT_SUCCESS"), "TIMESTAMP" => 1, ); } 1; Index: approve_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/approve_csr.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** approve_csr.pm 11 Jul 2005 16:30:50 -0000 1.1 --- approve_csr.pm 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::approve_csr ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::approve_csr ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: change_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/change_csr.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** change_csr.pm 15 Aug 2005 14:36:47 -0000 1.4 --- change_csr.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::change_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::change_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: dataexchange_backup.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/dataexchange_backup.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_backup.pm 10 Aug 2005 16:03:51 -0000 1.2 --- dataexchange_backup.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::dataexchange_backup ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::dataexchange_backup ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: dataexchange_export.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/dataexchange_export.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_export.pm 10 Aug 2005 16:03:51 -0000 1.2 --- dataexchange_export.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::dataexchange_export ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::dataexchange_export ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: dataexchange_import.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/dataexchange_import.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_import.pm 10 Aug 2005 16:03:51 -0000 1.2 --- dataexchange_import.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::dataexchange_import ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::dataexchange_import ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: dataexchange_recovery.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/dataexchange_recovery.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dataexchange_recovery.pm 10 Aug 2005 16:03:51 -0000 1.2 --- dataexchange_recovery.pm 5 Oct 2005 13:14:17 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::dataexchange_recovery ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::dataexchange_recovery ## written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: edit_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/edit_csr.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** edit_csr.pm 15 Aug 2005 14:36:47 -0000 1.6 --- edit_csr.pm 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::edit_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::edit_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: genCACert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/genCACert.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** genCACert.pm 10 Aug 2005 16:03:51 -0000 1.6 --- genCACert.pm 5 Oct 2005 13:14:17 -0000 1.7 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::genCACert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::genCACert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: genCAReq.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/genCAReq.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** genCAReq.pm 10 Aug 2005 16:03:51 -0000 1.9 --- genCAReq.pm 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::genCAReq ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::genCAReq ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: genSKey.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/genSKey.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** genSKey.pm 10 Aug 2005 16:03:51 -0000 1.7 --- genSKey.pm 5 Oct 2005 13:14:17 -0000 1.8 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::genSKey ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004,2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::genSKey ## (c) 1998-2003 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2004,2005 Michael Bell =pod Index: getParams.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/getParams.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** getParams.pm 10 Aug 2005 16:03:51 -0000 1.4 --- getParams.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::getParams ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::getParams ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2005 Michael Bell =pod Index: insert_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/insert_signature.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** insert_signature.pm 8 Jul 2005 15:49:53 -0000 1.1 --- insert_signature.pm 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::insert_signature ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::insert_signature ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: issue_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/issue_cert.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** issue_cert.pm 11 Jul 2005 16:30:50 -0000 1.1 --- issue_cert.pm 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::issue_cert ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::issue_cert ## Written by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod Index: list_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/list_cert.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** list_cert.pm 15 Aug 2005 10:16:45 -0000 1.8 --- list_cert.pm 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::list_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::list_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: list_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/list_csr.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** list_csr.pm 15 Aug 2005 10:16:45 -0000 1.9 --- list_csr.pm 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::list_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::list_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: new_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/new_csr.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** new_csr.pm 17 Aug 2005 08:13:38 -0000 1.11 --- new_csr.pm 5 Oct 2005 13:14:17 -0000 1.12 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::new_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::new_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: server_info.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/server_info.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** server_info.pm 12 Aug 2005 13:47:44 -0000 1.4 --- server_info.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::server_info ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::server_info ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: set_language.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/set_language.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** set_language.pm 6 Jul 2005 15:19:56 -0000 1.1 --- set_language.pm 5 Oct 2005 13:14:17 -0000 1.2 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::set_language ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::set_language ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2005 Michael Bell =pod Index: view_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/view_cert.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** view_cert.pm 5 Oct 2005 13:04:00 -0000 1.8 --- view_cert.pm 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::view_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::view_cert ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: view_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/view_csr.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** view_csr.pm 15 Aug 2005 14:36:47 -0000 1.11 --- view_csr.pm 5 Oct 2005 13:14:17 -0000 1.12 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::view_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::view_csr ## (c) 1998-2001 by Massimiliano Pala and OpenCA Group ! ## (c) Copyright 2002-2005 Michael Bell =pod Index: view_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Command/view_signature.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** view_signature.pm 10 Aug 2005 16:03:51 -0000 1.4 --- view_signature.pm 5 Oct 2005 13:14:17 -0000 1.5 *************** *** 1,5 **** ## OpenCA::UI::HTML::Command::view_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project =pod --- 1,5 ---- ## OpenCA::UI::HTML::Command::view_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell =pod |
From: <ope...@li...> - 2005-10-05 13:15:09
|
Update of /cvsroot/openca/openca-0.9/src/common/etc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/common/etc Modified Files: configure_etc.sh.in openca_start.template.in Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: configure_etc.sh.in =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/etc/configure_etc.sh.in,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** configure_etc.sh.in 17 Jun 2005 14:58:01 -0000 1.8 --- configure_etc.sh.in 5 Oct 2005 13:14:17 -0000 1.9 *************** *** 4,8 **** ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 The OpenCA Project. All rights reserved. set -e --- 4,8 ---- ## Written by Michael Bell for the OpenCA project 2004 ! ## (c) Copyright 2004 Michael Bell. All rights reserved. set -e Index: openca_start.template.in =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/common/etc/openca_start.template.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** openca_start.template.in 12 Aug 2005 13:47:42 -0000 1.9 --- openca_start.template.in 5 Oct 2005 13:14:17 -0000 1.10 *************** *** 3,7 **** ## OpenCA Server Engine Startup Script ! ## (c) 2004 The OpenCA Project ## All Rights Reserved --- 3,7 ---- ## OpenCA Server Engine Startup Script ! ## (c) 2004 Michael Bell ## All Rights Reserved |
From: <ope...@li...> - 2005-10-05 13:14:50
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-html Modified Files: HTML.pm LICENSE Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: HTML.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML.pm,v retrieving revision 1.40 retrieving revision 1.41 diff -C2 -d -r1.40 -r1.41 *** HTML.pm 17 Aug 2005 08:13:38 -0000 1.40 --- HTML.pm 5 Oct 2005 13:14:28 -0000 1.41 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:34 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. |
From: <ope...@li...> - 2005-10-05 13:14:50
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-xml-cache In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-xml-cache Modified Files: Cache.pm LICENSE README Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Cache.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-xml-cache/Cache.pm,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -d -r1.21 -r1.22 *** Cache.pm 7 Sep 2005 15:31:01 -0000 1.21 --- Cache.pm 5 Oct 2005 13:14:28 -0000 1.22 *************** *** 3,7 **** ## Written by Michael Bell for the OpenCA project 2003 ## Copyright (C) 2005 Michael Bell ! ## Copyright (C) 2003-2005 The OpenCA Project ## ## GNU Public License Version 2 --- 3,7 ---- ## Written by Michael Bell for the OpenCA project 2003 ## Copyright (C) 2005 Michael Bell ! ## Copyright (C) 2003-2005 Michael Bell ## ## GNU Public License Version 2 Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-xml-cache/LICENSE,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LICENSE 7 Sep 2005 15:31:02 -0000 1.3 --- LICENSE 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 3,7 **** ## Written by Michael Bell for the OpenCA project 2003 ## Copyright (C) 2005 Michael Bell ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 3,7 ---- ## Written by Michael Bell for the OpenCA project 2003 ## Copyright (C) 2005 Michael Bell ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: README =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-xml-cache/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 1 Oct 2004 10:03:34 -0000 1.2 --- README 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ======================================================================= OpenCA::XML::Cache - Verison 1.0.0 ! (c) 2003 The OpenCA Project ======================================================================= --- 1,5 ---- ======================================================================= OpenCA::XML::Cache - Verison 1.0.0 ! (c) 2003 Michael Bell ======================================================================= |
From: <ope...@li...> - 2005-10-05 13:14:50
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-shell/Shell Modified Files: Client.pm Login.pm Protocol.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Client.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Client.pm 10 Aug 2005 16:03:51 -0000 1.11 --- Client.pm 5 Oct 2005 13:14:28 -0000 1.12 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## (c) Copyright 2003-2005 The OpenCA Project =pod --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## (c) Copyright 2003-2005 Michael Bell =pod Index: Login.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Login.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** Login.pm 13 Jun 2005 10:41:32 -0000 1.2 --- Login.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 2,6 **** ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) copyright 2004, 2005 The OpenCA Project =pod --- 2,6 ---- ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) copyright 2004, 2005 Michael Bell =pod Index: Protocol.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Protocol.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Protocol.pm 10 Aug 2005 16:03:51 -0000 1.8 --- Protocol.pm 5 Oct 2005 13:14:28 -0000 1.9 *************** *** 2,6 **** ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) copyright 2004, 2005 The OpenCA Project =pod --- 2,6 ---- ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) copyright 2004, 2005 Michael Bell =pod |
From: <ope...@li...> - 2005-10-05 13:14:48
|
Update of /cvsroot/openca/openca-0.9/src/web-interfaces/pub In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/web-interfaces/pub Modified Files: pki.in Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: pki.in =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/web-interfaces/pub/pki.in,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** pki.in 17 Aug 2005 08:13:38 -0000 1.26 --- pki.in 5 Oct 2005 13:14:29 -0000 1.27 *************** *** 4,8 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2004 The OpenCA Project ## this library is only used to serialize the CGI stuff, --- 4,8 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## (c) Copyright 2003-2004 Michael Bell ## this library is only used to serialize the CGI stuff, |
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-shell/Shell/Client Modified Files: approve_csr.pm batch_do_step.pm batch_import_data.pm create_global_id.pm create_pin.pm create_pkcs10.pm create_pkcs8.pm genCACert.pm genCAReq.pm genSKey.pm get_csr.pm insert_csr.pm insert_pkcs8.pm insert_signature.pm issue_cert.pm list_csr.pm set_crin.pm update_csr.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: approve_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/approve_csr.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** approve_csr.pm 10 Aug 2005 16:03:51 -0000 1.2 --- approve_csr.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::approve_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::approve_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: batch_do_step.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/batch_do_step.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** batch_do_step.pm 10 Aug 2005 16:03:51 -0000 1.2 --- batch_do_step.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::batch_do_step ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::batch_do_step ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: batch_import_data.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/batch_import_data.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** batch_import_data.pm 10 Aug 2005 16:03:51 -0000 1.2 --- batch_import_data.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::batch_import_data ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::batch_import_data ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: create_global_id.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/create_global_id.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create_global_id.pm 10 Aug 2005 16:03:51 -0000 1.2 --- create_global_id.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::create_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::create_global_id ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: create_pin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/create_pin.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create_pin.pm 10 Aug 2005 16:03:51 -0000 1.2 --- create_pin.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::create_pin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: create_pkcs10.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/create_pkcs10.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create_pkcs10.pm 10 Aug 2005 16:03:51 -0000 1.2 --- create_pkcs10.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::create_pkcs10 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::create_pkcs10 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: create_pkcs8.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/create_pkcs8.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** create_pkcs8.pm 10 Aug 2005 16:03:51 -0000 1.2 --- create_pkcs8.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::create_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::create_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: genCACert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/genCACert.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** genCACert.pm 10 Aug 2005 16:03:51 -0000 1.3 --- genCACert.pm 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::genCACert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::genCACert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: genCAReq.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/genCAReq.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** genCAReq.pm 10 Aug 2005 16:03:51 -0000 1.4 --- genCAReq.pm 5 Oct 2005 13:14:28 -0000 1.5 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::genCAReq ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::genCAReq ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: genSKey.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/genSKey.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** genSKey.pm 10 Aug 2005 16:03:51 -0000 1.5 --- genSKey.pm 5 Oct 2005 13:14:28 -0000 1.6 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::genSKey ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::genSKey ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: get_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/get_csr.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** get_csr.pm 10 Aug 2005 16:03:51 -0000 1.3 --- get_csr.pm 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::get_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::get_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: insert_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/insert_csr.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** insert_csr.pm 10 Aug 2005 16:03:51 -0000 1.2 --- insert_csr.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::insert_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::insert_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: insert_pkcs8.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/insert_pkcs8.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** insert_pkcs8.pm 10 Aug 2005 16:03:51 -0000 1.2 --- insert_pkcs8.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::insert_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::insert_pkcs8 ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: insert_signature.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/insert_signature.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** insert_signature.pm 10 Aug 2005 16:03:51 -0000 1.3 --- insert_signature.pm 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::insert_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::insert_signature ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: issue_cert.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/issue_cert.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** issue_cert.pm 10 Aug 2005 16:03:51 -0000 1.2 --- issue_cert.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::issue_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::issue_cert ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: list_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/list_csr.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** list_csr.pm 10 Aug 2005 16:03:51 -0000 1.3 --- list_csr.pm 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::list_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::list_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: set_crin.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/set_crin.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** set_crin.pm 10 Aug 2005 16:03:51 -0000 1.2 --- set_crin.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::set_crin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::set_crin ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ Index: update_csr.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell/Client/update_csr.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** update_csr.pm 10 Aug 2005 16:03:51 -0000 1.2 --- update_csr.pm 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** ## OpenCA::UI::Shell::Client::update_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 The OpenCA Project ## $Revision$ --- 1,5 ---- ## OpenCA::UI::Shell::Client::update_csr ## Written 2005 by Michael Bell for the OpenCA project ! ## (c) Copyright 2005 Michael Bell ## $Revision$ |
From: <ope...@li...> - 2005-10-05 13:14:41
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-html/HTML Modified Files: Menu.pm Script.pm View.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Menu.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Menu.pm,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** Menu.pm 15 Aug 2005 10:16:45 -0000 1.8 --- Menu.pm 5 Oct 2005 13:14:28 -0000 1.9 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 Michael Bell ## All rights reserved. Index: Script.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/Script.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Script.pm 5 Oct 2005 13:03:59 -0000 1.3 --- Script.pm 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 1,3 **** ! ## (C) 2005 The OpenCA Project ## written by Michael Bell --- 1,3 ---- ! ## (C) 2005 Michael Bell ## written by Michael Bell Index: View.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-html/HTML/View.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** View.pm 17 Aug 2005 08:13:38 -0000 1.15 --- View.pm 5 Oct 2005 13:14:28 -0000 1.16 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2003-2005 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2003-2005 Michael Bell ## All rights reserved. |
From: <ope...@li...> - 2005-10-05 13:14:41
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-dbi In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-dbi Modified Files: DBI.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: DBI.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-dbi/DBI.pm,v retrieving revision 1.162 retrieving revision 1.163 diff -C2 -d -r1.162 -r1.163 *** DBI.pm 5 Oct 2005 13:03:59 -0000 1.162 --- DBI.pm 5 Oct 2005 13:14:27 -0000 1.163 *************** *** 3,7 **** ## Written by Michael Bell for the OpenCA project 2000 ## Re-Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2000-2005 The OpenCA Project ## --- 3,7 ---- ## Written by Michael Bell for the OpenCA project 2000 ## Re-Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2000-2005 Michael Bell ## |
From: <ope...@li...> - 2005-10-05 13:14:41
|
Update of /cvsroot/openca/openca-0.9/src/openca-sv/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/openca-sv/src Modified Files: tools.c Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: tools.c =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/openca-sv/src/tools.c,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** tools.c 1 Oct 2004 10:03:35 -0000 1.4 --- tools.c 5 Oct 2005 13:14:28 -0000 1.5 *************** *** 1,4 **** /* OpenCA PKCS#7 tool - (c) 2000 by Massimiliano Pala and OpenCA Group */ ! /* OpenCA PKCS#7 tool - (c) 2004 The OpenCA Project */ #include <openca/general.h> --- 1,4 ---- /* OpenCA PKCS#7 tool - (c) 2000 by Massimiliano Pala and OpenCA Group */ ! /* OpenCA PKCS#7 tool - (c) 2004 Michael Bell */ #include <openca/general.h> |
From: <ope...@li...> - 2005-10-05 13:14:40
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ldap In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ldap Modified Files: LDAP.pm LICENSE Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: LDAP.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ldap/LDAP.pm,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** LDAP.pm 5 Oct 2005 13:03:59 -0000 1.17 --- LDAP.pm 5 Oct 2005 13:14:27 -0000 1.18 *************** *** 2,6 **** ## ## (c) 1999-2002 by Massimiliano Pala ! ## (c) 2002-2004 The OpenCA Project ## (c) 2005 Michael Bell ## All rights reserved. --- 2,6 ---- ## ## (c) 1999-2002 by Massimiliano Pala ! ## (c) 2002-2004 Michael Bell ## (c) 2005 Michael Bell ## All rights reserved. Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ldap/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:33 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 1,5 **** ## OpenCA::LDAP ## ! ## Copyright (C) 2004 The OpenCA Project ## All rights reserved. ## --- 1,5 ---- ## OpenCA::LDAP ## ! ## Copyright (C) 2004 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:40
|
Update of /cvsroot/openca/openca-0.9/src/openca-sv/include/openca In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/openca-sv/include/openca Modified Files: apps.h Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: apps.h =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/openca-sv/include/openca/apps.h,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** apps.h 13 Sep 2004 14:19:13 -0000 1.3 --- apps.h 5 Oct 2005 13:14:28 -0000 1.4 *************** *** 110,114 **** */ /* ! * Copyright (c) 2002-2004 The OpenCA Project. All rights reserved. */ --- 110,114 ---- */ /* ! * Copyright (c) 2002-2004 Michael Bell. All rights reserved. */ |
From: <ope...@li...> - 2005-10-05 13:14:40
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-shell Modified Files: LICENSE Shell.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/LICENSE,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** LICENSE 4 Feb 2005 15:01:17 -0000 1.1 --- LICENSE 5 Oct 2005 13:14:28 -0000 1.2 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: Shell.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-shell/Shell.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** Shell.pm 10 Aug 2005 16:03:51 -0000 1.6 --- Shell.pm 5 Oct 2005 13:14:28 -0000 1.7 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2003-2005 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2003-2005 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:39
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-crypto/Token Modified Files: Empty.pm LunaCA3.pm OpenSC.pm OpenSSL.pm nCipher.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Empty.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token/Empty.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Empty.pm 1 Oct 2004 10:03:32 -0000 1.5 --- Empty.pm 5 Oct 2005 13:14:27 -0000 1.6 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: LunaCA3.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token/LunaCA3.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** LunaCA3.pm 10 Aug 2005 16:03:47 -0000 1.12 --- LunaCA3.pm 5 Oct 2005 13:14:27 -0000 1.13 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: OpenSC.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token/OpenSC.pm,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** OpenSC.pm 9 Mar 2005 12:43:41 -0000 1.10 --- OpenSC.pm 5 Oct 2005 13:14:27 -0000 1.11 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: OpenSSL.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token/OpenSSL.pm,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** OpenSSL.pm 17 Jan 2005 15:18:16 -0000 1.15 --- OpenSSL.pm 5 Oct 2005 13:14:27 -0000 1.16 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: nCipher.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Token/nCipher.pm,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** nCipher.pm 10 Aug 2005 15:16:36 -0000 1.9 --- nCipher.pm 5 Oct 2005 13:14:27 -0000 1.10 *************** *** 3,7 **** ## Written by Michael Bell for the OpenCA project 2003 ## Adapted by Martin Bartosch for the OpenCA project 2004 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 3,7 ---- ## Written by Michael Bell for the OpenCA project 2003 ## Adapted by Martin Bartosch for the OpenCA project 2004 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:39
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-dbi/DBI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-dbi/DBI Modified Files: DBH.pm Driver.pm Schema.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: DBH.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-dbi/DBI/DBH.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** DBH.pm 10 Aug 2005 16:03:48 -0000 1.5 --- DBH.pm 5 Oct 2005 13:14:27 -0000 1.6 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2000 ! ## Copyright (C) 2000-2005 The OpenCA Project use strict; --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2000 ! ## Copyright (C) 2000-2005 Michael Bell use strict; Index: Driver.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-dbi/DBI/Driver.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** Driver.pm 15 Aug 2005 14:36:47 -0000 1.5 --- Driver.pm 5 Oct 2005 13:14:27 -0000 1.6 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 The OpenCA Project package OpenCA::DBI::Driver; --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 Michael Bell package OpenCA::DBI::Driver; Index: Schema.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-dbi/DBI/Schema.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** Schema.pm 15 Aug 2005 14:36:47 -0000 1.7 --- Schema.pm 5 Oct 2005 13:14:27 -0000 1.8 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 The OpenCA Project ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2005 ! ## Copyright (C) 2005 Michael Bell ## |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ac In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ac Modified Files: AC.pm LICENSE README Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: AC.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ac/AC.pm,v retrieving revision 1.81 retrieving revision 1.82 diff -C2 -d -r1.81 -r1.82 *** AC.pm 17 Aug 2005 08:13:38 -0000 1.81 --- AC.pm 5 Oct 2005 13:14:25 -0000 1.82 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ac/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:31 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: README =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ac/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 1 Oct 2004 10:03:31 -0000 1.2 --- README 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 1,5 **** ======================================================================= Access Control - Verison 1.2.0 ! (c) 2004 The OpenCA Project ======================================================================= --- 1,5 ---- ======================================================================= Access Control - Verison 1.2.0 ! (c) 2004 Michael Bell ======================================================================= |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-ui-scep In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-ui-scep Modified Files: SCEP.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: SCEP.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-ui-scep/SCEP.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** SCEP.pm 17 Aug 2005 08:13:38 -0000 1.7 --- SCEP.pm 5 Oct 2005 13:14:28 -0000 1.8 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2005 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2005 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-log/Log/Appender In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-log/Log/Appender Modified Files: DBI.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: DBI.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-log/Log/Appender/DBI.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** DBI.pm 25 Jul 2005 08:11:21 -0000 1.4 --- DBI.pm 5 Oct 2005 13:14:27 -0000 1.5 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-session In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-session Modified Files: LICENSE README Session.pm Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-session/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:33 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: README =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-session/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 1 Oct 2004 10:03:33 -0000 1.2 --- README 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 1,5 **** ======================================================================= Session - Version 1.0.0 ! (c) 2003 The OpenCA Project ======================================================================= --- 1,5 ---- ======================================================================= Session - Version 1.0.0 ! (c) 2003 Michael Bell ======================================================================= Index: Session.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-session/Session.pm,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Session.pm 10 Aug 2005 16:03:49 -0000 1.11 --- Session.pm 5 Oct 2005 13:14:27 -0000 1.12 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-crypto In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-crypto Modified Files: Crypto.pm LICENSE README Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: Crypto.pm =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/Crypto.pm,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** Crypto.pm 10 Aug 2005 16:03:47 -0000 1.19 --- Crypto.pm 5 Oct 2005 13:14:27 -0000 1.20 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. ## --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. ## Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:32 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: README =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-crypto/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 1 Oct 2004 10:03:32 -0000 1.2 --- README 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 1,5 **** ======================================================================= Access Control - Verison 1.2.0 ! (c) 2003 The OpenCA Project ======================================================================= --- 1,5 ---- ======================================================================= Access Control - Verison 1.2.0 ! (c) 2003 Michael Bell ======================================================================= |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/modules/openca-statemachine In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/modules/openca-statemachine Modified Files: LICENSE README Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: LICENSE =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-statemachine/LICENSE,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LICENSE 1 Oct 2004 10:03:34 -0000 1.2 --- LICENSE 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 2,6 **** ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 The OpenCA Project ## All rights reserved. --- 2,6 ---- ## ## Written by Michael Bell for the OpenCA project 2003 ! ## Copyright (C) 2003-2004 Michael Bell ## All rights reserved. Index: README =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/modules/openca-statemachine/README,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** README 1 Oct 2004 10:03:34 -0000 1.2 --- README 5 Oct 2005 13:14:27 -0000 1.3 *************** *** 1,5 **** ======================================================================= OpenCA::StateMachine - Version 1.0.0 ! (c) 2003-2004 The OpenCA Project ======================================================================= --- 1,5 ---- ======================================================================= OpenCA::StateMachine - Version 1.0.0 ! (c) 2003-2004 Michael Bell ======================================================================= |
From: <ope...@li...> - 2005-10-05 13:14:38
|
Update of /cvsroot/openca/openca-0.9/src/scripts In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24108/openca-0.9/src/scripts Modified Files: openca-shell-client.in Log Message: adding two missing modules and take back my copyright Author of changes: michaelbell Index: openca-shell-client.in =================================================================== RCS file: /cvsroot/openca/openca-0.9/src/scripts/openca-shell-client.in,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** openca-shell-client.in 5 Oct 2005 13:04:00 -0000 1.2 --- openca-shell-client.in 5 Oct 2005 13:14:28 -0000 1.3 *************** *** 1,5 **** #!@PERL@ ! ## (c) 2005 by The OpenCA Project ## File Name: openca-shell-client ## Version: $Revision$ --- 1,5 ---- #!@PERL@ ! ## (c) 2005 by Michael Bell ## File Name: openca-shell-client ## Version: $Revision$ |