diff -Nur -x '*.orig' -x '*.rej' phpki/phpki-0.82/ca/main.php mezzanine_patched_phpki/phpki-0.82/ca/main.php --- phpki/phpki-0.82/ca/main.php 2008-12-09 02:05:11.000000000 +0100 +++ mezzanine_patched_phpki/phpki-0.82/ca/main.php 2008-12-09 02:01:17.000000000 +0100 @@ -26,6 +26,10 @@ upload("$config[cacrl_der]", "$config[ca_prefix]cacrl.crl", 'application/pkix-crl'); break; +case 'dl_crl_pem': + upload("$config[cacrl_pem]", "$config[ca_prefix]cacrl.crl", 'application/octet-stream'); + break; + case 'gen_crl': list($ret,$errtxt) = CA_generate_crl(); @@ -121,7 +125,8 @@ ?stage=dl_crl>Download the Certificate Revocation List This is the official list of revoked certificates. Using this list with your e-mail or - browser application is optional. Some applications will automagically reference this list. + browser application is optional. Some applications will automagically reference this list. + (Some will need it in PEM format.) ?stage=dl_takey>Download the static pre-shared key

diff -Nur -x '*.orig' -x '*.rej' phpki/phpki-0.82/main.php mezzanine_patched_phpki/phpki-0.82/main.php --- phpki/phpki-0.82/main.php 2005-11-17 02:17:06.000000000 +0100 +++ mezzanine_patched_phpki/phpki-0.82/main.php 2008-12-09 02:05:04.000000000 +0100 @@ -17,6 +17,10 @@ upload("$config[cacrl_der]", "$config[ca_prefix]cacrl.crl", 'application/pkix-crl'); break; +case 'dl_crl_pem': + upload("$config[cacrl_pem]", "$config[ca_prefix]cacrl.crl", 'application/octet-stream'); + break; + default: printHeader('public'); @@ -39,7 +43,8 @@ ?stage=dl_crl>Download Our Certificate Revocation List The official list of certificates revoked by this site. Installation and use of - this list is optional. Some e-mail programs will reference this list automagically. + this list is optional. Some e-mail programs will reference this list automagically. + (Some will need it in PEM format.)