updates
This commit is contained in:
parent
592c0d7616
commit
bb7b042f57
33 changed files with 12239 additions and 226 deletions
|
@ -1368,6 +1368,7 @@
|
||||||
`org`.`memid`='".$_SESSION['profile']['id']."'";
|
`org`.`memid`='".$_SESSION['profile']['id']."'";
|
||||||
}
|
}
|
||||||
$org = mysql_fetch_assoc(mysql_query($query));
|
$org = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
$csrsubject = "";
|
||||||
|
|
||||||
if($org['OU'])
|
if($org['OU'])
|
||||||
$csrsubject .= "/organizationalUnitName=".$org['OU'];
|
$csrsubject .= "/organizationalUnitName=".$org['OU'];
|
||||||
|
@ -1394,7 +1395,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
if($SAN != "")
|
if($SAN != "")
|
||||||
$csrsubject .= "/subjectAltName=".$SAN."/commonName=*.cacert.org";
|
$csrsubject .= "/subjectAltName=".$SAN;
|
||||||
|
|
||||||
if($_SESSION['_config']['rowid']['0'] > 0)
|
if($_SESSION['_config']['rowid']['0'] > 0)
|
||||||
{
|
{
|
||||||
|
@ -1891,6 +1892,86 @@
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if(($id == 53 || $id == 54 || $oldid == 53 || $oldid == 54) &&
|
||||||
|
$_SESSION['profile']['locadmin'] != 1)
|
||||||
|
{
|
||||||
|
showheader(_("My CAcert.org Account!"));
|
||||||
|
echo _("You don't have access to this area.");
|
||||||
|
showfooter();
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($oldid == 54 || ($id == 53 && $_REQUEST['action'] != ""))
|
||||||
|
{
|
||||||
|
$id = 53;
|
||||||
|
$ccid = intval($_REQUEST['ccid']);
|
||||||
|
$regid = intval($_REQUEST['regid']);
|
||||||
|
$newreg = intval($_REQUEST['newreg']);
|
||||||
|
$locid = intval($_REQUEST['locid']);
|
||||||
|
$name = mysql_escape_string($_REQUEST['name']);
|
||||||
|
$long = mysql_escape_string($_REQUEST['longitude']);
|
||||||
|
$lat = mysql_escape_string($_REQUEST['latitude']);
|
||||||
|
|
||||||
|
if($locid > 0 && $_REQUEST['action'] == "edit")
|
||||||
|
{
|
||||||
|
$query = "update `locations` set `name`='$name', `lat`='$lat', `long`='$long' where `id`='$locid'";
|
||||||
|
mysql_query($query);
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$locid'"));
|
||||||
|
$_REQUEST['regid'] = $row['regid'];
|
||||||
|
unset($_REQUEST['ccid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($regid > 0 && $_REQUEST['action'] == "edit") {
|
||||||
|
$query = "update `regions` set `name`='$name' where `id`='$regid'";
|
||||||
|
mysql_query($query);
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='$regid'"));
|
||||||
|
$_REQUEST['ccid'] = $row['ccid'];
|
||||||
|
unset($_REQUEST['regid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($regid > 0 && $_REQUEST['action'] == "add") {
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select `ccid` from `regions` where `id`='$regid'"));
|
||||||
|
$ccid = $row['ccid'];
|
||||||
|
$query = "insert into `locations` set `ccid`='$ccid', `regid`='$regid', `name`='$name', `lat`='$lat', `long`='$long'";
|
||||||
|
mysql_query($query);
|
||||||
|
unset($_REQUEST['ccid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($ccid > 0 && $_REQUEST['action'] == "add") {
|
||||||
|
$query = "insert into `regions` set `ccid`='$ccid', `name`='$name'";
|
||||||
|
mysql_query($query);
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$locid'"));
|
||||||
|
unset($_REQUEST['regid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($locid > 0 && $_REQUEST['action'] == "delete") {
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$locid'"));
|
||||||
|
$_REQUEST['regid'] = $row['regid'];
|
||||||
|
mysql_query("delete from `locations` where `id`='$locid'");
|
||||||
|
unset($_REQUEST['ccid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($locid > 0 && $_REQUEST['action'] == "move") {
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$locid'"));
|
||||||
|
$oldregid = $row['regid'];
|
||||||
|
mysql_query("update `locations` set `regid`='$newreg' where `id`='$locid'");
|
||||||
|
mysql_query("update `users` set `regid`='$newreg' where `regid`='$oldregid'");
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='$locid'"));
|
||||||
|
$_REQUEST['regid'] = $row['regid'];
|
||||||
|
unset($_REQUEST['ccid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
} else if($regid > 0 && $_REQUEST['action'] == "delete") {
|
||||||
|
$row = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='$regid'"));
|
||||||
|
$_REQUEST['ccid'] = $row['ccid'];
|
||||||
|
mysql_query("delete from `locations` where `regid`='$regid'");
|
||||||
|
mysql_query("delete from `regions` where `id`='$regid'");
|
||||||
|
unset($_REQUEST['regid']);
|
||||||
|
unset($_REQUEST['locid']);
|
||||||
|
unset($_REQUEST['action']);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if($oldid == 42 && $_POST['email'] == "")
|
if($oldid == 42 && $_POST['email'] == "")
|
||||||
{
|
{
|
||||||
$id = $oldid;
|
$id = $oldid;
|
||||||
|
@ -2025,7 +2106,7 @@
|
||||||
|
|
||||||
if($id == 43 && $_GET['tverify'] > 0)
|
if($id == 43 && $_GET['tverify'] > 0)
|
||||||
{
|
{
|
||||||
$memid = $_GET['userid'] = intval($_GET['tverify']);
|
$memid = $_REQUEST['userid'] = intval($_GET['tverify']);
|
||||||
$query = "select * from `users` where `id`='$memid'";
|
$query = "select * from `users` where `id`='$memid'";
|
||||||
$row = mysql_fetch_assoc(mysql_query($query));
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
$ver = !$row['tverify'];
|
$ver = !$row['tverify'];
|
||||||
|
@ -2034,7 +2115,7 @@
|
||||||
|
|
||||||
if($id == 43 && $_GET['codesign'] > 0)
|
if($id == 43 && $_GET['codesign'] > 0)
|
||||||
{
|
{
|
||||||
$memid = $_GET['userid'] = intval($_GET['codesign']);
|
$memid = $_REQUEST['userid'] = intval($_GET['codesign']);
|
||||||
$query = "select * from `users` where `id`='$memid'";
|
$query = "select * from `users` where `id`='$memid'";
|
||||||
$row = mysql_fetch_assoc(mysql_query($query));
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
$ver = !$row['codesign'];
|
$ver = !$row['codesign'];
|
||||||
|
@ -2043,7 +2124,7 @@
|
||||||
|
|
||||||
if($id == 43 && $_GET['ttpadmin'] > 0)
|
if($id == 43 && $_GET['ttpadmin'] > 0)
|
||||||
{
|
{
|
||||||
$memid = $_GET['userid'] = intval($_GET['ttpadmin']);
|
$memid = $_REQUEST['userid'] = intval($_GET['ttpadmin']);
|
||||||
$query = "select * from `users` where `id`='$memid'";
|
$query = "select * from `users` where `id`='$memid'";
|
||||||
$row = mysql_fetch_assoc(mysql_query($query));
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
$ver = !$row['ttpadmin'];
|
$ver = !$row['ttpadmin'];
|
||||||
|
@ -2052,21 +2133,28 @@
|
||||||
|
|
||||||
if($id == 43 && $_GET['locadmin'] > 0)
|
if($id == 43 && $_GET['locadmin'] > 0)
|
||||||
{
|
{
|
||||||
$memid = $_GET['userid'] = intval($_GET['locadmin']);
|
$memid = $_REQUEST['userid'] = intval($_GET['locadmin']);
|
||||||
$query = "select * from `users` where `id`='$memid'";
|
$query = "select * from `users` where `id`='$memid'";
|
||||||
$row = mysql_fetch_assoc(mysql_query($query));
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
$ver = !$row['locadmin'];
|
$ver = !$row['locadmin'];
|
||||||
mysql_query("update `users` set `locadmin`='$ver' where `id`='$memid'");
|
mysql_query("update `users` set `locadmin`='$ver' where `id`='$memid'");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($id == 43 && $_GET['admin'] > 0)
|
||||||
|
{
|
||||||
|
$memid = $_REQUEST['userid'] = intval($_GET['admin']);
|
||||||
|
$query = "select * from `users` where `id`='$memid'";
|
||||||
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
$ver = !$row['admin'];
|
||||||
|
mysql_query("update `users` set `admin`='$ver' where `id`='$memid'");
|
||||||
|
}
|
||||||
|
|
||||||
if($id == 50)
|
if($id == 50)
|
||||||
{
|
{
|
||||||
if($_GET['userid'] != "")
|
if($_REQUEST['userid'] != "")
|
||||||
$_POST['userid'] = intval($_GET['userid']);
|
$_REQUEST['userid'] = intval($_REQUEST['userid']);
|
||||||
else
|
|
||||||
$_POST['userid'] = intval($_POST['userid']);
|
|
||||||
|
|
||||||
$row = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$_POST['userid']."'"));
|
$row = mysql_fetch_assoc(mysql_query("select * from `users` where `id`='".$_REQUEST['userid']."'"));
|
||||||
if($row['email'] == "")
|
if($row['email'] == "")
|
||||||
$id = 42;
|
$id = 42;
|
||||||
else
|
else
|
||||||
|
|
|
@ -17,16 +17,6 @@
|
||||||
{
|
{
|
||||||
global $id, $PHP_SELF;
|
global $id, $PHP_SELF;
|
||||||
|
|
||||||
$locrest = "";
|
|
||||||
if($_SESSION['profile']['ccid'] > 0)
|
|
||||||
$locrest .= "&ccid=".$_SESSION['profile']['ccid'];
|
|
||||||
|
|
||||||
if($_SESSION['profile']['regid'] > 0)
|
|
||||||
$locrest .= "®id=".$_SESSION['profile']['regid'];
|
|
||||||
|
|
||||||
if($_SESSION['profile']['locid'] > 0)
|
|
||||||
$locrest .= "&locid=".$_SESSION['profile']['locid'];
|
|
||||||
|
|
||||||
$tmpid = $id;
|
$tmpid = $id;
|
||||||
if($PHP_SELF == "/wot.php")
|
if($PHP_SELF == "/wot.php")
|
||||||
$tmpid = $id + 500;
|
$tmpid = $id + 500;
|
||||||
|
@ -55,7 +45,8 @@
|
||||||
case 36:
|
case 36:
|
||||||
case 41:
|
case 41:
|
||||||
case 507:
|
case 507:
|
||||||
case 508: $expand = " explode('mydetails');"; break;
|
case 508:
|
||||||
|
case 513: $expand = " explode('mydetails');"; break;
|
||||||
case 16:
|
case 16:
|
||||||
case 17:
|
case 17:
|
||||||
case 18:
|
case 18:
|
||||||
|
@ -85,6 +76,7 @@
|
||||||
case 48:
|
case 48:
|
||||||
case 49:
|
case 49:
|
||||||
case 50:
|
case 50:
|
||||||
|
case 54:
|
||||||
case 53: $expand = " explode('sysadmin');"; break;
|
case 53: $expand = " explode('sysadmin');"; break;
|
||||||
case 500:
|
case 500:
|
||||||
case 501:
|
case 501:
|
||||||
|
@ -95,7 +87,8 @@
|
||||||
case 506:
|
case 506:
|
||||||
case 509:
|
case 509:
|
||||||
case 510:
|
case 510:
|
||||||
case 511: $expand = " explode('WoT');"; break;
|
case 511:
|
||||||
|
case 512: $expand = " explode('WoT');"; break;
|
||||||
case 1000:
|
case 1000:
|
||||||
case 1001:
|
case 1001:
|
||||||
case 1002:
|
case 1002:
|
||||||
|
@ -160,7 +153,7 @@ function hideall() {
|
||||||
</div>
|
</div>
|
||||||
<div class="relatedLinks">
|
<div class="relatedLinks">
|
||||||
<h3 onclick="explode('mydetails')">+ <?=_("My Details")?></h3>
|
<h3 onclick="explode('mydetails')">+ <?=_("My Details")?></h3>
|
||||||
<ul class="menu" id="mydetails"><li><a href="account.php?id=13"><?=_("Edit")?></a></li><li><a href="account.php?id=14"><?=_("Change Password")?></a></li><li><a href="account.php?id=41"><?=_("Default Language")?></a></li><li><a href="wot.php?id=8"><?=_("My Listing")?></a></li><li><a href="wot.php?id=7<?=$locrest?>"><?=_("My Location")?></a></li><li><a href="account.php?id=36"><?=_("My Alert Settings")?></a></li><li><a href="wot.php?id=10"><?=_("My Points")?></a></li></ul>
|
<ul class="menu" id="mydetails"><li><a href="account.php?id=13"><?=_("Edit")?></a></li><li><a href="account.php?id=14"><?=_("Change Password")?></a></li><li><a href="account.php?id=41"><?=_("Default Language")?></a></li><li><a href="wot.php?id=8"><?=_("My Listing")?></a></li><li><a href="wot.php?id=13"><?=_("My Location")?></a></li><li><a href="account.php?id=36"><?=_("My Alert Settings")?></a></li><li><a href="wot.php?id=10"><?=_("My Points")?></a></li></ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="relatedLinks">
|
<div class="relatedLinks">
|
||||||
<h3 onclick="explode('emailacc')">+ <?=_("Email Accounts")?></h3>
|
<h3 onclick="explode('emailacc')">+ <?=_("Email Accounts")?></h3>
|
||||||
|
@ -203,7 +196,7 @@ function hideall() {
|
||||||
$extra .= "&dob=".urlencode($_SESSION['profile']['dob']);
|
$extra .= "&dob=".urlencode($_SESSION['profile']['dob']);
|
||||||
$extra .= "&email=".urlencode($_SESSION['profile']['email']);
|
$extra .= "&email=".urlencode($_SESSION['profile']['email']);
|
||||||
?>
|
?>
|
||||||
<ul class="menu" id="WoT"><li><a href="wot.php?id=0"><?=_("About")?></a></li><li><a href="wot.php?id=1"><?=_("Find an Assurer")?></a></li><li><a href="wot.php?id=3"><?=_("Rules")?></a></li><li><? if($_SESSION['profile']['points'] < 100) { ?><a href="wot.php?id=2"><?=_("Becoming an Assurer")?></a><? } else { ?><a href="wot.php?id=5"><?=_("Assure Someone")?></a><? } ?></li><li><a href="wot.php?id=4"><?=_("Trusted Third Parties")?></a></li><li><a href="/cap.php<?=$extra?>">A4 - <?=_("WoT Form")?></a></li><li><a href="/cap.php<?=$extra?>&format=letter">US - <?=_("WoT Form")?></a></li><li><a href="/ttp.php<?=$extra?>">A4 - <?=_("TTP Form")?></li><li><a href="/ttp.php<?=$extra?>&format=letter">US - <?=_("TTP Form")?></a></nobr></li><? if($_SESSION['profile']['points'] > 50) { ?><li><a href="wot.php?id=11"><nobr><?=_("Organisation Assurance")?></nobr></a></li><? } ?></ul>
|
<ul class="menu" id="WoT"><li><a href="wot.php?id=0"><?=_("About")?></a></li><li><a href="wot.php?id=12"><?=_("Find an Assurer")?></a></li><li><a href="wot.php?id=3"><?=_("Rules")?></a></li><li><? if($_SESSION['profile']['points'] < 100) { ?><a href="wot.php?id=2"><?=_("Becoming an Assurer")?></a><? } else { ?><a href="wot.php?id=5"><?=_("Assure Someone")?></a><? } ?></li><li><a href="wot.php?id=4"><?=_("Trusted Third Parties")?></a></li><li><a href="/cap.php<?=$extra?>">A4 - <?=_("WoT Form")?></a></li><li><a href="/cap.php<?=$extra?>&format=letter">US - <?=_("WoT Form")?></a></li><li><a href="/ttp.php<?=$extra?>">A4 - <?=_("TTP Form")?></li><li><a href="/ttp.php<?=$extra?>&format=letter">US - <?=_("TTP Form")?></a></nobr></li><? if($_SESSION['profile']['points'] > 50) { ?><li><a href="wot.php?id=11"><nobr><?=_("Organisation Assurance")?></nobr></a></li><? } ?></ul>
|
||||||
</div>
|
</div>
|
||||||
<? if($_SESSION['profile']['points'] >= 50) { ?>
|
<? if($_SESSION['profile']['points'] >= 50) { ?>
|
||||||
<div class="relatedLinks">
|
<div class="relatedLinks">
|
||||||
|
|
|
@ -25,9 +25,29 @@ if(!function_exists("showheader"))
|
||||||
<title><?=$title?></title>
|
<title><?=$title?></title>
|
||||||
<? if($_SESSION['_config']['header'] != "") { ?><?=$_SESSION['_config']['header']?><? } ?>
|
<? if($_SESSION['_config']['header'] != "") { ?><?=$_SESSION['_config']['header']?><? } ?>
|
||||||
<link rel="stylesheet" href="/styles/default.css" type="text/css">
|
<link rel="stylesheet" href="/styles/default.css" type="text/css">
|
||||||
<link href="http://my.rsscache.com/www.cacert.org/rss.php" rel="alternate" type="application/rss+xml" title="rss">
|
<link href="http://my.rsscache.com/blog.CAcert.org/feed/" rel="alternate" type="application/rss+xml" title="rss">
|
||||||
|
<script language="JavaScript" type="text/javascript">
|
||||||
|
function explode(e) {
|
||||||
|
if (document.getElementById(e).style.display == 'none') {
|
||||||
|
document.getElementById(e).style.display = 'block';
|
||||||
|
} else {
|
||||||
|
document.getElementById(e).style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function hideall() {
|
||||||
|
var Nodes = document.getElementsByTagName('ul')
|
||||||
|
var max = Nodes.length
|
||||||
|
for(var i = 0;i < max;i++) {
|
||||||
|
var nodeObj = Nodes.item(i)
|
||||||
|
if (nodeObj.className == "menu") {
|
||||||
|
nodeObj.style.display = 'none';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body onload="hideall();">
|
||||||
<div id="pagecell1">
|
<div id="pagecell1">
|
||||||
<div id="pageName"><br>
|
<div id="pageName"><br>
|
||||||
<h2><a href="http://<?=$_SESSION['_config']['normalhostname']?>"><img src="/images/cacert3.png" border="0" alt="CAcert.org logo"></a></h2>
|
<h2><a href="http://<?=$_SESSION['_config']['normalhostname']?>"><img src="/images/cacert3.png" border="0" alt="CAcert.org logo"></a></h2>
|
||||||
|
@ -59,25 +79,12 @@ google_color_border = "FFFFFF";
|
||||||
<a href="https://<?=$_SESSION['_config']['normalhostname']?>/index.php?id=5"><?=_("Lost Password")?></a>
|
<a href="https://<?=$_SESSION['_config']['normalhostname']?>/index.php?id=5"><?=_("Lost Password")?></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="relatedLinks">
|
<div class="relatedLinks">
|
||||||
<h3><?=_("Miscellaneous")?></h3>
|
<h3 onclick="explode('misc')"><?=_("Miscellaneous")?></h3>
|
||||||
<a href="news.php"><?=_("CAcert News")?></a>
|
<ul class="menu" id="misc"><li><a href="news.php"><?=_("CAcert News")?></a></li><li><a href="help.php"><?=_("Howto Information")?></a></li><li><a href="http://wiki.CAcert.org"><?=_("Wiki Documentation")?></li><li><a href="http://bugs.CAcert.org"><?=_("Bug Database")?></a></li><li><a href="logos.php"><?=_("CAcert Logos")?></a></li><li><a href="stats.php"><?=_("CAcert Statistics")?></a></li><li><a href="index.php?id=3"><?=_("Root Certificate")?></a></li><li><a href="revoke.crl"><?=_("CRL")?></a></li><li><a href="http://my.rsscache.com/blog.CAcert.org/feed/"><?=_("RSS News Feed")?></a></li><li><? if($_SESSION['profile']['admin'] == 1) { ?><a href="index.php?id=5"><?=_("OCSP Details")?></a><? } ?></li><li><a href="index.php?id=7"><?=_("Credits")?></a></li><li><a href="index.php?id=8"><?=_("CAcert Board")?></a></li></ul>
|
||||||
<a href="help.php"><?=_("Howto Information")?></a>
|
|
||||||
<a href="logos.php"><?=_("CAcert Logos")?></a>
|
|
||||||
<a href="stats.php"><?=_("CAcert Statistics")?></a>
|
|
||||||
<a href="index.php?id=3"><?=_("Root Certificate")?></a>
|
|
||||||
<a href="revoke.crl"><?=_("CRL")?></a>
|
|
||||||
<a href="http://my.rsscache.com/www.cacert.org/rss.php"><?=_("RSS News Feed")?></a>
|
|
||||||
<? if($_SESSION['profile']['admin'] == 1) { ?>
|
|
||||||
<a href="index.php?id=5"><?=_("OCSP Details")?></a>
|
|
||||||
<? } ?>
|
|
||||||
<a href="index.php?id=7"><?=_("Credits")?></a>
|
|
||||||
<a href="index.php?id=8"><?=_("CAcert Board")?></a>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="relatedLinks">
|
<div class="relatedLinks">
|
||||||
<h3><?=_("Translations")?></h3>
|
<h3 onclick="explode('trans')"><?=_("Translations")?></h3>
|
||||||
<? foreach($_SESSION['_config']['translations'] as $key => $val) { ?>
|
<ul class="menu" id="trans"><? foreach($_SESSION['_config']['translations'] as $key => $val) { ?><li><a href="index.php?id=<?=$id?>&lang=<?=$key?>"><?=$val?></a></li><? } ?></ul>
|
||||||
<a href="index.php?id=<?=$id?>&lang=<?=$key?>"><?=$val?></a>
|
|
||||||
<? } ?>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div id="content">
|
<div id="content">
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
|
|
||||||
$_SESSION['_config']['oldlocation'] .= "$key=$val";
|
$_SESSION['_config']['oldlocation'] .= "$key=$val";
|
||||||
}
|
}
|
||||||
$_SESSION['_config']['oldlocation'] = "account.php?".$_SESSION['_config']['oldlocation'];
|
$_SESSION['_config']['oldlocation'] = substr($_SERVER['SCRIPT_NAME'], 1)."?".$_SESSION['_config']['oldlocation'];
|
||||||
|
|
||||||
header("location: https://".$_SERVER['HTTP_HOST']."/index.php?id=4");
|
header("location: https://".$_SERVER['HTTP_HOST']."/index.php?id=4");
|
||||||
exit;
|
exit;
|
||||||
|
@ -100,7 +100,7 @@
|
||||||
|
|
||||||
$_SESSION['_config']['oldlocation'] .= "$key=$val";
|
$_SESSION['_config']['oldlocation'] .= "$key=$val";
|
||||||
}
|
}
|
||||||
$_SESSION['_config']['oldlocation'] = "account.php?".$_SESSION['_config']['oldlocation'];
|
$_SESSION['_config']['oldlocation'] = substr($_SERVER['SCRIPT_NAME'], 1)."?".$_SESSION['_config']['oldlocation'];
|
||||||
|
|
||||||
header("location: https://".$_SERVER['HTTP_HOST']."/index.php?id=4");
|
header("location: https://".$_SERVER['HTTP_HOST']."/index.php?id=4");
|
||||||
exit;
|
exit;
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgstr ""
|
||||||
"Project-Id-Version: de\n"
|
"Project-Id-Version: de\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||||
"PO-Revision-Date: 2005-11-19 02:20:24+0000\n"
|
"PO-Revision-Date: 2005-11-24 01:30:54+0000\n"
|
||||||
"Last-Translator: Someone <someone@someisp.com>\n"
|
"Last-Translator: Someone <someone@someisp.com>\n"
|
||||||
"Language-Team: <de@li.org>\n"
|
"Language-Team: <de@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -991,7 +991,7 @@ msgstr "Ich habe die Regeln für Assurer gelesen und verstanden und mache di
|
||||||
|
|
||||||
#: www/account/10.php:18 www/account/20.php:18 www/account/3.php:18
|
#: www/account/10.php:18 www/account/20.php:18 www/account/3.php:18
|
||||||
msgid "I hereby represent that I am fully authorized by the owner of the information contained in the CSR sent to CAcert Inc. to apply for an Digital Certificate for secure and authenticated electronic transactions. I understand that a digital certificate serves to identify the Subscriber for the purposes of electronic communication and that the management of the private keys associated with such certificates is the responsibility of the subscriber's technical staff and/or contractors."
|
msgid "I hereby represent that I am fully authorized by the owner of the information contained in the CSR sent to CAcert Inc. to apply for an Digital Certificate for secure and authenticated electronic transactions. I understand that a digital certificate serves to identify the Subscriber for the purposes of electronic communication and that the management of the private keys associated with such certificates is the responsibility of the subscriber's technical staff and/or contractors."
|
||||||
msgstr "Ich bestätige hiermit, dass ich bevollmächtigt bin, im Namen der im CSR (Zertifikat-Anfrage) an CAcert angegebenen Person, ein Digitales Zertifikat für sichere und authentifizierte elektronische Transaktionen zu beantragen. Ich verstehe, dass ein digitales Zertifikat zur Identifizierung der Teilnehmer einer elektronischen Kommunikation vorgesehen ist, und dass ich selbst für die Aufbewahrung der privaten Schlüssel, die mit dem Zertifikat verbunden sind, verantwortlich bin."
|
msgstr "Ich bestätige hiermit, dass ich bevollmächtigt bin, im Namen der CSR (Zertifikat-Anfrage) an CAcert angegebenen Person, ein Digitales Zertifikat für sichere und authentifizierte elektronische Transaktionen zu beantragen. Ich verstehe, dass ein digitales Zertifikat zur Identifizierung der Teilnehmer einer elektronischen Kommunikation vorgesehen ist, und dass ich selbst für die Aufbewahrung der privaten Schlüssel, die mit dem Zertifikat verbunden sind, verantwortlich bin."
|
||||||
|
|
||||||
#: www/wot/8.php:26
|
#: www/wot/8.php:26
|
||||||
msgid "I want to be listed"
|
msgid "I want to be listed"
|
||||||
|
@ -1015,7 +1015,7 @@ msgstr "Wenn ich für CAcert Inc. spenden wollen würde, wie könnte
|
||||||
|
|
||||||
#: www/account/10.php:22 www/account/20.php:22
|
#: www/account/10.php:22 www/account/20.php:22
|
||||||
msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed and will not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence."
|
msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed and will not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence."
|
||||||
msgstr "Sie verpflichten sich, CAcert umgehend zu informieren, sollte sich Ihr eigener Name und/oder der Besitzer einer der registrierten Domains ändern, damit digitale Zertifikate widerrufen werden können. Wenn ein Digitales Zertifikat abläuft oder widerrufen wird, verpflichten Sie sich, dieses vollständig zu löschen und in keiner Weise weiterzubenutzen. Die für die Sicherheit und Verwaltung der Zertifikate verantwortliche Person muss vollständig autorisiert sein, ein Digitales Zertifikat für die angegeben Origanisation zu beantragen, zu installieren und zu benutzen."
|
msgstr "Sie verpflichten sich, CAcert umgehend zu informieren, sollte sich Ihr eigener Name und/oder der Besitzer einer der registrierten Domains ändern, damit digitale Zertifikate widerrufen werden können. Wenn ein Digitales Zertifikat abläuft oder widerrufen wird, verpflichten Sie sich, dieses vollständig zu löschen und in keiner Weise weiterzubenutzen. Die für die Sicherheit und Verwaltung der Zertifikate verantwortliche Person muss vollständig autorisiert sein, ein Digitales Zertifikat für die angegebene Organisation zu beantragen, zu installieren und zu benutzen."
|
||||||
|
|
||||||
#: www/account/3.php:22
|
#: www/account/3.php:22
|
||||||
msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed andwill not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence."
|
msgid "If the Subscriber's name and/or domain name registration change the subscriber will immediately inform CAcert Inc. who shall revoke the digital certificate. When the Digital Certificate expires or is revoked the company will permanently remove the certificate from the server on which it is installed andwill not use it for any purpose thereafter. The person responsible for key management and security is fully authorized to install and utilize the certificate to represent this organization's electronic presence."
|
||||||
|
@ -1725,7 +1725,7 @@ msgstr "Erstellen einer Zertifikat-Anfrage (CSR)"
|
||||||
|
|
||||||
#: www/index/8.php:2
|
#: www/index/8.php:2
|
||||||
msgid "President"
|
msgid "President"
|
||||||
msgstr "Vorstitzender"
|
msgstr "Vorsitzender"
|
||||||
|
|
||||||
#: www/wot/3.php:35
|
#: www/wot/3.php:35
|
||||||
msgid "Privacy"
|
msgid "Privacy"
|
||||||
|
|
3699
locale/fi_FI.po
Normal file
3699
locale/fi_FI.po
Normal file
File diff suppressed because it is too large
Load diff
3576
locale/is.po
Normal file
3576
locale/is.po
Normal file
File diff suppressed because it is too large
Load diff
163
locale/it.po
163
locale/it.po
|
@ -7,7 +7,7 @@ msgstr ""
|
||||||
"Project-Id-Version: de\n"
|
"Project-Id-Version: de\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||||
"PO-Revision-Date: 2005-10-31 00:57:53+0000\n"
|
"PO-Revision-Date: 2005-11-24 01:31:00+0000\n"
|
||||||
"Last-Translator: Someone <someone@someisp.com>\n"
|
"Last-Translator: Someone <someone@someisp.com>\n"
|
||||||
"Language-Team: <de@li.org>\n"
|
"Language-Team: <de@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -65,7 +65,7 @@ msgstr "Un Certificatore di CAcert che coscientemente legalizza un richiedente c
|
||||||
|
|
||||||
#: www/wot/4.php:17
|
#: www/wot/4.php:17
|
||||||
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
|
msgid "A trusted 3rd party is simply someone in your country that is responsible for witnessing signatures and ID documents. This role is covered by many different titles such as public notary, justice of the peace and so on. Other people are allowed to be authoritative in this area as well, such as bank managers, accountants and lawyers."
|
||||||
msgstr "Una terza parte riconosciuta è semplicemente qualcuno che, nella tua Nazione sia abilitato a testimoniare la validità di firme e documenti identificativi. Questo ruolo è solitamente ricoperto da alcune autorità quali, ad esempio, pubblici notai oppure giudici di pace. Altre persone, cui è riconosciuta questa autorità, sono banchieri, contabili abilitati dallo Stato e avvocati."
|
msgstr "Una terza parte riconosciuta è semplicemente qualcuno che, nella tua Nazione sia abilitato a testimoniare la validità di firme e documenti identificativi. Questo ruolo è solitamente ricoperto da alcune autorità quali, ad esempio, pubblici notai oppure giudici di pace. Altre persone, cui è riconosciuta questa autorità, sono bancari, contabili abilitati dallo Stato e avvocati."
|
||||||
|
|
||||||
#: www/account/38.php:21 www/index/13.php:21
|
#: www/account/38.php:21 www/index/13.php:21
|
||||||
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
|
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
|
||||||
|
@ -1005,7 +1005,7 @@ msgstr "Risponderò innanzi tutto alla prima parte, poiché è
|
||||||
|
|
||||||
#: www/account/43.php:62
|
#: www/account/43.php:62
|
||||||
msgid "I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!"
|
msgid "I'm sorry, the user you were looking for seems to have disappeared! Bad things are a foot!"
|
||||||
msgstr "Spiacente, l'utente che stai cercando sembrate essere scomparso!"
|
msgstr "Spiacente, l'utente che stai cercando sembra essere scomparso!"
|
||||||
|
|
||||||
#: www/wot.php:42
|
#: www/wot.php:42
|
||||||
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
|
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
|
||||||
|
@ -1454,7 +1454,7 @@ msgstr "Non sono stati trovati indirizzi mail nella tua chiave"
|
||||||
#: www/account/15.php:24 www/account/19.php:24 www/account/23.php:24
|
#: www/account/15.php:24 www/account/19.php:24 www/account/23.php:24
|
||||||
#: www/account/6.php:22
|
#: www/account/6.php:22
|
||||||
msgid "No such certificate attached to your account."
|
msgid "No such certificate attached to your account."
|
||||||
msgstr "Nessun certificato di quel tipo è collegato alla tua account."
|
msgstr "Nessun certificato di quel tipo è collegato al tuo account."
|
||||||
|
|
||||||
#: includes/account.php:1731
|
#: includes/account.php:1731
|
||||||
msgid "No such user found."
|
msgid "No such user found."
|
||||||
|
@ -1489,7 +1489,7 @@ msgstr "L'indirizzo di posta elettronica non è valido. Non è possi
|
||||||
|
|
||||||
#: www/help/2.php:10 www/help/2.php:44
|
#: www/help/2.php:10 www/help/2.php:44
|
||||||
msgid "Notes for the strangely curious"
|
msgid "Notes for the strangely curious"
|
||||||
msgstr "note per gli insoliti curiosi"
|
msgstr "Note per gli insoliti curiosi"
|
||||||
|
|
||||||
#: www/account/39.php:45 www/index/10.php:45
|
#: www/account/39.php:45 www/index/10.php:45
|
||||||
msgid "Notification of changes"
|
msgid "Notification of changes"
|
||||||
|
@ -1524,7 +1524,7 @@ msgstr "Dettagli OCSP"
|
||||||
|
|
||||||
#: www/help/2.php:30
|
#: www/help/2.php:30
|
||||||
msgid "Of the biggest reasons why most people haven't started doing this, apart from being slightly technical, the reason is financial. You need your own certificate to digitally sign your emails. And the Certificate Authorities charge money to provide you with your own certificate. Need I say more. Dosh = no thanks I'd rather walk home. But organisations are emerging to provide the common fool in the street with a free alternative. However, given the obvious lack of funding and the emphasis on money to get enrolled, these organisations do not yet have the money to get themselves established as trusted Certificate Authorities. Thus it is currently down to trust. The decision of the individual to trust an unknown Certificate Authority. However once you have put your trust in a Certificate Authority you can implicitly trust the digital signatures generated using their certificates. In other words, if you trust (and accept the certificate of) the Certificate Authority that I use, you can automatically trust my digital signature. Trust me!"
|
msgid "Of the biggest reasons why most people haven't started doing this, apart from being slightly technical, the reason is financial. You need your own certificate to digitally sign your emails. And the Certificate Authorities charge money to provide you with your own certificate. Need I say more. Dosh = no thanks I'd rather walk home. But organisations are emerging to provide the common fool in the street with a free alternative. However, given the obvious lack of funding and the emphasis on money to get enrolled, these organisations do not yet have the money to get themselves established as trusted Certificate Authorities. Thus it is currently down to trust. The decision of the individual to trust an unknown Certificate Authority. However once you have put your trust in a Certificate Authority you can implicitly trust the digital signatures generated using their certificates. In other words, if you trust (and accept the certificate of) the Certificate Authority that I use, you can automatically trust my digital signature. Trust me!"
|
||||||
msgstr "Tra le maggiori ragioni per le quali la maggior parte della gente non ha cominciato fare questo, oltre all'essere un po'tecnico, il motivo è finanziario. Avete bisogno del vostro personale certificato per firmare digitalmente le vostre e-mail. E le Autorità di Certificazione vogliono soldi per fornirvi il vostro certificato. Ma bisogna dire di più. Ahh, no grazie, vorrei andare a casa. Ma stanno emergendo organizzazioni per fornire all'uomo comune un'alternativa libera e gratuita. Tuttavia, data la mancanza evidente di fondi per e l'enfasi sui soldi per essere iscritto, queste organizzazioni ancora non hanno i soldi per ottenere di essere pienamente riconosciute come Autorità di Certificazione. Così attualmente non si è certificati. La decisione è individuale di fidarsi di una Autorità di Certificazione. Tuttavia una volta che avete messo la vostra fiducia in una Autorità di Certificazione potete fidarsi implicitamente delle firme digitali generate usando i loro certificati. Cioè se vi fidate (ed accettate i suoi certificati) della Autorità di Certificazione, potete fidarvi automaticamente della mia firma digitale. Fidatevi!"
|
msgstr "Una delle principali ragioni per le quali la maggior parte della gente non ha cominciato fare questo, a parte il dover essere un po' tecnico, è l'aspetto finanziario. Per firmare digitalmente le vostre e-mail occorre un certificato personale ma le Autorità di Certificazione lo fanno pagare e così lasciate perdere. Ora stanno emergendo organizzazioni che forniscono a chiunque un'alternativa libera e gratuita. Tuttavia, data l'ovvia mancanza di fondi conseguente alla gratuità della partecipazione, queste organizzazioni ancora non hanno i soldi per ottenere di essere pienamente riconosciute come Autorità di Certificazione. Perciò attualmente non sono omologate e la decisione di fidarsi è individuale. Tuttavia una volta che avete riposto la vostra fiducia in una Autorità di Certificazione potete fidarvi implicitamente delle firme digitali generate usando i loro certificati. In altre parole, se vi fidate di una Autorità di Certificazione che io uso (ed accettate i suoi certificati), potete fidarvi automaticamente della mia firma digitale. Fidatevi!"
|
||||||
|
|
||||||
#: www/account/14.php:21
|
#: www/account/14.php:21
|
||||||
msgid "Old Pass Phrase"
|
msgid "Old Pass Phrase"
|
||||||
|
@ -1622,7 +1622,7 @@ msgstr "Firma con un certificato "root" di classe 1"
|
||||||
|
|
||||||
#: www/account/40.php:18 www/index/11.php:18
|
#: www/account/40.php:18 www/index/11.php:18
|
||||||
msgid "PLEASE NOTE: Due to the large amounts of support questions, incorrectly directed emails may be ignored, this is a volunteer effort and directing general questions to the right place will help everyone, including yourself as you will get a speedier reply."
|
msgid "PLEASE NOTE: Due to the large amounts of support questions, incorrectly directed emails may be ignored, this is a volunteer effort and directing general questions to the right place will help everyone, including yourself as you will get a speedier reply."
|
||||||
msgstr "NOTA BENE: a causa delle numerose richieste, le mail indeirizzate erroneamente potrebbero essere ignorate. Questa è un'attività volontaria ed indirizzare correttamente le mail sarà di aiuto per tutti, te compreso in quanto riceverai una risposta più velocemente."
|
msgstr "NOTA BENE: a causa delle numerose richieste, le mail indirizzate erroneamente potrebbero essere ignorate. Questa è un'attività volontaria ed indirizzare correttamente le mail sarà di aiuto per tutti, te compreso in quanto riceverai una risposta più velocemente."
|
||||||
|
|
||||||
#: www/wot/6.php:28
|
#: www/wot/6.php:28
|
||||||
msgid "PLEASE NOTE: You have already assured this person before! If this is unintentional please DO NOT CONTINUE with this assurance."
|
msgid "PLEASE NOTE: You have already assured this person before! If this is unintentional please DO NOT CONTINUE with this assurance."
|
||||||
|
@ -2017,7 +2017,7 @@ msgstr "Grazie per esserti registrato su CAcert.org. Qui sotto è riportat
|
||||||
|
|
||||||
#: www/help/2.php:47
|
#: www/help/2.php:47
|
||||||
msgid "That situation has changed, and Internet Explorer, being the most obvious example, now insists that any Certificate Authorities are 'audited' by an 'independent' organisation, the American Institute for Certified Public Accountant's (AICPA). So now, if you have the money needed (from US$75000 up to US$250000 and beyond) you can get these accountants, who clearly know a lot about money, to approve you as having the required technical infrastructure and business processes to be a Certificate Authority. And they get a nice wad of money for the pleasure. And the Certificate Authorities, having a kind of monopoly as a result, charge a lot for certificates and also get a nice wad of money. And everyone's happy."
|
msgid "That situation has changed, and Internet Explorer, being the most obvious example, now insists that any Certificate Authorities are 'audited' by an 'independent' organisation, the American Institute for Certified Public Accountant's (AICPA). So now, if you have the money needed (from US$75000 up to US$250000 and beyond) you can get these accountants, who clearly know a lot about money, to approve you as having the required technical infrastructure and business processes to be a Certificate Authority. And they get a nice wad of money for the pleasure. And the Certificate Authorities, having a kind of monopoly as a result, charge a lot for certificates and also get a nice wad of money. And everyone's happy."
|
||||||
msgstr "Che la situazione è cambiata, ed Internet Explorer, essendo l'esempio più evidente, ora insistono che tutte le Autorità di Certificazione sono verificate da un'organizzazione "indipendente", l'Istituto Americano per Contabili Pubblici Certificati (AICPA). Così ora, se avete i soldi necessari (da 75.000 fino a 250.000 dollari americani e più) puoi chiamare questi contabili, che sono competenti giusto in materia di soldi, a confermare che hai i necesssari mezzi tecnici e procedimenti commerciali da essere una Autorità di Certificazione. E prendono un bel po' di soldi per questa cortesia. E l'Autorità di Certificazione, ottenendo come risultato una sorta di monopolio, chiede parecchi soldi per i certificati, facendo a sua volta un bel po' di soldi. E tutti sono felici."
|
msgstr "Questa situazione è cambiata, Internet Explorer è l'esempio più evidente, e ora insistono affinché tutte le Autorità di Certificazione siano verificate da un'organizzazione "indipendente": l'Istituto Americano per Contabili Pubblici Certificati (AICPA). Così ora, se hai i soldi necessari (da 75'000 fino a 250'000 dollari e più) puoi chiedere a questi contabili, che sono ben competenti in materia di soldi, di confermare che hai i necesssari mezzi tecnici e procedimenti commerciali per essere una Autorità di Certificazione. Loro prendono un bel po' di soldi per questa cortesia e le Autorità di Certificazione, ottenendo come risultato una sorta di monopolio, chiedono parecchi soldi per i certificati, facendo a loro volta un bel po' di soldi. E tutti sono felici."
|
||||||
|
|
||||||
#: www/account/17.php:89 www/account/4.php:89
|
#: www/account/17.php:89 www/account/4.php:89
|
||||||
msgid "The 1024-bit key generation failed. Would you like to try 512 instead?"
|
msgid "The 1024-bit key generation failed. Would you like to try 512 instead?"
|
||||||
|
@ -2025,7 +2025,7 @@ msgstr "La generazione della chiave a 1024 bit non è andata a buon fine.
|
||||||
|
|
||||||
#: www/help/3.php:31
|
#: www/help/3.php:31
|
||||||
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.CAcert.org' and 'secure.CAcert.com' are valid Common Names. IP addresses are usually not used."
|
msgid "The Common Name is the fully qualified host and Domain Name or website address that you will be securing. Both 'www.CAcert.org' and 'secure.CAcert.com' are valid Common Names. IP addresses are usually not used."
|
||||||
msgstr "Il Common Name (nome comune) è il nome completamente qualificato della macchina e nome di dominio o sito Web che certifichi. Sia "www.CAcert.org" che "secure.CAcert.com" sono nomi comuni validi. Gli indirizzi del IP non sono solitamente usati."
|
msgstr "Il Common Name (nome comune) è il nome pubblico della macchina (fully qualified host and domain name) o il sito Web che certifichi. Sia "www.CAcert.org" che "secure.CAcert.com" sono nomi comuni validi (anche *.CAcert.org). Gli indirizzi del IP non sono solitamente usati."
|
||||||
|
|
||||||
#: www/verify.php:46
|
#: www/verify.php:46
|
||||||
msgid "The ID or Hash has already been verified, or something weird happened."
|
msgid "The ID or Hash has already been verified, or something weird happened."
|
||||||
|
@ -2081,7 +2081,7 @@ msgstr "Il dominio '%s' è già nel sistema ed è elencato com
|
||||||
|
|
||||||
#: www/account/0.php:22
|
#: www/account/0.php:22
|
||||||
msgid "The email account section is for adding/updating/removing email accounts which can be used to issue client certificates against. The client certificate section steps you through generating a certificate signing request for one or more emails you've registered in the email account section."
|
msgid "The email account section is for adding/updating/removing email accounts which can be used to issue client certificates against. The client certificate section steps you through generating a certificate signing request for one or more emails you've registered in the email account section."
|
||||||
msgstr "La sezione relativa alle account di posta elettronica serve ad aggiungere/aggiornare/rimuovere le account di posta elettronica che possono essere utilizzate per emettere i relativi Certificati per i Client (Client Certificates). La sezione riguardante i Certificati per i Client ti guida attraverso la generazione di una Richiesta di Sottoscrizione del Certificato per una o più account di posta elettronica registrate nella sezione ad esse relativa."
|
msgstr "La sezione relativa agli account di posta elettronica serve ad aggiungere/aggiornare/rimuovere gli account di posta elettronica che possono essere utilizzati per emettere i relativi Certificati per i Client (Client Certificates). La sezione riguardante i Certificati per i Client ti guida attraverso la generazione di una Richiesta di Sottoscrizione del Certificato per uno o più account di posta elettronica registrati nella sezione ad essi relativa."
|
||||||
|
|
||||||
#: includes/account.php:54
|
#: includes/account.php:54
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -2133,11 +2133,11 @@ msgstr "Il motivo per cui le firme digitali ci preparano per la crittografia &eg
|
||||||
|
|
||||||
#: www/help/7.php:6
|
#: www/help/7.php:6
|
||||||
msgid "The requests sent to the root store, are stored in a file for another process triggered by cron to parse and sign them, then stored in a reply file to be sent back to the webserver. Causing things to be separated into different users, basic privilege separation stuff. So being actually able to hack the serial daemons will only at the VERY worst cause fraudulent certificates, not the root to be revealed."
|
msgid "The requests sent to the root store, are stored in a file for another process triggered by cron to parse and sign them, then stored in a reply file to be sent back to the webserver. Causing things to be separated into different users, basic privilege separation stuff. So being actually able to hack the serial daemons will only at the VERY worst cause fraudulent certificates, not the root to be revealed."
|
||||||
msgstr ""
|
msgstr "Le richieste trasmesse al deposito radice, sono scritte in un file in attesa di un altro processo, innescato da cron, che le analizzi e le firmi. Una volta firmate vengono passate a un file di risposta da trasmettere di nuovo al webserver. In tal modo le varie fasi sono gestite con uid differenti; principio di base per la separazione dei privilegi. In questo modo eventuali demoni fraudolenti potranno, nel PEGGGIORE dei casi, alterare soltanto le richieste di certificato, non esponendo mai a rischio il certificato radice."
|
||||||
|
|
||||||
#: www/index/51.php:34
|
#: www/index/51.php:34
|
||||||
msgid "The simplest and most effective thing you can do is spread the word, by telling your friends, colleagues and relatives about us and join."
|
msgid "The simplest and most effective thing you can do is spread the word, by telling your friends, colleagues and relatives about us and join."
|
||||||
msgstr ""
|
msgstr "La cosa che più semplice e più efficace che possiate fare è passare parola, esortando amici e parenti unirsi a noi."
|
||||||
|
|
||||||
#: www/help/4.php:3
|
#: www/help/4.php:3
|
||||||
msgid "Then the system will try to generate some very random numbers to get a secure key."
|
msgid "Then the system will try to generate some very random numbers to get a secure key."
|
||||||
|
@ -2153,11 +2153,11 @@ msgstr "Quindi dovete inviare il contenuto del file CSR a CAcert:"
|
||||||
|
|
||||||
#: www/account/40.php:37 www/index/11.php:37
|
#: www/account/40.php:37 www/index/11.php:37
|
||||||
msgid "There are a number of other mailing lists CAcert runs, some are general discussion, others are technical (such as the development list) or platform specific help (such as the list for Apple Mac users)"
|
msgid "There are a number of other mailing lists CAcert runs, some are general discussion, others are technical (such as the development list) or platform specific help (such as the list for Apple Mac users)"
|
||||||
msgstr ""
|
msgstr "Ci sono diverse mailing list CAcert, alcune di discussione generale, altre tecniche (come le liste di sviluppo) o di ausilio a specifiche piattaforme (come la lista degli utenti Apple Mac)."
|
||||||
|
|
||||||
#: www/account/16.php:42 www/account/3.php:54
|
#: www/account/16.php:42 www/account/3.php:54
|
||||||
msgid "Please note: The class 3 root certificate needs to be imported into your email program as well as the class 1 root certificate so your email program can build a full trust path chain. Until we are included in browsers this might not be a desirable option for most people"
|
msgid "Please note: The class 3 root certificate needs to be imported into your email program as well as the class 1 root certificate so your email program can build a full trust path chain. Until we are included in browsers this might not be a desirable option for most people"
|
||||||
msgstr ""
|
msgstr "Nota Bene: il certificato radice di categoria 3 deve essere importato nel programma email assieme al certificato radice di categoria 1, in modo da poter costruire una catena di fiducia completa. Fino a quando non saremo inclusi nei browsers questa sarà un'operazione fastidiosa per la maggior parte degli utenti."
|
||||||
|
|
||||||
#: www/wot.php:284
|
#: www/wot.php:284
|
||||||
msgid "There was an error and I couldn't proceed"
|
msgid "There was an error and I couldn't proceed"
|
||||||
|
@ -2174,6 +2174,9 @@ msgstr "Informazioni"
|
||||||
#: www/help/2.php:42
|
#: www/help/2.php:42
|
||||||
msgid "There's nothing to it. I mean literally, you can already start sending your emails encrypted. Assuming of course you have your own digital signature certificate (e.g. as per above), and the person you want to send an encrypted email to also has a digital signature certificate, and has recently sent you a digitally signed email with it. If all these conditions hold, you just have to change the settings in your email software to send the email encrypted and hey presto! Your email software (probably Outlook I guess) should suss out the rest."
|
msgid "There's nothing to it. I mean literally, you can already start sending your emails encrypted. Assuming of course you have your own digital signature certificate (e.g. as per above), and the person you want to send an encrypted email to also has a digital signature certificate, and has recently sent you a digitally signed email with it. If all these conditions hold, you just have to change the settings in your email software to send the email encrypted and hey presto! Your email software (probably Outlook I guess) should suss out the rest."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Niente. Significa semplicemente che potete già inviare le vostre email in modo cifrato. Naturalmente assumendo che abbiate un vostro certificato di firma (vedi sopra) e che la persona a cui volete inviare un'email cifrata abbia a sua volta un certificato di firma e con esso abbia firmato un'email che vi ha inviato in precedenza. "
|
||||||
|
"Se queste condizioni sono verificate è sufficiente dire al vostro mailer di effettuare un invio cifrato, lui penserà al resto. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/index.php:272
|
#: www/index.php:272
|
||||||
msgid "This email address is currently valid in the system."
|
msgid "This email address is currently valid in the system."
|
||||||
|
@ -2195,7 +2198,7 @@ msgstr "Questa informativa indica quali tue informazioni otteniamo quando visiti
|
||||||
|
|
||||||
#: www/help/2.php:46
|
#: www/help/2.php:46
|
||||||
msgid "Thus, having now asked the question, you suppose that it's the people who make the browser software that have carefully decided who is a trustworthy Certificate Authority. Funnily enough, the mainstream browsers have not, historically, had public policies on how they decide whether a Certificate Authority gets added to their browser. All of the Certificate Authorities that have found themselves in the browser software, are big names, probably with big profits (so they must be doing a good job!)."
|
msgid "Thus, having now asked the question, you suppose that it's the people who make the browser software that have carefully decided who is a trustworthy Certificate Authority. Funnily enough, the mainstream browsers have not, historically, had public policies on how they decide whether a Certificate Authority gets added to their browser. All of the Certificate Authorities that have found themselves in the browser software, are big names, probably with big profits (so they must be doing a good job!)."
|
||||||
msgstr ""
|
msgstr "Quindi, avendo posto la domanda, supporrete che sia chi sviluppa il software del browser a decidere con attenzione chi è una Certificate Authority fidata. Invece i principali browser non hanno storicamente avuto politiche comuni in questo senso. Tutte le Certificate Authority che si sono trovate nei browser sono grossi nomi, con grossi profitti (così devono per forza fare un buon lavoro!)."
|
||||||
|
|
||||||
#: www/wot/9.php:42
|
#: www/wot/9.php:42
|
||||||
msgid "To"
|
msgid "To"
|
||||||
|
@ -2216,6 +2219,8 @@ msgstr "Per creare una Certificate Authority Non-Profit; un'alternativa alle CA
|
||||||
#: www/help/2.php:33
|
#: www/help/2.php:33
|
||||||
msgid "To fully understand, read the section directly above. I am using a free Certificate Authority to provide me with the ability to digitally sign my emails. As a result, this Certificate Authority is not (yet) recognised by your email software as it is a new organisation that is not yet fully established, although it is probably being included in the Mozilla browser. If you choose to, you can go the their site at CAcert.org to install the root certificate. You may be told that the certificate is untrusted - that is normal and I suggest that you continue installation regardless. Be aware that this implies your acceptance that you trust their secure distribution and storing of digital signatures, such as mine. (You already do this all the time). The CAcert.org root certificate will then automatically provide the safe validation of my digital signature, which I have entrusted to them. Or you can simply decide that you've wasted your time reading this and do nothing (humbug!). Shame on you! :-)"
|
msgid "To fully understand, read the section directly above. I am using a free Certificate Authority to provide me with the ability to digitally sign my emails. As a result, this Certificate Authority is not (yet) recognised by your email software as it is a new organisation that is not yet fully established, although it is probably being included in the Mozilla browser. If you choose to, you can go the their site at CAcert.org to install the root certificate. You may be told that the certificate is untrusted - that is normal and I suggest that you continue installation regardless. Be aware that this implies your acceptance that you trust their secure distribution and storing of digital signatures, such as mine. (You already do this all the time). The CAcert.org root certificate will then automatically provide the safe validation of my digital signature, which I have entrusted to them. Or you can simply decide that you've wasted your time reading this and do nothing (humbug!). Shame on you! :-)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Per capire appieno, leggi la sezione precedente. Sto usando una Certificate Authority libera per firmare digitalmente le mie email. Questa Certificate Authority, essendo una nuova organizzazione non ancora completamente affermata, non è (ancora) riconosciuta dal tuo mailer (probabilmente sta per essere inclusa in Mozilla). Se credi, puoi andare sul sito CAcert.org per installare il certificato radice. Può darsi ti venga segnalato che il certificato è insicuro: è normale e puoi proseguire tranquillamente con l'installazione. Sappi che questo implica l'accettazione come sicuro del loro sistema di distribuzione e conservazione delle firme digitali, come faccio io (lo fai già ogni volta). Così il certificato radice di CAcert.org fornirà automaticamente la convalida sicura della mia firma digitale, dato che mi fido di loro. "
|
||||||
|
"O puoi decidere semplicemente che hai sprecato il tuo tempo a leggere questo e non fare nulla. Vergogna! :-)"
|
||||||
|
|
||||||
#: www/help/3.php:2
|
#: www/help/3.php:2
|
||||||
msgid "To generate a public and private key pair and CSR for a Microsoft IIS 5 Server:"
|
msgid "To generate a public and private key pair and CSR for a Microsoft IIS 5 Server:"
|
||||||
|
@ -2224,6 +2229,8 @@ msgstr "Per creare una coppia di chiavi pubblica e privata ed un CSR per un serv
|
||||||
#: www/help/2.php:21
|
#: www/help/2.php:21
|
||||||
msgid "To get from computer Internet User A to Internet User B an email may pass through tens of anonymous computers on the Internet. These 'Internet infrastructure' computers are all free to inspect and change the contents of your email as they see fit. Governments systematically browse the contents of all emails going in/out/within their country, e.g. the"
|
msgid "To get from computer Internet User A to Internet User B an email may pass through tens of anonymous computers on the Internet. These 'Internet infrastructure' computers are all free to inspect and change the contents of your email as they see fit. Governments systematically browse the contents of all emails going in/out/within their country, e.g. the"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Per passare dall'utente A all'utente B di Internet un email può attraversare decine di computer anonimi. Tutti questi computer dell'infrastruttura di Internet sono liberi di ispezionare e cambiare il contenuto dell'email come gli pare. Vi sono organizzazioni governative che esaminano sistematicamente il contenuto di tutte le email che entrano ed escono dal loro paese. Ad esempio "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/index/0.php:24
|
#: www/index/0.php:24
|
||||||
msgid "To provide a trust mechanism to go with the security aspects of encryption."
|
msgid "To provide a trust mechanism to go with the security aspects of encryption."
|
||||||
|
@ -2255,7 +2262,7 @@ msgstr "Terze parti riconosciute."
|
||||||
|
|
||||||
#: www/help/2.php:60
|
#: www/help/2.php:60
|
||||||
msgid "U.K. e-mail snooping bill passed"
|
msgid "U.K. e-mail snooping bill passed"
|
||||||
msgstr ""
|
msgstr "è passata la legge inglese sullo snooping delle email"
|
||||||
|
|
||||||
#: www/help/2.php:21
|
#: www/help/2.php:21
|
||||||
msgid "UK Government has done this since the year 2000"
|
msgid "UK Government has done this since the year 2000"
|
||||||
|
@ -2267,7 +2274,7 @@ msgstr "Non è stato possibile trovare una corrispondenza fra i tuoi detta
|
||||||
|
|
||||||
#: www/help/3.php:5
|
#: www/help/3.php:5
|
||||||
msgid "Under 'Administrative Tools', open the 'Internet Services Manager'. Then open up the properties window for the website you wish to request the certificate for. Right-clicking on the particular website will open up its properties."
|
msgid "Under 'Administrative Tools', open the 'Internet Services Manager'. Then open up the properties window for the website you wish to request the certificate for. Right-clicking on the particular website will open up its properties."
|
||||||
msgstr ""
|
msgstr "Sotto 'Administrative Tools' apri 'Internet Service Manager'. Poi apri la finestra delle proprietà per il sito di cui desideri chiedere il certificato. Cliccando col tasto destro su un particolare sito si apriranno le sue proprietà."
|
||||||
|
|
||||||
#: www/help/0.php:12
|
#: www/help/0.php:12
|
||||||
msgid "Unofficial FAQ/Wiki"
|
msgid "Unofficial FAQ/Wiki"
|
||||||
|
@ -2379,7 +2386,7 @@ msgstr "Non utilizziamo i cookie per immagazzinarvi informazioni personali, usia
|
||||||
|
|
||||||
#: www/help/2.php:56
|
#: www/help/2.php:56
|
||||||
msgid "WebTrust for Certification Authorities"
|
msgid "WebTrust for Certification Authorities"
|
||||||
msgstr ""
|
msgstr "WebTrust per le autorità di certificazione"
|
||||||
|
|
||||||
#: www/account.php:27 www/account.php:36 www/cps.php:3 www/gpg.php:160
|
#: www/account.php:27 www/account.php:36 www/cps.php:3 www/gpg.php:160
|
||||||
#: www/gpg.php:179 www/help.php:20 www/index.php:105 www/index.php:342
|
#: www/gpg.php:179 www/help.php:20 www/index.php:105 www/index.php:342
|
||||||
|
@ -2394,7 +2401,7 @@ msgstr "Benvenuto alla sezione del sito web relativa alla tua account. Più
|
||||||
|
|
||||||
#: www/index/0.php:46
|
#: www/index/0.php:46
|
||||||
msgid "What can CAcert provide to you, to increase your privacy and security for free?"
|
msgid "What can CAcert provide to you, to increase your privacy and security for free?"
|
||||||
msgstr "Cosa pu&ograve; offrirti CAcert, per aumentare la tua privacy e la sicurezza gratuitamente?"
|
msgstr "Cosa può offrirti gratuitamente CAcert per aumentare la tua privacy e la tua sicurezza?"
|
||||||
|
|
||||||
#: www/help/2.php:2 www/help/2.php:14
|
#: www/help/2.php:2 www/help/2.php:14
|
||||||
msgid "What is it for?"
|
msgid "What is it for?"
|
||||||
|
@ -2505,12 +2512,12 @@ msgstr "È stato coinvolto nella traduzione del questo sito in Portoghese"
|
||||||
|
|
||||||
#: www/index/7.php:24
|
#: www/index/7.php:24
|
||||||
msgid "Has put a lot of time and effort into promoting and assuring people in Brazil and South America, and for helping to translate this site into Portuguese"
|
msgid "Has put a lot of time and effort into promoting and assuring people in Brazil and South America, and for helping to translate this site into Portuguese"
|
||||||
msgstr ""
|
msgstr "Ha profuso molto tempo e molte energie nel promuovere e nell'assicurare persone in Brasile e in Sudamerica e per tradurre questo sito in portoghese"
|
||||||
|
|
||||||
#: www/wot/6.php:44
|
#: www/wot/6.php:44
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Please check the following details match against what you witnessed when you met %s in person. You MUST NOT proceed unless you are sure the details are correct. Gross negligence may cause you to be liable."
|
msgid "Please check the following details match against what you witnessed when you met %s in person. You MUST NOT proceed unless you are sure the details are correct. Gross negligence may cause you to be liable."
|
||||||
msgstr ""
|
msgstr "Prego controlla che i seguenti dettagli corrispondano con ciò che hai constatato quando hai incontrato %s di persona. NON DEVI continuare a meno tu non sia sicuro che i dettagli sono corretti. Una tua negligenza può renderti sanzionabile."
|
||||||
|
|
||||||
#: includes/general_stuff.php:74
|
#: includes/general_stuff.php:74
|
||||||
msgid "CAcert Board"
|
msgid "CAcert Board"
|
||||||
|
@ -2518,7 +2525,7 @@ msgstr "Direzione di CAcert"
|
||||||
|
|
||||||
#: www/account/40.php:22 www/index/11.php:22
|
#: www/account/40.php:22 www/index/11.php:22
|
||||||
msgid "You can alternatively use the form below, however joining the list is the prefered option to support your queries"
|
msgid "You can alternatively use the form below, however joining the list is the prefered option to support your queries"
|
||||||
msgstr "In alternativa, puoi utilizzare il modulo seguente oppure iscriverti alla mailing list di supporto, che &egrave; la cosa migliore"
|
msgstr "In alternativa, puoi utilizzare il modulo seguente oppure iscriverti alla mailing list di supporto, che è la cosa migliore"
|
||||||
|
|
||||||
#: www/wot/4.php:19
|
#: www/wot/4.php:19
|
||||||
msgid "You can become a CAcert Assurer by seeking out trusted 3rd parties. You will also need to download and print out a copy of the TTP.pdf and fill in your sections. You will need to produce a photo copy of your ID, which the person assuring you will inspect against the originals. Once they are satisfied the documents appear to be genuine they need to sign the back of the photo copies, and fill in their sections of the TTP document. Once you have had your ID verified by 2 different people, pop the copies + forms in an envelope and post them to:"
|
msgid "You can become a CAcert Assurer by seeking out trusted 3rd parties. You will also need to download and print out a copy of the TTP.pdf and fill in your sections. You will need to produce a photo copy of your ID, which the person assuring you will inspect against the originals. Once they are satisfied the documents appear to be genuine they need to sign the back of the photo copies, and fill in their sections of the TTP document. Once you have had your ID verified by 2 different people, pop the copies + forms in an envelope and post them to:"
|
||||||
|
@ -2571,7 +2578,7 @@ msgstr "Ottieni il diritto a dire la tua su come è gestita CAcert (un'ass
|
||||||
|
|
||||||
#: www/help/3.php:21
|
#: www/help/3.php:21
|
||||||
msgid "You have now created a public/private key pair. The private key is stored locally on your machine. The public portion is sent to CAcert in the form of a CSR."
|
msgid "You have now created a public/private key pair. The private key is stored locally on your machine. The public portion is sent to CAcert in the form of a CSR."
|
||||||
msgstr ""
|
msgstr "Ora hai generato una coppia di chiavi publica/privata. La chiave privata è conservata localmente sulla tua macchina. La parte pubblica è trasmessa a CAcert sotto forma di un CSR."
|
||||||
|
|
||||||
#: www/wot.php:146
|
#: www/wot.php:146
|
||||||
msgid "You listed an invalid sponsor for this action."
|
msgid "You listed an invalid sponsor for this action."
|
||||||
|
@ -2612,7 +2619,7 @@ msgstr "Ora possiedi più di 50 punti, il tuo nome può essere inser
|
||||||
|
|
||||||
#: www/help/2.php:15
|
#: www/help/2.php:15
|
||||||
msgid "You see this all the time on the Internet - every time you go to a secure page on a web site, for example to enter personal details, or to make a purchase, every day you browse web sites that have been digitally signed by a Certificate Authority that is accepted as having the authority to sign it. This is all invisible to the user, except that you may be aware that you are entering a secure zone (e.g. SSL and HTTPS)."
|
msgid "You see this all the time on the Internet - every time you go to a secure page on a web site, for example to enter personal details, or to make a purchase, every day you browse web sites that have been digitally signed by a Certificate Authority that is accepted as having the authority to sign it. This is all invisible to the user, except that you may be aware that you are entering a secure zone (e.g. SSL and HTTPS)."
|
||||||
msgstr ""
|
msgstr "Succede sempre su Internet. Ogni volta che vai su una pagina sicura di un sito, per esempio per immettere dati personali o per fare un acquisto. Ogni giorno che visiti siti firmati digitalmente da una Certificate Authority che è accettata come autorizzata alla firma. Ciò è del tutto invisibile all'utente, salvo poter essere informato che sta entrando in una zona sicura (per esempio SSL e HTTPS)."
|
||||||
|
|
||||||
#: includes/account.php:177
|
#: includes/account.php:177
|
||||||
msgid "You submitted invalid email addresses, or email address you no longer have control of. Can't continue with certificate request."
|
msgid "You submitted invalid email addresses, or email address you no longer have control of. Can't continue with certificate request."
|
||||||
|
@ -2637,11 +2644,11 @@ msgstr "Hai ricevuto %s punti, ora ne hai %s in totale."
|
||||||
|
|
||||||
#: www/index/0.php:105
|
#: www/index/0.php:105
|
||||||
msgid "You will need to be issued 100 points by meeting with existing assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents; OR if it is too difficult to meet up with existing assurers in your area, meet with two Trusted Third Party assurers (notary public, justice of the peace, lawyer, bank manager, accountant) to do the verifying."
|
msgid "You will need to be issued 100 points by meeting with existing assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents; OR if it is too difficult to meet up with existing assurers in your area, meet with two Trusted Third Party assurers (notary public, justice of the peace, lawyer, bank manager, accountant) to do the verifying."
|
||||||
msgstr ""
|
msgstr "Devi essere accreditato a 100 punti: incontrando assicuratori della rete di sicurezza di CAcert OPPURE, se è troppo difficile incontrare assicuratori nella tua zona, incontrando due terze parti riconosciute (notai, giudici di pace, avvocati, responsabili di banca, commercialisti) che verifichino la tua identità rispetto a documenti muniti di fotografia."
|
||||||
|
|
||||||
#: www/help/3.php:23
|
#: www/help/3.php:23
|
||||||
msgid "You will now create a CSR. This information will be displayed on your certificate, and identifies the owner of the key to users. The CSR is only used to request the certificate. The following characters must be excluded from your CSR fields, or your certificate may not work:"
|
msgid "You will now create a CSR. This information will be displayed on your certificate, and identifies the owner of the key to users. The CSR is only used to request the certificate. The following characters must be excluded from your CSR fields, or your certificate may not work:"
|
||||||
msgstr ""
|
msgstr "Ora devi generare un CSR. Queste informazioni saranno visualizzate sul tuo certificato e identificano il proprietario della chiave agli utenti. Il CSR è usato soltanto per chiedere il certificato. I seguenti caratteri devono essere esclusi dai campi del CSR o il certificato potrebbe non funzionare:"
|
||||||
|
|
||||||
#: www/help/3.php:66
|
#: www/help/3.php:66
|
||||||
msgid "You will see a confirmation screen."
|
msgid "You will see a confirmation screen."
|
||||||
|
@ -2697,7 +2704,7 @@ msgstr "Le informazioni relative alla tua account sono state aggiornate."
|
||||||
|
|
||||||
#: www/help/2.php:16
|
#: www/help/2.php:16
|
||||||
msgid "Your browser includes special digital (root) certificates from a number of these 'Certificate Authorities' by default, and all web sites use certificates that are validated by one of these companies, which you as a user implicitly trust every time you go to the secure part of a web site. (You might ask, who validates the security of the Certificate Authorities, and why should you trust them?!"
|
msgid "Your browser includes special digital (root) certificates from a number of these 'Certificate Authorities' by default, and all web sites use certificates that are validated by one of these companies, which you as a user implicitly trust every time you go to the secure part of a web site. (You might ask, who validates the security of the Certificate Authorities, and why should you trust them?!"
|
||||||
msgstr ""
|
msgstr "Il tuo browser include di default speciali certificati digitali (detti radice) generati da Certificate Autority. Tutti i siti web usano certificati che sono convalidati da una di queste aziende a cui, come utente, implicitamente dai fiducia ogniqualvolta visiti un sito web sicuro. (potresti chiederti: chi convalida la sicurezza delle Certificate Authority e perchè dovrei fidarmi?!)"
|
||||||
|
|
||||||
#: includes/account.php:281 includes/account.php:491 includes/account.php:554
|
#: includes/account.php:281 includes/account.php:491 includes/account.php:554
|
||||||
#: includes/account.php:667 includes/account.php:1017
|
#: includes/account.php:667 includes/account.php:1017
|
||||||
|
@ -2762,7 +2769,7 @@ msgstr "qui"
|
||||||
|
|
||||||
#: www/help/3.php:49
|
#: www/help/3.php:49
|
||||||
msgid "lines. Do not copy any extra line feeds or carriage returns at the beginning or end of the certificate. Save the certificate into a text editor like Notepad. Save the certificate with an extension of .cer and a meaningful name like certificate.cer"
|
msgid "lines. Do not copy any extra line feeds or carriage returns at the beginning or end of the certificate. Save the certificate into a text editor like Notepad. Save the certificate with an extension of .cer and a meaningful name like certificate.cer"
|
||||||
msgstr ""
|
msgstr "linee. Non copiare line feed o carriage return supplementari all'inizio o alla fine del certificato. Incolla il certificato in un editor come Notepad. Salva il certificato con un'estensione .cer e con un nome significativo come certificato.cer"
|
||||||
|
|
||||||
#: www/account/13.php:32 www/account/13.php:42 www/account/13.php:80
|
#: www/account/13.php:32 www/account/13.php:42 www/account/13.php:80
|
||||||
#: www/account/13.php:90 www/index/1.php:27 www/index/1.php:37
|
#: www/account/13.php:90 www/index/1.php:27 www/index/1.php:37
|
||||||
|
@ -2790,7 +2797,7 @@ msgstr "Analizza"
|
||||||
#: includes/account.php:840 www/index.php:100
|
#: includes/account.php:840 www/index.php:100
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The Pass Phrase you submitted failed to contain enough differing characters and/or contained words from your name and/or email address. Only scored %s points out of 6."
|
msgid "The Pass Phrase you submitted failed to contain enough differing characters and/or contained words from your name and/or email address. Only scored %s points out of 6."
|
||||||
msgstr ""
|
msgstr "La Pass Phrase impostata non contiene abbastanza caratteri e/o contiene parole prese dal tuo nome e/o indirizzo email. Ottiene soltanto %s punti su 6."
|
||||||
|
|
||||||
#: www/src-lic.php:20
|
#: www/src-lic.php:20
|
||||||
msgid "CAcert Source License"
|
msgid "CAcert Source License"
|
||||||
|
@ -2798,23 +2805,25 @@ msgstr "Licenza dei sorgenti di CAcert"
|
||||||
|
|
||||||
#: www/index/7.php:25
|
#: www/index/7.php:25
|
||||||
msgid "Did a substantial amount of work on the previous website design, and has been floating about on the mailing lists often giving invaluble insight into what we should be doing better."
|
msgid "Did a substantial amount of work on the previous website design, and has been floating about on the mailing lists often giving invaluble insight into what we should be doing better."
|
||||||
msgstr ""
|
msgstr "Ha fatto una quantità notevole di lavoro per il precedente sito Web e frequenta assiduamente le mailing list, dando spesso preziosi punti di vista su come possiamo migliorare."
|
||||||
|
|
||||||
#: includes/account.php:25 includes/account.php:302
|
#: includes/account.php:25 includes/account.php:302
|
||||||
msgid "Due to the possibility for punycode domain exploits we currently do not allow any certificates to sign punycode domains or email addresses."
|
msgid "Due to the possibility for punycode domain exploits we currently do not allow any certificates to sign punycode domains or email addresses."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"A causa della possibilità di exploit punycode, attualmente non consentiamo che i certificati possano firmare domini o indirizzi email con nome unicode. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/help/9.php:28
|
#: www/help/9.php:28
|
||||||
msgid "Firstly you need mod-ssl and apache setup (this is beyond the scope of this FAQ item and you will need to search on google etc for LAMP setup information). I recommend mod-ssl over apache-ssl because it means you need less resources to achieve the same result."
|
msgid "Firstly you need mod-ssl and apache setup (this is beyond the scope of this FAQ item and you will need to search on google etc for LAMP setup information). I recommend mod-ssl over apache-ssl because it means you need less resources to achieve the same result."
|
||||||
msgstr ""
|
msgstr "In primo luogo occorre la messa a punto di apache e del relativo mod-ssl (questo argomento esula dala portata di questa FAQ e devi cercare su google ecc. le informazioni su setup LAMP). Suggerisco mod-ssl rispetto ad apache-ssl perché occorrono meno risorse per raggiungere lo stesso risultato."
|
||||||
|
|
||||||
#: www/help/0.php:26 www/help/9.php:26
|
#: www/help/0.php:26 www/help/9.php:26
|
||||||
msgid "How can I do a single sign on similar to CAcert using client certificates?"
|
msgid "How can I do a single sign on similar to CAcert using client certificates?"
|
||||||
msgstr ""
|
msgstr "Come posso fare una singola firma in modo analogo a CAcert usando i certificati client?"
|
||||||
|
|
||||||
#: www/index/1.php:17
|
#: www/index/1.php:17
|
||||||
msgid "In light of the number of people having issues with making up a password we have the following suggestions:"
|
msgid "In light of the number of people having issues with making up a password we have the following suggestions:"
|
||||||
msgstr ""
|
msgstr "A seguito dell'elevato numero di persone che ha dubbi su come generare una password, diamo i seguenti suggerimenti:"
|
||||||
|
|
||||||
#: www/index/17.php:142
|
#: www/index/17.php:142
|
||||||
msgid "Install a Root Certificate using Internet Explorer and the CEnroll ActiveX control. This avoids the Microsoft Certificate Installation wizard and all of its complexity and extra screens for users. This however will ONLY work for Microsoft Internet Explorer."
|
msgid "Install a Root Certificate using Internet Explorer and the CEnroll ActiveX control. This avoids the Microsoft Certificate Installation wizard and all of its complexity and extra screens for users. This however will ONLY work for Microsoft Internet Explorer."
|
||||||
|
@ -2830,11 +2839,11 @@ msgstr "Una volta che hai tutto installato e funzionante serve che aggiungi dell
|
||||||
|
|
||||||
#: www/help/9.php:49
|
#: www/help/9.php:49
|
||||||
msgid "Once you have everything working and you've tested sending a client certificate to your site and you're happy all is well you can start adding code to PHP (or any other language you like that can pull server environment information). At present I only have PHP code available and the example is in PHP"
|
msgid "Once you have everything working and you've tested sending a client certificate to your site and you're happy all is well you can start adding code to PHP (or any other language you like that can pull server environment information). At present I only have PHP code available and the example is in PHP"
|
||||||
msgstr ""
|
msgstr "Una volta che è tutto funzionante e hai verificato la corretta trasmissione del certificato client al tuo sito, puoi iniziare ad aggiungere codice al PHP (o a qualunque altro linguaggio possa leggere le variabili di ambiente del server). Attualmente ho soltanto codice PHP disponibile perciò l'esempio è in PHP"
|
||||||
|
|
||||||
#: www/help/9.php:47
|
#: www/help/9.php:47
|
||||||
msgid "Please note, you will need to alter the paths, hostname and IP of the above example, which is just that an example! The SSLCACertificateFile directive is supposed to point to a file with the root certificate you wish to verify your client certificates against, for the CAcert website we obviously only accept certificates issued by our own website and use our root certificate to initially verify this."
|
msgid "Please note, you will need to alter the paths, hostname and IP of the above example, which is just that an example! The SSLCACertificateFile directive is supposed to point to a file with the root certificate you wish to verify your client certificates against, for the CAcert website we obviously only accept certificates issued by our own website and use our root certificate to initially verify this."
|
||||||
msgstr ""
|
msgstr "Nota bene: devi alterare il path, l'hostname e l'IP dell'esempio di cui sopra, che è giusto un esempio! Si suppone che la direttiva SSLCACertificateFile punti un file con il certificato root che serve a verificare i client. Per il sito CAcert ovviamente accettiamo soltanto i certificati emessi dal nostro sito e usiamo il nostro certificato root per verificarlo inizialmente."
|
||||||
|
|
||||||
#: includes/general_stuff.php:69
|
#: includes/general_stuff.php:69
|
||||||
msgid "RSS News Feed"
|
msgid "RSS News Feed"
|
||||||
|
@ -2842,11 +2851,13 @@ msgstr "News via RSS"
|
||||||
|
|
||||||
#: www/help/2.php:67
|
#: www/help/2.php:67
|
||||||
msgid "The point is, as the current situation holds, you should be wary of anyone making decisions for you (i.e. pre-installed certificates in your browser), and you should be weary of anyone else's certificates that you install. But at the end of the day, it all boils down to trust. If an independent Certificate Authority seems to be reputable to you, and you can find evidence to support this claim, there's no reason why you shouldn't trust it any less than you implicitly trust the people who have already made mistakes."
|
msgid "The point is, as the current situation holds, you should be wary of anyone making decisions for you (i.e. pre-installed certificates in your browser), and you should be weary of anyone else's certificates that you install. But at the end of the day, it all boils down to trust. If an independent Certificate Authority seems to be reputable to you, and you can find evidence to support this claim, there's no reason why you shouldn't trust it any less than you implicitly trust the people who have already made mistakes."
|
||||||
msgstr ""
|
msgstr "Il punto è, vista la situazione attuale, che dovresti essere guardingo rispetto a chiunque prenda decisioni per te (cioè certificati preinstallati nel tuo browser) e dovresti essere sospettoso di qualunque certificato vorresti installare. Però poi va a finire che ti fidi. Se una Certificate Authority indipendente sembra essere affidabile e trovi conferme di questo fatto, non c'è ragione per la quale non dovresti fidarti e ancor meno c'è ragione per non fidarti implicitamente di chi ha commesso lo stesso errore."
|
||||||
|
|
||||||
#: www/index/1.php:19
|
#: www/index/1.php:19
|
||||||
msgid "This wouldn't match your name or email at all, it contains at least 1 lower case letter, 1 upper case letter, a number, white space and a misc symbol. You get additional points for being over 15 characters and a second additional point for having it over 30. The system starts reducing points if you include any section of your name, or password or email address or if it matches a word from the english dictionary..."
|
msgid "This wouldn't match your name or email at all, it contains at least 1 lower case letter, 1 upper case letter, a number, white space and a misc symbol. You get additional points for being over 15 characters and a second additional point for having it over 30. The system starts reducing points if you include any section of your name, or password or email address or if it matches a word from the english dictionary..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Non deve corrispondere nè al tuo nome nè alla tua email, contenere almeno un carattere minuscolo, un carattere maiuscolo, un numero, uno spazio e un simbolo qualunque. Ottieni punti in più se supera i 15 caratteri e ancora di più se supera i 30. Il sistema comincia a ridurre il punteggio se includi qualche sezione del tuo nome o password o indirizzo email o se contiene una parola inglese... "
|
||||||
|
""
|
||||||
|
|
||||||
#: includes/account_stuff.php:153 includes/general_stuff.php:48
|
#: includes/account_stuff.php:153 includes/general_stuff.php:48
|
||||||
#: includes/tverify_stuff.php:34
|
#: includes/tverify_stuff.php:34
|
||||||
|
@ -2894,7 +2905,7 @@ msgstr "Soggetto del Certificato"
|
||||||
|
|
||||||
#: www/index/16.php:17 www/index/3.php:17
|
#: www/index/16.php:17 www/index/3.php:17
|
||||||
msgid "Click here if you want to import the root certificate into Microsoft Internet Explorer"
|
msgid "Click here if you want to import the root certificate into Microsoft Internet Explorer"
|
||||||
msgstr ""
|
msgstr "Clicca qui se vuoi importare il certificato radice in Microsoft Internet Explorer"
|
||||||
|
|
||||||
#: www/account/52.php:48
|
#: www/account/52.php:48
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
|
@ -2904,7 +2915,7 @@ msgstr "Commenti"
|
||||||
#: includes/account.php:1238 includes/account.php:1251
|
#: includes/account.php:1238 includes/account.php:1251
|
||||||
#: includes/account.php:1859 includes/account.php:1884
|
#: includes/account.php:1859 includes/account.php:1884
|
||||||
msgid "CommonName field was blank. This is usually caused by entering your own name when openssl prompt's you for 'YOUR NAME', or if you try to issue certificates for domains you haven't already verified, as such this process can't continue."
|
msgid "CommonName field was blank. This is usually caused by entering your own name when openssl prompt's you for 'YOUR NAME', or if you try to issue certificates for domains you haven't already verified, as such this process can't continue."
|
||||||
msgstr ""
|
msgstr "Il campo di CommonName era vuoto. Ciò capita di solito se lo inserisci quando openssl richiede 'YOUR NAME', o se cerchi di emettere certificati per domini per i quali non sei ancora verificato, in questi casi il processo non può continuare."
|
||||||
|
|
||||||
#: www/account/52.php:42
|
#: www/account/52.php:42
|
||||||
msgid "Current Points"
|
msgid "Current Points"
|
||||||
|
@ -2913,12 +2924,12 @@ msgstr "Punti attuali"
|
||||||
#: www/disputes/6.php:16
|
#: www/disputes/6.php:16
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Currently the domain '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent."
|
msgid "Currently the domain '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent."
|
||||||
msgstr ""
|
msgstr "Attualmente il dominio '%s' è in disputa, ti è stata trasmessa un'email per risolvere il problema; sotto c'è l'opzione per accettare, rifiutare o segnalare la richiesta come fraudolenta."
|
||||||
|
|
||||||
#: www/disputes/4.php:16
|
#: www/disputes/4.php:16
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Currently the email '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent."
|
msgid "Currently the email '%s' is in dispute, you have been sent an email to resolve the issue, below you have the option to accept, reject or report the request as fraudulent."
|
||||||
msgstr ""
|
msgstr "Attualmente l'email '%s' è in disputa, ti è stato trasmessa un'email per risolvere il problema; sotto c'è l'opzione per accettare, rifiutare o segnalare la richiesta come fraudolenta."
|
||||||
|
|
||||||
#: www/account/1.php:31 www/account/7.php:33
|
#: www/account/1.php:31 www/account/7.php:33
|
||||||
msgid "Currently we only issue certificates for Punycode domains if the person requesting them has code signing attributes attached to their account, as these have potentially slightly higher security risk."
|
msgid "Currently we only issue certificates for Punycode domains if the person requesting them has code signing attributes attached to their account, as these have potentially slightly higher security risk."
|
||||||
|
@ -2930,7 +2941,7 @@ msgstr "Copia la tua chiave GPG qui sotto..."
|
||||||
|
|
||||||
#: www/index/1.php:18
|
#: www/index/1.php:18
|
||||||
msgid "To get a password that will work, we suggest the following example"
|
msgid "To get a password that will work, we suggest the following example"
|
||||||
msgstr ""
|
msgstr "Per ottenere una parola d'accesso che funzionerà, suggeriamo il seguente esempio"
|
||||||
|
|
||||||
#: www/disputes/2.php:20
|
#: www/disputes/2.php:20
|
||||||
msgid "Dispute Domain"
|
msgid "Dispute Domain"
|
||||||
|
@ -2972,6 +2983,8 @@ msgstr "Dispute Dominio ed Email"
|
||||||
#: www/index/5.php:58
|
#: www/index/5.php:58
|
||||||
msgid "Due to the increasing number of people that haven't been able to recover their passwords via the lost password form there is now 2 other options available to you. If you don't care about your account you can signup under a new account file dispute forms to recover your email accounts and domains. If you would like to recover your password via help from support staff this requires a small payment to cover time from a real person to verify your claims to ownership on an account, click the payment button below to continue."
|
msgid "Due to the increasing number of people that haven't been able to recover their passwords via the lost password form there is now 2 other options available to you. If you don't care about your account you can signup under a new account file dispute forms to recover your email accounts and domains. If you would like to recover your password via help from support staff this requires a small payment to cover time from a real person to verify your claims to ownership on an account, click the payment button below to continue."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"A causa dell'elevato numero di persone che non sono riuscite a recuperare la password con l'apposito form ci sono adesso altre due opzioni disponibili. Se non ti interessa l'account attuale puoi iscriverti con un nuovo account e iniziare una disputa per recuperare gli indirizzi email e i domini da quello precedente. Altrimenti puoi richiedere il recupero della password allo staff di supporto. Ciò richiede il pagamento di una piccola somma per remunerare il tempo occorrente alla persona dello staff per verificare la tua rivendicazione di proprietà su un account. Clicca il tasto di pagamento sotto per proseguire. "
|
||||||
|
""
|
||||||
|
|
||||||
#: includes/account.php:50 includes/account.php:402 www/index.php:293
|
#: includes/account.php:50 includes/account.php:402 www/index.php:293
|
||||||
msgid "Email Address given was invalid, or a test connection couldn't be made to your server, or the server rejected the email address as invalid"
|
msgid "Email Address given was invalid, or a test connection couldn't be made to your server, or the server rejected the email address as invalid"
|
||||||
|
@ -2992,7 +3005,7 @@ msgstr "Invia una Disputa"
|
||||||
|
|
||||||
#: www/index/7.php:22
|
#: www/index/7.php:22
|
||||||
msgid "For much of the art work that exists on the website, t-shirt designs, much of the organisational work for Usenix '04, as well as a few published articles and written documents."
|
msgid "For much of the art work that exists on the website, t-shirt designs, much of the organisational work for Usenix '04, as well as a few published articles and written documents."
|
||||||
msgstr ""
|
msgstr "Per gran parte della grafica che esiste sul sito, i disegni delle t-shirt, gran parte del lavoro organizzativo per Usenix '04, nonché per alcuni articoli pubblicati e documenti redatti."
|
||||||
|
|
||||||
#: www/index/16.php:23 www/index/3.php:23
|
#: www/index/16.php:23 www/index/3.php:23
|
||||||
msgid "GPG Key"
|
msgid "GPG Key"
|
||||||
|
@ -3000,7 +3013,7 @@ msgstr "Chiave GPG"
|
||||||
|
|
||||||
#: www/account/40.php:20 www/index/11.php:20
|
#: www/account/40.php:20 www/index/11.php:20
|
||||||
msgid "General questions about CAcert should be sent to the general support list, please send all emails in ENGLISH only, this list has many more volunteers then those directly involved with the running of the website, everyone on the mailing list understands english, even if this isn't their native language this will increase your chance at a competent reply. While it's best if you sign up to the mailing list to get replied to, you don't have to, but please make sure you note this in your email, otherwise it might seem like you didn't get a reply to your question."
|
msgid "General questions about CAcert should be sent to the general support list, please send all emails in ENGLISH only, this list has many more volunteers then those directly involved with the running of the website, everyone on the mailing list understands english, even if this isn't their native language this will increase your chance at a competent reply. While it's best if you sign up to the mailing list to get replied to, you don't have to, but please make sure you note this in your email, otherwise it might seem like you didn't get a reply to your question."
|
||||||
msgstr ""
|
msgstr "Le domande generali circa CAcert dovrebbero essere trasmesse alla lista generale di supporto. Per favore trasmetti soltanto email in inglese. Questa lista ha molti più volontari di quelli direttamente coinvolti nel buon funzionamento del sito e tutti capiscono l'inglese anche se non è la loro lingua madre. Ciò aumenta la probabilità di una risposta esauriente. Anche se è meglio iscriversi alla lista per ottenere risposte, ciò non è strettamente necessario. Però assicurati di annotarlo nell'email, altrimenti potresti non ricevere le risposte."
|
||||||
|
|
||||||
#: www/gpg/2.php:36
|
#: www/gpg/2.php:36
|
||||||
msgid "No PGP/GPG certificates are currently listed."
|
msgid "No PGP/GPG certificates are currently listed."
|
||||||
|
@ -3024,7 +3037,7 @@ msgstr "I miei punti"
|
||||||
|
|
||||||
#: www/index/7.php:21
|
#: www/index/7.php:21
|
||||||
msgid "He's constantly helping out on the support list, building up documentation and all round nice guy, he was even offered a free book and turned down the offer until there is a book on CAcert available!"
|
msgid "He's constantly helping out on the support list, building up documentation and all round nice guy, he was even offered a free book and turned down the offer until there is a book on CAcert available!"
|
||||||
msgstr ""
|
msgstr "Sta fornendo costantemente aiuto sulla lista di supporto, sta sviluppando la documentazione e gli è stato perfino offerta una pubblicazione gratis ma, essendo tutto di un pezzo, ha declinato l'offerta fino a che non ci sarà un libro su CAcert disponibile!"
|
||||||
|
|
||||||
#: www/account/52.php:49
|
#: www/account/52.php:49
|
||||||
msgid "I agree with this Application"
|
msgid "I agree with this Application"
|
||||||
|
@ -3037,18 +3050,20 @@ msgstr "Non accetto questi termini"
|
||||||
#: www/disputes/0.php:18
|
#: www/disputes/0.php:18
|
||||||
msgid "If you want to dispute who has control of your email address or domain, select 'Dispute Email' or 'Dispute Domain' on the right hand side."
|
msgid "If you want to dispute who has control of your email address or domain, select 'Dispute Email' or 'Dispute Domain' on the right hand side."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Se intendi disputare chi ha il controllo del tuo indirizzo email o del tuo dominio, scegli 'Disputa email' o 'Disputa dominio' a destra. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/disputes/0.php:20
|
#: www/disputes/0.php:20
|
||||||
msgid "If you would like to report an abuse of our certificates that breaches our policies please select the Abuse menu on the right."
|
msgid "If you would like to report an abuse of our certificates that breaches our policies please select the Abuse menu on the right."
|
||||||
msgstr ""
|
msgstr "Se volessi segnalare un uso abusivo dei nostri certificati che apre un varco nelle nostre politiche di sicurezza seleziona il menu Abusi a destra."
|
||||||
|
|
||||||
#: www/disputes/2.php:16
|
#: www/disputes/2.php:16
|
||||||
msgid "If your dispute is successful the domain will be removed from the current account and any certificates will be revoked."
|
msgid "If your dispute is successful the domain will be removed from the current account and any certificates will be revoked."
|
||||||
msgstr ""
|
msgstr "Se la tua disputa riesce il dominio sarà rimosso dall'attuale account e tutti i certificati saranno revocati."
|
||||||
|
|
||||||
#: www/disputes/1.php:16
|
#: www/disputes/1.php:16
|
||||||
msgid "If your dispute is successful you will have the email address removed from the system, you will need add the email address as per usual afterwards. The email will be removed from the current account and any certificates will be revoked."
|
msgid "If your dispute is successful you will have the email address removed from the system, you will need add the email address as per usual afterwards. The email will be removed from the current account and any certificates will be revoked."
|
||||||
msgstr ""
|
msgstr "Se la tua disputa riesce, l'indirizzo email sarà rimosso dal sistema e successivamente dovrai riaggiungerlo con il metodo usuale. L'email sarà rimossa dall'attuale account e tutti i certificati saranno revocati."
|
||||||
|
|
||||||
#: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182
|
#: www/disputes.php:91 www/disputes.php:115 www/disputes.php:182
|
||||||
#: www/disputes.php:206
|
#: www/disputes.php:206
|
||||||
|
@ -3069,7 +3084,7 @@ msgstr "Nome nel file"
|
||||||
|
|
||||||
#: www/account/11.php:36
|
#: www/account/11.php:36
|
||||||
msgid "No additional information will be included on certificates because it can not be automatically checked by the system."
|
msgid "No additional information will be included on certificates because it can not be automatically checked by the system."
|
||||||
msgstr ""
|
msgstr "Informazioni supplementari non saranno incluse nei certificati perché non possono essere controllate automaticamente dal sistema."
|
||||||
|
|
||||||
#: www/disputes.php:300
|
#: www/disputes.php:300
|
||||||
msgid "Not a valid Domain. Can't continue."
|
msgid "Not a valid Domain. Can't continue."
|
||||||
|
@ -3101,7 +3116,7 @@ msgstr "URL del documento di identificazione con foto"
|
||||||
|
|
||||||
#: www/disputes/0.php:16
|
#: www/disputes/0.php:16
|
||||||
msgid "Please select the most appropriate section to report your problem."
|
msgid "Please select the most appropriate section to report your problem."
|
||||||
msgstr ""
|
msgstr "Seleziona la sezione più adatta a segnalare il tuo problema."
|
||||||
|
|
||||||
#: www/account/52.php:43
|
#: www/account/52.php:43
|
||||||
msgid "Potential Points"
|
msgid "Potential Points"
|
||||||
|
@ -3113,7 +3128,7 @@ msgstr "Indirizzo di posta elettronica principale"
|
||||||
|
|
||||||
#: www/help/0.php:20
|
#: www/help/0.php:20
|
||||||
msgid "Digital signing (a guide for normal people)"
|
msgid "Digital signing (a guide for normal people)"
|
||||||
msgstr ""
|
msgstr "Firma digitale (guida per la gente normale)"
|
||||||
|
|
||||||
#: www/wot/1.php:133
|
#: www/wot/1.php:133
|
||||||
msgid "Email Me"
|
msgid "Email Me"
|
||||||
|
@ -3137,7 +3152,7 @@ msgstr "Dettagli della richiesta"
|
||||||
|
|
||||||
#: www/index/0.php:75
|
#: www/index/0.php:75
|
||||||
msgid "Same as above plus get 100 assurance points by meeting with multiple assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents."
|
msgid "Same as above plus get 100 assurance points by meeting with multiple assurers from the CAcert Web of Trust, who verify your identity using your government issued photo identity documents."
|
||||||
msgstr ""
|
msgstr "Come sopra più 100 punti di assicurazione ottenuti incontrando diversi assicuratori del circuito CAcert, che verificano la tua identità rispetto a documenti muniti di fotografia."
|
||||||
|
|
||||||
#: www/wot/5.php:20
|
#: www/wot/5.php:20
|
||||||
msgid "Send reminder notice"
|
msgid "Send reminder notice"
|
||||||
|
@ -3159,7 +3174,7 @@ msgstr "Proposta per il meccanismo di recupero del certificato"
|
||||||
#: www/disputes.php:423
|
#: www/disputes.php:423
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The domain '%s' has been entered into the dispute system, the email address you choose will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."
|
msgid "The domain '%s' has been entered into the dispute system, the email address you choose will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."
|
||||||
msgstr ""
|
msgstr "Il dominio '%s' è entrato nel sistema di disputa, all'indirizzo email che scegli ora sarà trasmessa un'email che darà al destinatario l'opzione di accettare o di rifiutare la richiesta. Se entro 2 giorni non avremo ricevuto una risposta valida pro o contro scarteremo la richiesta."
|
||||||
|
|
||||||
#: www/disputes.php:400
|
#: www/disputes.php:400
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -3179,7 +3194,7 @@ msgstr "%s preferisce essere contattato in %s"
|
||||||
#: www/disputes.php:289
|
#: www/disputes.php:289
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The email address '%s' has been entered into the dispute system, the email address will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."
|
msgid "The email address '%s' has been entered into the dispute system, the email address will now be sent an email which will give the recipent the option of accepting or rejecting the request, if after 2 days we haven't received a valid response for or against we will discard the request."
|
||||||
msgstr ""
|
msgstr "L'indirizzo email '%s' è entrato nel sistema di disputa, all'indirizzo email che scegli ora sarà trasmessa un'email che darà al destinatario l'opzione di accettare o di rifiutare la richiesta. Se entro 2 giorni non avremo ricevuto una risposta valida pro o contro scarteremo la richiesta."
|
||||||
|
|
||||||
#: includes/account.php:2056
|
#: includes/account.php:2056
|
||||||
msgid "The following comments were made by reviewers"
|
msgid "The following comments were made by reviewers"
|
||||||
|
@ -3187,7 +3202,7 @@ msgstr "I seguenti commenti sono stati fatti dai revisori"
|
||||||
|
|
||||||
#: www/account/11.php:38
|
#: www/account/11.php:38
|
||||||
msgid "The following hostnames were rejected because the system couldn't link them to your account, if they are valid please verify the domains against your account."
|
msgid "The following hostnames were rejected because the system couldn't link them to your account, if they are valid please verify the domains against your account."
|
||||||
msgstr ""
|
msgstr "I seguenti hostname sono stati rifiutati perché il sistema non può riferirli al tuo account, se sono validi verifica i domini registrati."
|
||||||
|
|
||||||
#: www/index/7.php:18
|
#: www/index/7.php:18
|
||||||
msgid "The list of names are in no sense of order"
|
msgid "The list of names are in no sense of order"
|
||||||
|
@ -3216,6 +3231,8 @@ msgstr "Poiché si trattava dell'indirizzo principale dell'account, e ness
|
||||||
#: www/wot.php:255
|
#: www/wot.php:255
|
||||||
msgid "To make it easier for others in your area to find you, it's helpful to list yourself as an assurer (this is voluntry), as well as a physical location where you live or work the most. You can flag your account to be listed, and add a comment to the display by going to:"
|
msgid "To make it easier for others in your area to find you, it's helpful to list yourself as an assurer (this is voluntry), as well as a physical location where you live or work the most. You can flag your account to be listed, and add a comment to the display by going to:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Per renderti più facilmente reperibile ad altri nella tua area è utile elencarti come assicuratore e specificare un'ubicazione fisica dove vivi o dove lavori abitualmente (ciò è opzionale). Puoi settare l'opzione nel tuo account e aggiungere un commento da visualizzare andando a: "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/account/43.php:101
|
#: www/account/43.php:101
|
||||||
msgid "Tverify Account"
|
msgid "Tverify Account"
|
||||||
|
@ -3224,10 +3241,12 @@ msgstr "Verifica l'account"
|
||||||
#: www/account/11.php:48
|
#: www/account/11.php:48
|
||||||
msgid "Unable to continue as no valid commonNames or subjectAltNames were present on your certificate request."
|
msgid "Unable to continue as no valid commonNames or subjectAltNames were present on your certificate request."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Impossibile proseguire: nella richiesta di certificato non erano presenti commonName o subjectAltName validi. "
|
||||||
|
""
|
||||||
|
|
||||||
#: includes/account.php:1997
|
#: includes/account.php:1997
|
||||||
msgid "Unable to find a valid tverify request for this ID."
|
msgid "Unable to find a valid tverify request for this ID."
|
||||||
msgstr ""
|
msgstr "Impossibile trovare una richiesta tverify valida per questo ID."
|
||||||
|
|
||||||
#: www/account/51.php:29 www/account/52.php:61
|
#: www/account/51.php:29 www/account/52.php:61
|
||||||
msgid "Unable to locate a valid request for that UID."
|
msgid "Unable to locate a valid request for that UID."
|
||||||
|
@ -3307,6 +3326,8 @@ msgstr "Hai scelto di rifiutare questa disputa e la richiesta sarà rimoss
|
||||||
#: www/disputes.php:269
|
#: www/disputes.php:269
|
||||||
msgid "You only dispute the primary email address of an account if there is no longer any email addresses or domains linked to it."
|
msgid "You only dispute the primary email address of an account if there is no longer any email addresses or domains linked to it."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Disputa l'indirizzo email primario di un accounto soltanto se non ci sono più indirizzi email o domini ad esso collegati. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/verify.php:34
|
#: www/verify.php:34
|
||||||
msgid "You've attempted to verify the same email address a fourth time with an invalid hash, subsequently this request has been deleted in the system"
|
msgid "You've attempted to verify the same email address a fourth time with an invalid hash, subsequently this request has been deleted in the system"
|
||||||
|
@ -3417,7 +3438,7 @@ msgstr "Dichiarazione del Richiedente"
|
||||||
|
|
||||||
#: www/cap.php:26 www/ttp.php:35
|
#: www/cap.php:26 www/ttp.php:35
|
||||||
msgid "CAcert's Root Certificate fingerprints"
|
msgid "CAcert's Root Certificate fingerprints"
|
||||||
msgstr ""
|
msgstr "Impronte digitali del certificato radice di CAcert"
|
||||||
|
|
||||||
#: www/ttp.php:109
|
#: www/ttp.php:109
|
||||||
msgid "Applicant Information"
|
msgid "Applicant Information"
|
||||||
|
@ -3426,6 +3447,8 @@ msgstr "Informazioni del Richiedente"
|
||||||
#: www/ttp.php:84
|
#: www/ttp.php:84
|
||||||
msgid "Bar Association, CPA Number or Bank Name and Branch, JP/Notary Number"
|
msgid "Bar Association, CPA Number or Bank Name and Branch, JP/Notary Number"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Numero di iscrizione a Ordine degli Avvocati, Ordine dei Commercialisti, Ordine dei notai, Giudici di pace; Nome della banca e filiale "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/ttp.php:91
|
#: www/ttp.php:91
|
||||||
msgid "Email (if applicable)"
|
msgid "Email (if applicable)"
|
||||||
|
@ -3442,7 +3465,7 @@ msgstr "Nome completo (come indicato sul documento)"
|
||||||
#: www/ttp.php:56
|
#: www/ttp.php:56
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "If you have ANY doubts or concerns about the identity of the Applicant then please DO NOT COMPLETE AND SIGN this form. For more information about the Web of Trust, including detailed guides for Trusted Third Parties, please see: %s"
|
msgid "If you have ANY doubts or concerns about the identity of the Applicant then please DO NOT COMPLETE AND SIGN this form. For more information about the Web of Trust, including detailed guides for Trusted Third Parties, please see: %s"
|
||||||
msgstr ""
|
msgstr "Se sussiste è QUALUNQUE dubbio o preoccupazione circa l'identità del candidato allora NON COMPILARE E FIRMARE IL MODULO. Per ulteriori informazioni sulla rete di fiducia, incluse guide dettagliate per i Terzi Affidabili (TTP), vedere: %s"
|
||||||
|
|
||||||
#: www/ttp.php:82
|
#: www/ttp.php:82
|
||||||
msgid "Justice of the Peace, Public Notary, Lawyer, Accountant, or Bank Manager"
|
msgid "Justice of the Peace, Public Notary, Lawyer, Accountant, or Bank Manager"
|
||||||
|
@ -3462,19 +3485,19 @@ msgstr "Indirizzo dell'Ufficio"
|
||||||
|
|
||||||
#: www/ttp.php:58
|
#: www/ttp.php:58
|
||||||
msgid "PLEASE NOTE: You must get 2 fully completed TTP forms before sending anything to CAcert. Failure to do so will only cause your application to be delayed until all forms have been received by CAcert!"
|
msgid "PLEASE NOTE: You must get 2 fully completed TTP forms before sending anything to CAcert. Failure to do so will only cause your application to be delayed until all forms have been received by CAcert!"
|
||||||
msgstr "ATTENZIONE: devi avere 2 moduli TTP completamente compilati prima di mandare qualsiasi cosa a CAcert. Altrimenti la tua iscrizione rimarrà bloccata fino al momento in cui tutti i moduli saranno ricevuti da CAcert."
|
msgstr "PER IL CANDIDATO: devi avere 2 moduli TTP completamente compilati prima di mandare qualsiasi cosa a CAcert. Altrimenti la tua iscrizione rimarrà bloccata fino al momento in cui tutti i moduli saranno ricevuti da CAcert."
|
||||||
|
|
||||||
#: www/ttp.php:72
|
#: www/ttp.php:72
|
||||||
msgid "Person Verifying Applicant's Identity"
|
msgid "Person Verifying Applicant's Identity"
|
||||||
msgstr "Persona che verifica l'Identità Del Richiedente"
|
msgstr "Persona che verifica l'identità del candidato"
|
||||||
|
|
||||||
#: www/ttp.php:50
|
#: www/ttp.php:50
|
||||||
msgid "Please complete and sign this form, and sign the photocopies of the IDs, to acknowledge that"
|
msgid "Please complete and sign this form, and sign the photocopies of the IDs, to acknowledge that"
|
||||||
msgstr ""
|
msgstr "Compilare e firmare il presente modulo e firmare le fotocopie dei documenti identificativi, per attestare di"
|
||||||
|
|
||||||
#: www/ttp.php:80
|
#: www/ttp.php:80
|
||||||
msgid "Profession (Please circle one)"
|
msgid "Profession (Please circle one)"
|
||||||
msgstr "Professione (segnarne una)"
|
msgstr "Professione (evidenziarne una)"
|
||||||
|
|
||||||
#: www/ttp.php:138
|
#: www/ttp.php:138
|
||||||
msgid "Second ID Number (driver's license, passport etc)"
|
msgid "Second ID Number (driver's license, passport etc)"
|
||||||
|
@ -3487,10 +3510,14 @@ msgstr "Firma"
|
||||||
#: www/ttp.php:48
|
#: www/ttp.php:48
|
||||||
msgid "The Applicant asks you to certify to CAcert that you have met with the Applicant and verified the Full Name, Date of Birth, and ID Numbers of the Applicant against two separate original trusted photo-identity documents. Once the documents have been verified against the originals and signed, the applicant must attach the copies to the signed forms and return them to CAcert Inc."
|
msgid "The Applicant asks you to certify to CAcert that you have met with the Applicant and verified the Full Name, Date of Birth, and ID Numbers of the Applicant against two separate original trusted photo-identity documents. Once the documents have been verified against the originals and signed, the applicant must attach the copies to the signed forms and return them to CAcert Inc."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Il candidato chiede di certificare a CAcert di averlo incontrato personalmente e di evere verificato il nome completo, la data di nascita e i numeri di documento riportati rispetto a due diversi documenti di identificazione personale muniti di fotografia. "
|
||||||
|
" "
|
||||||
|
"Allorché le copie sono state verificate rispetto agli originali e sono state firmate, il candidato le deve accludere al presente modulo firmato e restituirle a CAcert inc. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/ttp.php:46
|
#: www/ttp.php:46
|
||||||
msgid "The CAcert Trusted Third Party (TTP) Programme is designed to assure Internet user identities through personal verification of government issued identity documents."
|
msgid "The CAcert Trusted Third Party (TTP) Programme is designed to assure Internet user identities through personal verification of government issued identity documents."
|
||||||
msgstr ""
|
msgstr "Il programma di fiducia CAcert dei Terzi Affidabili (TTP) è concepito per assicurare l'identità degli utenti di Internet tramite la verifica personale di documenti di identità rilasciati da pubbliche amministrazioni."
|
||||||
|
|
||||||
#: www/ttp.php:21
|
#: www/ttp.php:21
|
||||||
msgid "Trusted Third Party"
|
msgid "Trusted Third Party"
|
||||||
|
@ -3498,11 +3525,13 @@ msgstr "Terzi Riconosciuti Affidabili"
|
||||||
|
|
||||||
#: www/ttp.php:54
|
#: www/ttp.php:54
|
||||||
msgid "You have verified that the Full Name, Date of Birth, and ID Numbers on the identity documents matches those filled in the Applicant section below and in the photocopies provided."
|
msgid "You have verified that the Full Name, Date of Birth, and ID Numbers on the identity documents matches those filled in the Applicant section below and in the photocopies provided."
|
||||||
msgstr ""
|
msgstr "avere verificato che il nome completo, la data di nascita e i numeri di documento dei documenti presentati corrispondono a quelli riportati nell'apposita sezione qui sotto e a quelli visibili nelle fotocopie fornite;"
|
||||||
|
|
||||||
#: www/ttp.php:52
|
#: www/ttp.php:52
|
||||||
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
|
msgid "You have viewed two of the Applicant's photo identity documents and you are convinced of their authenticity, and are convinced that the photos indeed depict the Applicant (allowed documents are government-issued documents with photos such as driver's license, passport, or others that are normally accepted as legal identification in your country; expired documents are allowed)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"avere preso visione di due documenti di identità del candidato muniti di fotografia, di essere convinto/a della loro autenticità e di essere convinto/a che le foto ritraggono effettivamente il candidato (i documenti ammessi sono quelli rilasciati dalla Pubblica Amministrazione muniti di fotografia come carte di identità, patenti, passaporti o altri che sono normalmente accettati come documenti di identificazione personale in Italia; anche se scaduti). "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/ttp.php:86
|
#: www/ttp.php:86
|
||||||
msgid "as applicable"
|
msgid "as applicable"
|
||||||
|
@ -3550,7 +3579,7 @@ msgstr "Altre Notizie"
|
||||||
|
|
||||||
#: www/index/6.php:92
|
#: www/index/6.php:92
|
||||||
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
|
msgid "You do not have enough/any lost password questions set. You will not be able to continue to reset your password via this method."
|
||||||
msgstr ""
|
msgstr "Non hai predisposto abbastanza domande per il recupero della password. Non sei in grado di proseguire a resettare la password con questo metodo."
|
||||||
|
|
||||||
#: includes/general.php:618
|
#: includes/general.php:618
|
||||||
msgid "Failed to make a connection to the mail server"
|
msgid "Failed to make a connection to the mail server"
|
||||||
|
@ -3558,11 +3587,13 @@ msgstr "Collegamento al server della posta fallito"
|
||||||
|
|
||||||
#: includes/account.php:904 www/index.php:204 www/index.php:254
|
#: includes/account.php:904 www/index.php:204 www/index.php:254
|
||||||
msgid "For your own security you must enter 5 lost password questions and answers."
|
msgid "For your own security you must enter 5 lost password questions and answers."
|
||||||
msgstr ""
|
msgstr "Per tua sicurezza devi predisporre 5 domande e risposte per l'accesso in caso di password smarrita."
|
||||||
|
|
||||||
#: www/wot.php:169
|
#: www/wot.php:169
|
||||||
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
|
msgid "Race condition discovered, user altered details during assurance procedure. PLEASE MAKE SURE THE NEW DETAILS BELOW MATCH THE ID DOCUMENTS."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Rilevata una condizione di concorrenza, i dati dell'utente sono variati durante la procedura di certificazione. ACCERTATI CHE I NUOVI DETTAGLI RIPORTATI SOTTO CORRISPONDANO A QUELLI DEI DOCUMENTI DI IDENTITA'. "
|
||||||
|
""
|
||||||
|
|
||||||
#: www/wot.php:53
|
#: www/wot.php:53
|
||||||
msgid "Reminder Notice"
|
msgid "Reminder Notice"
|
||||||
|
@ -3572,3 +3603,5 @@ msgstr "Promemoria"
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
|
msgid "This is a short reminder that you filled out forms to become trusted with CAcert.org, and %s has attempted to issue you points. Please create your account at %s as soon as possible and then notify %s so that the points can be issued."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Questo è un breve promemoria per ricordarti che hai sottoscritto una richiesta di affiliazione a CAcert e %s ha cercato di assegnati dei punti. Crea il tuo account a %s più presto possibile e poi avvisa %s in modo che i punti possano essere assegnati. "
|
||||||
|
""
|
||||||
|
|
3570
locale/ka.po
Normal file
3570
locale/ka.po
Normal file
File diff suppressed because it is too large
Load diff
64
locale/sv.po
64
locale/sv.po
|
@ -7,7 +7,7 @@ msgstr ""
|
||||||
"Project-Id-Version: de\n"
|
"Project-Id-Version: de\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
"POT-Creation-Date: 2005-01-09 08:25:26+0000\n"
|
||||||
"PO-Revision-Date: 2005-11-19 02:20:29+0000\n"
|
"PO-Revision-Date: 2005-11-24 01:31:09+0000\n"
|
||||||
"Last-Translator: Someone <someone@someisp.com>\n"
|
"Last-Translator: Someone <someone@someisp.com>\n"
|
||||||
"Language-Team: <de@li.org>\n"
|
"Language-Team: <de@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
|
@ -69,7 +69,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/account/38.php:21 www/index/13.php:21
|
#: www/account/38.php:21 www/index/13.php:21
|
||||||
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
|
msgid "ANY amount will be appreciated - the more funding CAcert receives, the sooner it can achieve the goals of the community."
|
||||||
msgstr "ALLA gåvor emottages tacksamt - desto mer medel CAcert får in, desto snabbare kan vi nå vårt mål."
|
msgstr ""
|
||||||
|
|
||||||
#: includes/account_stuff.php:182
|
#: includes/account_stuff.php:182
|
||||||
msgid "About"
|
msgid "About"
|
||||||
|
@ -110,7 +110,7 @@ msgstr "Administrator"
|
||||||
#: www/account/25.php:22 www/account/25.php:39 www/account/35.php:21
|
#: www/account/25.php:22 www/account/25.php:39 www/account/35.php:21
|
||||||
#: www/account/35.php:35
|
#: www/account/35.php:35
|
||||||
msgid "Admins"
|
msgid "Admins"
|
||||||
msgstr "Administratörer"
|
msgstr ""
|
||||||
|
|
||||||
#: www/wot/3.php:28
|
#: www/wot/3.php:28
|
||||||
msgid "After the meeting, visit the CAcert Web site's make an Assurance page and:"
|
msgid "After the meeting, visit the CAcert Web site's make an Assurance page and:"
|
||||||
|
@ -122,7 +122,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/account/39.php:32 www/index/10.php:32
|
#: www/account/39.php:32 www/index/10.php:32
|
||||||
msgid "Aggregated tracking information"
|
msgid "Aggregated tracking information"
|
||||||
msgstr "Aggregerad spårningsinformation"
|
msgstr ""
|
||||||
|
|
||||||
#: www/account/36.php:21 www/index/1.php:110
|
#: www/account/36.php:21 www/index/1.php:110
|
||||||
msgid "Alert me if"
|
msgid "Alert me if"
|
||||||
|
@ -158,7 +158,7 @@ msgstr "Ytterligare epost"
|
||||||
|
|
||||||
#: includes/account.php:404
|
#: includes/account.php:404
|
||||||
msgid "Any valid certificates will be revoked as well"
|
msgid "Any valid certificates will be revoked as well"
|
||||||
msgstr "Alla giltiga certifikat kommer också att återkallas"
|
msgstr ""
|
||||||
|
|
||||||
#: www/help/7.php:5
|
#: www/help/7.php:5
|
||||||
msgid "Apart from the boot stuff, all data resides on an encrypted partition on the root store server and only manual intervention in the boot up process by entering the password will start it again."
|
msgid "Apart from the boot stuff, all data resides on an encrypted partition on the root store server and only manual intervention in the boot up process by entering the password will start it again."
|
||||||
|
@ -241,7 +241,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/account/0.php:24
|
#: www/account/0.php:24
|
||||||
msgid "Before you can start issuing certificates for your website, irc server, smtp server, pop3, imap etc you will need to add domains to your account under the domain menu. You can also remove domains from here as well. Once you've added a domain you are free then to go into the Server Certificate section and start pasting CSR into the website and have the website return you a valid certificate for up to 2 years if you have 50 trust points, or 6 months for no trust points."
|
msgid "Before you can start issuing certificates for your website, irc server, smtp server, pop3, imap etc you will need to add domains to your account under the domain menu. You can also remove domains from here as well. Once you've added a domain you are free then to go into the Server Certificate section and start pasting CSR into the website and have the website return you a valid certificate for up to 2 years if you have 50 trust points, or 6 months for no trust points."
|
||||||
msgstr "Innan du kan börja utfärda certifikat till din web-server, irc-server, smtp-server, pop3, imap osv, så måste du lägga till domäner till ditt konto under domänmenyn. Där kan du också ta bort domäner. När du har lagt till en domän så går du till Servercertifikat-sektionen och klistrar in CSR:en och då kommer websidan att ge dig ett certifikat som är giltigt i upp till två år om du har 50 trust-poäng eller sex månader om du inte har några trust-poäng."
|
msgstr "Innan du kan börja utfärda certifikat till din webb-server, irc-server, smtp-server, pop3, imap osv, måste du lägga till domäner till ditt konto under domänmenyn. Där kan du även ta bort domäner. När du har lagt till en domän så går du till Servercertifikat-avdelningen och klistrar in CSR:en. Webbsidan ger dig ett certifikat som är giltigt i sex månader om du inte har några trust-poäng, och i upp till två år om du har 50 trust-poäng."
|
||||||
|
|
||||||
#: includes/account.php:47 includes/account.php:387
|
#: includes/account.php:47 includes/account.php:387
|
||||||
msgid "Below is the link you need to open to verify your email address. Once your address is verified you will be able to start issuing certificates till your hearts' content!"
|
msgid "Below is the link you need to open to verify your email address. Once your address is verified you will be able to start issuing certificates till your hearts' content!"
|
||||||
|
@ -427,11 +427,11 @@ msgstr "Klicka här"
|
||||||
|
|
||||||
#: www/account/40.php:21 www/index/11.php:21
|
#: www/account/40.php:21 www/index/11.php:21
|
||||||
msgid "Click here to go to the Support List"
|
msgid "Click here to go to the Support List"
|
||||||
msgstr ""
|
msgstr "Klicka här för att komma till supportlistan"
|
||||||
|
|
||||||
#: www/account/40.php:38 www/index/11.php:38
|
#: www/account/40.php:38 www/index/11.php:38
|
||||||
msgid "Click here to view all lists available"
|
msgid "Click here to view all lists available"
|
||||||
msgstr ""
|
msgstr "Klicka här för att se alla listor"
|
||||||
|
|
||||||
#: includes/account_stuff.php:153 www/account/18.php:18 www/account/5.php:18
|
#: includes/account_stuff.php:153 www/account/18.php:18 www/account/5.php:18
|
||||||
msgid "Client Certificates"
|
msgid "Client Certificates"
|
||||||
|
@ -505,7 +505,7 @@ msgstr "Kontaktdetaljer"
|
||||||
|
|
||||||
#: www/account/24.php:25 www/account/27.php:28
|
#: www/account/24.php:25 www/account/27.php:28
|
||||||
msgid "Contact Email"
|
msgid "Contact Email"
|
||||||
msgstr "Kontakt-email"
|
msgstr "Epostadress"
|
||||||
|
|
||||||
#: includes/account_stuff.php:210 includes/general_stuff.php:110
|
#: includes/account_stuff.php:210 includes/general_stuff.php:110
|
||||||
#: www/account/40.php:15 www/index/11.php:15
|
#: www/account/40.php:15 www/index/11.php:15
|
||||||
|
@ -675,7 +675,7 @@ msgstr "Redigera organisation"
|
||||||
#: www/account/42.php:22 www/account/43.php:34 www/account/43.php:74
|
#: www/account/42.php:22 www/account/43.php:34 www/account/43.php:74
|
||||||
#: www/account/44.php:22 www/account/50.php:22 www/wot/5.php:22
|
#: www/account/44.php:22 www/account/50.php:22 www/wot/5.php:22
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Email"
|
msgstr "Epost"
|
||||||
|
|
||||||
#: includes/account_stuff.php:149 www/account/2.php:18
|
#: includes/account_stuff.php:149 www/account/2.php:18
|
||||||
msgid "Email Accounts"
|
msgid "Email Accounts"
|
||||||
|
@ -683,18 +683,18 @@ msgstr "Epostkonton"
|
||||||
|
|
||||||
#: www/account/0.php:21
|
#: www/account/0.php:21
|
||||||
msgid "Email Accounts and Client Certificates"
|
msgid "Email Accounts and Client Certificates"
|
||||||
msgstr "Emailkonton och klientcertifikat"
|
msgstr "Epostkonton och klientcertifikat"
|
||||||
|
|
||||||
#: www/cap.php:72 www/account/1.php:22 www/account/11.php:34
|
#: www/cap.php:72 www/account/1.php:22 www/account/11.php:34
|
||||||
#: www/account/5.php:23 www/index/1.php:75 www/index/4.php:26
|
#: www/account/5.php:23 www/index/1.php:75 www/index/4.php:26
|
||||||
#: www/index/5.php:21 www/gpg/2.php:21 www/disputes/1.php:23 www/help/4.php:29
|
#: www/index/5.php:21 www/gpg/2.php:21 www/disputes/1.php:23 www/help/4.php:29
|
||||||
|
|
||||||
msgid "Email Address"
|
msgid "Email Address"
|
||||||
msgstr "Emailadress"
|
msgstr "Epostadress"
|
||||||
|
|
||||||
#: www/index.php:244
|
#: www/index.php:244
|
||||||
msgid "Email Address was blank"
|
msgid "Email Address was blank"
|
||||||
msgstr "Du angav ingen emailadress"
|
msgstr "Du angav ingen epostadress"
|
||||||
|
|
||||||
#: www/wot/1.php:122
|
#: www/wot/1.php:122
|
||||||
msgid "Email Assurer"
|
msgid "Email Assurer"
|
||||||
|
@ -843,7 +843,7 @@ msgstr "I många år har vi påförts, och betalat, enorma be
|
||||||
#: www/account/12.php:78 www/account/18.php:84 www/account/22.php:80
|
#: www/account/12.php:78 www/account/18.php:84 www/account/22.php:80
|
||||||
#: www/account/5.php:84
|
#: www/account/5.php:84
|
||||||
msgid "From here you can delete pending requests, or revoke valid certificates."
|
msgid "From here you can delete pending requests, or revoke valid certificates."
|
||||||
msgstr "Härifrån kan du ta bort väntande förfrågningar eller annullera giltiga certifikat."
|
msgstr "Här kan du ta bort väntande förfrågningar eller annullera giltiga certifikat."
|
||||||
|
|
||||||
#: www/stats.php:55
|
#: www/stats.php:55
|
||||||
msgid "Users with 50-99 Points"
|
msgid "Users with 50-99 Points"
|
||||||
|
@ -974,7 +974,7 @@ msgstr ""
|
||||||
|
|
||||||
#: includes/account.php:884
|
#: includes/account.php:884
|
||||||
msgid "I couldn't match any emails against your organisational account."
|
msgid "I couldn't match any emails against your organisational account."
|
||||||
msgstr "Jag kunde inte matcha några email-konton mot ditt företagskonto."
|
msgstr "Jag kunde inte matcha några epostkonton mot ditt företagskonto."
|
||||||
|
|
||||||
#: includes/account.php:120 includes/account.php:152 includes/account.php:254
|
#: includes/account.php:120 includes/account.php:152 includes/account.php:254
|
||||||
#: includes/account.php:904 includes/account.php:991
|
#: includes/account.php:904 includes/account.php:991
|
||||||
|
@ -1007,7 +1007,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/wot.php:42
|
#: www/wot.php:42
|
||||||
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
|
msgid "I'm sorry, there was no email matching what you entered in the system. Please double check your information."
|
||||||
msgstr "Beklagar, men det fanns ingen emailadress som matchar det du angav. Vänligen dubbelkolla informationen."
|
msgstr "Beklagar, men det fanns ingen epostadress som matchar det du angav. Vänligen kontrollera de lämnade uppgifterna."
|
||||||
|
|
||||||
#: www/account/38.php:17 www/index/13.php:17
|
#: www/account/38.php:17 www/index/13.php:17
|
||||||
msgid "If I'd like to donate to CAcert Inc., how can I do it?"
|
msgid "If I'd like to donate to CAcert Inc., how can I do it?"
|
||||||
|
@ -1031,7 +1031,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/account/39.php:47 www/index/10.php:47
|
#: www/account/39.php:47 www/index/10.php:47
|
||||||
msgid "If we change our Privacy Policy, we will post those changes on www.CAcert.org. If we decide to use personally identifiable information in a manner different from that stated at the time it was collected, we will notify users via email. Users will be able to opt out of any new use of their personal information."
|
msgid "If we change our Privacy Policy, we will post those changes on www.CAcert.org. If we decide to use personally identifiable information in a manner different from that stated at the time it was collected, we will notify users via email. Users will be able to opt out of any new use of their personal information."
|
||||||
msgstr "Om vi ändrar vår sekretesspolicy så kommer ändringarna att finnas på www.CAcert.org. Om vi beslutar oss för att använda information som kan användas för att identifiera enskilda personer på att annat sätt än vad som angas vid insamlingstillfället, så kommer vi att meddela användarna via email. Användarna kommer då att kunna vägra att deras personliga data används på något annat sätt."
|
msgstr "Om vi ändrar vår sekretesspolicy så kommer ändringarna att finnas på www.CAcert.org. Om vi beslutar oss för att använda personlig information, på att annat sätt än vad som angavs vid insamlingstillfället, så kommer vi att meddela användare (uppgiftslämnare) via epost. Användare kommer då att kunna förbjuda varje ny användning av egen personlig information."
|
||||||
|
|
||||||
#: www/wot/7.php:140
|
#: www/wot/7.php:140
|
||||||
msgid "If you are happy with this location, click 'Make my location here' to update your location details."
|
msgid "If you are happy with this location, click 'Make my location here' to update your location details."
|
||||||
|
@ -1245,7 +1245,7 @@ msgstr "E-mailförfrågan"
|
||||||
|
|
||||||
#: www/account/2.php:49
|
#: www/account/2.php:49
|
||||||
msgid "Make Default"
|
msgid "Make Default"
|
||||||
msgstr "Gör standard"
|
msgstr "Gör standard"
|
||||||
|
|
||||||
#: www/wot/7.php:138
|
#: www/wot/7.php:138
|
||||||
msgid "Make my location here"
|
msgid "Make my location here"
|
||||||
|
@ -1500,12 +1500,12 @@ msgstr ""
|
||||||
#: includes/account.php:600 includes/account.php:711 includes/account.php:1109
|
#: includes/account.php:600 includes/account.php:711 includes/account.php:1109
|
||||||
#: includes/account.php:1325
|
#: includes/account.php:1325
|
||||||
msgid "Now deleting the following pending requests:"
|
msgid "Now deleting the following pending requests:"
|
||||||
msgstr "Följande väntande förfrågningar tas bort:"
|
msgstr "Följande väntande förfrågningar tas bort:"
|
||||||
|
|
||||||
#: includes/account.php:506 includes/account.php:635 includes/account.php:1032
|
#: includes/account.php:506 includes/account.php:635 includes/account.php:1032
|
||||||
#: includes/account.php:1241
|
#: includes/account.php:1241
|
||||||
msgid "Now renewing the following certificates:"
|
msgid "Now renewing the following certificates:"
|
||||||
msgstr "Förnyar följande certifikat:"
|
msgstr "Förnyar följande certifikat:"
|
||||||
|
|
||||||
#: includes/account.php:572 includes/account.php:685 includes/account.php:1082
|
#: includes/account.php:572 includes/account.php:685 includes/account.php:1082
|
||||||
#: includes/account.php:1296
|
#: includes/account.php:1296
|
||||||
|
@ -1591,7 +1591,7 @@ msgstr "Företagsnamn"
|
||||||
|
|
||||||
#: includes/account.php:1379 includes/account.php:1406
|
#: includes/account.php:1379 includes/account.php:1406
|
||||||
msgid "Organisation Name and Contact Email are required fields."
|
msgid "Organisation Name and Contact Email are required fields."
|
||||||
msgstr "Företagsnamn och kontaktemail är obligatoriska fält."
|
msgstr "Företagsnamn och epostadress är obligatoriska fält."
|
||||||
|
|
||||||
#: www/account/25.php:17 www/account/35.php:17
|
#: www/account/25.php:17 www/account/35.php:17
|
||||||
msgid "Organisations"
|
msgid "Organisations"
|
||||||
|
@ -1670,7 +1670,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/account/2.php:56 www/account/9.php:56
|
#: www/account/2.php:56 www/account/9.php:56
|
||||||
msgid "Please Note: You can not set an unverified account as a default account, and you can not remove a default account. To remove the default account you must set another verified account as the default."
|
msgid "Please Note: You can not set an unverified account as a default account, and you can not remove a default account. To remove the default account you must set another verified account as the default."
|
||||||
msgstr "OBS: Du kan inte ha ett overifierat konto som ditt standard-konto, och du kan inte ta bort standardkontot. För att kunna ta bort standardkontot måste du markera ett annat verifierat konto som standard."
|
msgstr "OBS: Du kan inte ha ett overifierat konto som ditt standard-konto, och du kan inte ta bort standardkontot. För att kunna ta bort standardkontot måste du markera ett annat verifierat konto som standard."
|
||||||
|
|
||||||
#: www/account/7.php:32
|
#: www/account/7.php:32
|
||||||
msgid "Please Note: You only need to enter the main part of your domain, eg. mydomain.com rather then www.mydomain.com. Once you have verified your domain you are able to enter any sub-domain, such as www.mydomain.com or www.this.is.mydomain.com as the system checks from right to left, rather then specific hostnames when you upload a CSR to the system."
|
msgid "Please Note: You only need to enter the main part of your domain, eg. mydomain.com rather then www.mydomain.com. Once you have verified your domain you are able to enter any sub-domain, such as www.mydomain.com or www.this.is.mydomain.com as the system checks from right to left, rather then specific hostnames when you upload a CSR to the system."
|
||||||
|
@ -1692,7 +1692,7 @@ msgstr "Välj en authority-emailadress."
|
||||||
|
|
||||||
#: www/account/11.php:16 www/account/21.php:19
|
#: www/account/11.php:16 www/account/21.php:19
|
||||||
msgid "Please make sure the following details are correct before proceeding any further."
|
msgid "Please make sure the following details are correct before proceeding any further."
|
||||||
msgstr "Kolla att följande detaljer är korrekta innan du går vidare."
|
msgstr "Kolla att följande detaljer är korrekta innan du går vidare."
|
||||||
|
|
||||||
#: www/index/0.php:120
|
#: www/index/0.php:120
|
||||||
msgid "Please note a general limitation is that, unlike long-time players like Verisign, CAcert's root certificate is not included by default in mainstream browsers, email clients, etc. This means people to whom you send encrypted email, or users who visit your SSL-enabled web server, will first have to import CAcert's root certificate, or they will have to agree to pop-up security warnings (which may look a little scary to non-techy users)."
|
msgid "Please note a general limitation is that, unlike long-time players like Verisign, CAcert's root certificate is not included by default in mainstream browsers, email clients, etc. This means people to whom you send encrypted email, or users who visit your SSL-enabled web server, will first have to import CAcert's root certificate, or they will have to agree to pop-up security warnings (which may look a little scary to non-techy users)."
|
||||||
|
@ -1765,16 +1765,16 @@ msgstr "Tog bort en väntande förfrågan f
|
||||||
#: www/account/12.php:71 www/account/18.php:77 www/account/22.php:73
|
#: www/account/12.php:71 www/account/18.php:77 www/account/22.php:73
|
||||||
#: www/account/5.php:77
|
#: www/account/5.php:77
|
||||||
msgid "Renew"
|
msgid "Renew"
|
||||||
msgstr "Förnya"
|
msgstr "Förnya"
|
||||||
|
|
||||||
#: www/account/12.php:21 www/account/18.php:21 www/account/22.php:21
|
#: www/account/12.php:21 www/account/18.php:21 www/account/22.php:21
|
||||||
#: www/account/5.php:21
|
#: www/account/5.php:21
|
||||||
msgid "Renew/Revoke/Delete"
|
msgid "Renew/Revoke/Delete"
|
||||||
msgstr "Förnya/Annulera/Ta bort"
|
msgstr "Förnya/Annulera/Ta bort"
|
||||||
|
|
||||||
#: includes/account.php:548 includes/account.php:1270
|
#: includes/account.php:548 includes/account.php:1270
|
||||||
msgid "Renewing"
|
msgid "Renewing"
|
||||||
msgstr "Förnyar"
|
msgstr "Förnyar"
|
||||||
|
|
||||||
#: www/index/6.php:47
|
#: www/index/6.php:47
|
||||||
msgid "Repeat"
|
msgid "Repeat"
|
||||||
|
@ -2079,7 +2079,7 @@ msgstr "Domänen '%s' finns redan i systemet och är
|
||||||
|
|
||||||
#: www/account/0.php:22
|
#: www/account/0.php:22
|
||||||
msgid "The email account section is for adding/updating/removing email accounts which can be used to issue client certificates against. The client certificate section steps you through generating a certificate signing request for one or more emails you've registered in the email account section."
|
msgid "The email account section is for adding/updating/removing email accounts which can be used to issue client certificates against. The client certificate section steps you through generating a certificate signing request for one or more emails you've registered in the email account section."
|
||||||
msgstr "I emailkonto-sektionen kan du lägga till/uppdatera/ta bort emailkonton som används för att utfärda klientcertifikat till. I klientcertifikatssektionen"
|
msgstr "I avdelningen för epostkonton kan du lägga till/uppdatera/ta bort epostkonton för vilka du önskar klientcertifikat. I avdelningen för klientcertifikat finns en 'guide' som steg för steg visar hur du skapar certifikat för de (ett eller flera) epostkonton du registrerat i avdelningen för epostkonton."
|
||||||
|
|
||||||
#: includes/account.php:54
|
#: includes/account.php:54
|
||||||
#, php-format
|
#, php-format
|
||||||
|
@ -2089,7 +2089,7 @@ msgstr "Domänen '%s' har lagts till i systemet, men fÃ&par
|
||||||
#: includes/account.php:36
|
#: includes/account.php:36
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "The email address '%s' is already in the system. Can't continue."
|
msgid "The email address '%s' is already in the system. Can't continue."
|
||||||
msgstr "Emailadressen '%s' finns redan i systemet. Kan inte fortsätta."
|
msgstr "Epostadressen '%s' finns redan i systemet. Kan inte fortsätta."
|
||||||
|
|
||||||
#: includes/account.php:86
|
#: includes/account.php:86
|
||||||
msgid "The following accounts have been removed:"
|
msgid "The following accounts have been removed:"
|
||||||
|
@ -2681,7 +2681,7 @@ msgstr "Ditt namn"
|
||||||
|
|
||||||
#: includes/account.php:846 www/index.php:106
|
#: includes/account.php:846 www/index.php:106
|
||||||
msgid "Your Pass Phrase has been updated and your primary email account has been notified of the change."
|
msgid "Your Pass Phrase has been updated and your primary email account has been notified of the change."
|
||||||
msgstr "Din hemliga fras har blivit uppdaterad och en bekräftelse har skickats till din primära emailadress."
|
msgstr "Ditt lösenord har uppdaterats och en bekräftelse har sänts till din primära epostadress."
|
||||||
|
|
||||||
#: www/verify.php:56
|
#: www/verify.php:56
|
||||||
msgid "Your account and/or email address has been verified. You can now start issuing certificates for this address."
|
msgid "Your account and/or email address has been verified. You can now start issuing certificates for this address."
|
||||||
|
@ -2709,7 +2709,7 @@ msgstr ""
|
||||||
#: includes/account.php:77
|
#: includes/account.php:77
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Your default email address has been updated to '%s'."
|
msgid "Your default email address has been updated to '%s'."
|
||||||
msgstr "Din standard-emailadress har uppdaterats till '%s'."
|
msgstr "Din standard-epostadress har uppdaterats till '%s'."
|
||||||
|
|
||||||
#: includes/account.php:814
|
#: includes/account.php:814
|
||||||
msgid "Your details have been updated with the database."
|
msgid "Your details have been updated with the database."
|
||||||
|
@ -2750,7 +2750,7 @@ msgstr ""
|
||||||
#: www/account/13.php:47 www/account/13.php:95 www/index/1.php:42
|
#: www/account/13.php:47 www/account/13.php:95 www/index/1.php:42
|
||||||
#: www/index/5.php:26
|
#: www/index/5.php:26
|
||||||
msgid "dd/mm/yyyy"
|
msgid "dd/mm/yyyy"
|
||||||
msgstr "DD/MM/Ã…Ã…Ã…Ã…"
|
msgstr "dd/mm/åååå"
|
||||||
|
|
||||||
#: www/help/6.php:3 www/help/6.php:5 www/help/6.php:9
|
#: www/help/6.php:3 www/help/6.php:5 www/help/6.php:9
|
||||||
msgid "here"
|
msgid "here"
|
||||||
|
@ -2890,7 +2890,7 @@ msgstr ""
|
||||||
|
|
||||||
#: www/index/16.php:17 www/index/3.php:17
|
#: www/index/16.php:17 www/index/3.php:17
|
||||||
msgid "Click here if you want to import the root certificate into Microsoft Internet Explorer"
|
msgid "Click here if you want to import the root certificate into Microsoft Internet Explorer"
|
||||||
msgstr ""
|
msgstr "Klicka här om du vill importera root-certifikatet till Microsoft Internet Explorer"
|
||||||
|
|
||||||
#: www/account/52.php:48
|
#: www/account/52.php:48
|
||||||
msgid "Comment"
|
msgid "Comment"
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) <= 0)
|
if(mysql_num_rows($res) <= 0)
|
||||||
{
|
{
|
||||||
showheader(_("My CAcert.org Account!"));
|
|
||||||
echo _("No such certificate attached to your account.");
|
echo _("No such certificate attached to your account.");
|
||||||
showfooter();
|
showfooter();
|
||||||
exit;
|
exit;
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) <= 0)
|
if(mysql_num_rows($res) <= 0)
|
||||||
{
|
{
|
||||||
showheader(_("My CAcert.org Account!"));
|
|
||||||
echo _("No such certificate attached to your account.");
|
echo _("No such certificate attached to your account.");
|
||||||
showfooter();
|
showfooter();
|
||||||
exit;
|
exit;
|
||||||
|
|
|
@ -13,12 +13,24 @@
|
||||||
PARTICULAR PURPOSE. See the License for more details.
|
PARTICULAR PURPOSE. See the License for more details.
|
||||||
*/ ?>
|
*/ ?>
|
||||||
<?
|
<?
|
||||||
if(intval($_GET['userid']) <= 0)
|
if($_REQUEST['assurance'] > 0)
|
||||||
{
|
{
|
||||||
$email = mysql_escape_string(stripslashes($_POST['email']));
|
$assurance = mysql_escape_string($_REQUEST['assurance']);
|
||||||
|
mysql_query("delete from `notary` where `id`='$assurance'");
|
||||||
|
}
|
||||||
|
|
||||||
|
if(intval($_REQUEST['userid']) <= 0)
|
||||||
|
{
|
||||||
|
$emailsearch = $email = mysql_escape_string(stripslashes($_REQUEST['email']));
|
||||||
|
if(!strstr($email, "%"))
|
||||||
|
$emailsearch = "%$email%";
|
||||||
|
if(intval($email) > 0)
|
||||||
|
$emailsearch = "";
|
||||||
|
|
||||||
$query = "select `users`.`id` as `id`, `email`.`email` as `email` from `users`,`email`
|
$query = "select `users`.`id` as `id`, `email`.`email` as `email` from `users`,`email`
|
||||||
where `users`.`id`=`email`.`memid` and `email`.`email` like '%$email%' and
|
where `users`.`id`=`email`.`memid` and
|
||||||
`email`.`hash`='' and `email`.`deleted`=0 and `users`.`deleted`=0
|
(`email`.`email` like '$emailsearch' or `email`.`id`='$email' or `users`.`id`='$email') and
|
||||||
|
`email`.`hash`='' and `email`.`deleted`=0 and `users`.`deleted`=0
|
||||||
group by `users`.`id` limit 100";
|
group by `users`.`id` limit 100";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) > 1) { ?>
|
if(mysql_num_rows($res) > 1) { ?>
|
||||||
|
@ -26,11 +38,15 @@
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("User ID")?></td>
|
||||||
|
<td class="DataTD"><?=_("Email")?></td>
|
||||||
|
</tr>
|
||||||
<?
|
<?
|
||||||
while($row = mysql_fetch_assoc($res))
|
while($row = mysql_fetch_assoc($res))
|
||||||
{ ?>
|
{ ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Email")?>:</td>
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=$row['id']?></a></td>
|
||||||
<td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=$row['email']?></a></td>
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=$row['email']?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } if(mysql_num_rows($res) >= 100) { ?>
|
<? } if(mysql_num_rows($res) >= 100) { ?>
|
||||||
|
@ -45,15 +61,15 @@
|
||||||
</table><br><br>
|
</table><br><br>
|
||||||
<? } elseif(mysql_num_rows($res) == 1) {
|
<? } elseif(mysql_num_rows($res) == 1) {
|
||||||
$row = mysql_fetch_assoc($res);
|
$row = mysql_fetch_assoc($res);
|
||||||
$_GET['userid'] = $row['id'];
|
$_REQUEST['userid'] = $row['id'];
|
||||||
} else {
|
} else {
|
||||||
printf(_("No users found matching %s"), $email);
|
printf(_("No users found matching %s"), $email);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if(intval($_GET['userid']) > 0)
|
if(intval($_REQUEST['userid']) > 0)
|
||||||
{
|
{
|
||||||
$id = intval($_GET['userid']);
|
$id = intval($_REQUEST['userid']);
|
||||||
$query = "select * from `users` where `id`='$id' and `users`.`deleted`=0";
|
$query = "select * from `users` where `id`='$id' and `users`.`deleted`=0";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) <= 0)
|
if(mysql_num_rows($res) <= 0)
|
||||||
|
@ -105,6 +121,10 @@
|
||||||
<td class="DataTD"><?=_("Location Admin")?>:</td>
|
<td class="DataTD"><?=_("Location Admin")?>:</td>
|
||||||
<td class="DataTD"><a href="account.php?id=43&locadmin=<?=$row['id']?>"><?=$row['locadmin']?></a></td>
|
<td class="DataTD"><a href="account.php?id=43&locadmin=<?=$row['id']?>"><?=$row['locadmin']?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Admin")?>:</td>
|
||||||
|
<td class="DataTD"><a href="account.php?id=43&admin=<?=$row['id']?>"><?=$row['admin']?></a></td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Tverify Account")?>:</td>
|
<td class="DataTD"><?=_("Tverify Account")?>:</td>
|
||||||
<td class="DataTD"><a href="account.php?id=43&tverify=<?=$row['id']?>"><?=$row['tverify']?></a></td>
|
<td class="DataTD"><a href="account.php?id=43&tverify=<?=$row['id']?>"><?=$row['tverify']?></a></td>
|
||||||
|
@ -202,7 +222,7 @@
|
||||||
<? } ?>
|
<? } ?>
|
||||||
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="title"><?=_("Your Assurance Points")?></td>
|
<td colspan="6" class="title"><?=_("Your Assurance Points")?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><b><?=_("Date")?></b></td>
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
||||||
|
@ -210,6 +230,7 @@
|
||||||
<td class="DataTD"><b><?=_("Points")?></b></td>
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
||||||
<td class="DataTD"><b><?=_("Location")?></b></td>
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
||||||
<td class="DataTD"><b><?=_("Method")?></b></td>
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
||||||
|
<td class="DataTD"><b><?=_("Revoke")?></b></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?
|
<?
|
||||||
$query = "select * from `notary` where `to`='".$row['id']."'";
|
$query = "select * from `notary` where `to`='".$row['id']."'";
|
||||||
|
@ -226,18 +247,19 @@
|
||||||
<td class="DataTD"><?=$drow['points']?></td>
|
<td class="DataTD"><?=$drow['points']?></td>
|
||||||
<td class="DataTD"><?=$drow['location']?></td>
|
<td class="DataTD"><?=$drow['location']?></td>
|
||||||
<td class="DataTD"><?=$drow['method']?></td>
|
<td class="DataTD"><?=$drow['method']?></td>
|
||||||
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$drow['to']?>&assurance=<?=$drow['id']?>" onclick="return confirm('<?=_("Are you sure you want to revoke this assurance?")?>');"><?=_("Revoke")?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
||||||
<td class="DataTD"><?=$points?></td>
|
<td class="DataTD"><?=$points?></td>
|
||||||
<td class="DataTD" colspan="2"> </td>
|
<td class="DataTD" colspan="3"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br>
|
<br>
|
||||||
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="title"><?=_("Assurance Points You Issued")?></td>
|
<td colspan="6" class="title"><?=_("Assurance Points You Issued")?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><b><?=_("Date")?></b></td>
|
<td class="DataTD"><b><?=_("Date")?></b></td>
|
||||||
|
@ -245,6 +267,7 @@
|
||||||
<td class="DataTD"><b><?=_("Points")?></b></td>
|
<td class="DataTD"><b><?=_("Points")?></b></td>
|
||||||
<td class="DataTD"><b><?=_("Location")?></b></td>
|
<td class="DataTD"><b><?=_("Location")?></b></td>
|
||||||
<td class="DataTD"><b><?=_("Method")?></b></td>
|
<td class="DataTD"><b><?=_("Method")?></b></td>
|
||||||
|
<td class="DataTD"><b><?=_("Revoke")?></b></td>
|
||||||
</tr>
|
</tr>
|
||||||
<?
|
<?
|
||||||
$query = "select * from `notary` where `from`='".$row['id']."' and `to`!='".$row['id']."'";
|
$query = "select * from `notary` where `from`='".$row['id']."' and `to`!='".$row['id']."'";
|
||||||
|
@ -261,12 +284,13 @@
|
||||||
<td class="DataTD"><?=$drow['points']?></td>
|
<td class="DataTD"><?=$drow['points']?></td>
|
||||||
<td class="DataTD"><?=$drow['location']?></td>
|
<td class="DataTD"><?=$drow['location']?></td>
|
||||||
<td class="DataTD"><?=$drow['method']?></td>
|
<td class="DataTD"><?=$drow['method']?></td>
|
||||||
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$drow['from']?>&assurance=<?=$drow['id']?>" onclick="return confirm('<?=_("Are you sure you want to revoke this assurance?")?>');"><?=_("Revoke")?></a></td>
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
<td class="DataTD" colspan="2"><b><?=_("Total Points")?>:</b></td>
|
||||||
<td class="DataTD"><?=$points?></td>
|
<td class="DataTD"><?=$points?></td>
|
||||||
<td class="DataTD" colspan="2"> </td>
|
<td class="DataTD" colspan="3"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br><br>
|
<br><br>
|
||||||
|
|
|
@ -15,14 +15,19 @@
|
||||||
<?
|
<?
|
||||||
if(intval($_GET['userid']) <= 0)
|
if(intval($_GET['userid']) <= 0)
|
||||||
{
|
{
|
||||||
$domain = mysql_escape_string(stripslashes($_POST['domain']));
|
$domainsearch = $domain = mysql_escape_string(stripslashes($_POST['domain']));
|
||||||
|
if(!strstr($domain, "%"))
|
||||||
|
$domainsearch = "%$domain%";
|
||||||
|
if(intval($domain) > 0)
|
||||||
|
$domainsearch = "";
|
||||||
$query = "select `users`.`id` as `id`, `domains`.`domain` as `domain` from `users`,`domains`
|
$query = "select `users`.`id` as `id`, `domains`.`domain` as `domain` from `users`,`domains`
|
||||||
where `users`.`id`=`domains`.`memid` and `domains`.`domain` like '%$domain%' and
|
where `users`.`id`=`domains`.`memid` and
|
||||||
`domains`.`hash`='' and `domains`.`deleted`=0 and `users`.`deleted`=0 and
|
(`domains`.`domain` like '$domainsearch' or `domains`.`id`='$domain') and
|
||||||
|
`domains`.`deleted`=0 and `users`.`deleted`=0 and
|
||||||
`users`.`verified`=1
|
`users`.`verified`=1
|
||||||
group by `users`.`id` limit 100";
|
group by `users`.`id` limit 100";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) > 1) { ?>
|
if(mysql_num_rows($res) >= 1) { ?>
|
||||||
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
||||||
|
@ -44,6 +49,37 @@
|
||||||
</tr>
|
</tr>
|
||||||
<? } ?>
|
<? } ?>
|
||||||
</table><br><br>
|
</table><br><br>
|
||||||
|
<? } elseif(mysql_num_rows($res) == 1) {
|
||||||
|
$row = mysql_fetch_assoc($res);
|
||||||
|
$_GET['userid'] = $row['id'];
|
||||||
|
} else {
|
||||||
|
// printf(_("No domains found matching %s"), $email);
|
||||||
|
}
|
||||||
|
|
||||||
|
$query = "select `orgid`,`domain` from `orgdomains` where `domain` like '$domainsearch' or `id`='$domain' limit 100";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
if(mysql_num_rows($res) >= 1) { ?>
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="5" class="title"><?=_("Select Specific Account Details")?></td>
|
||||||
|
</tr>
|
||||||
|
<?
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{ ?>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Domain")?>:</td>
|
||||||
|
<td class="DataTD"><a href="account.php?id=26&orgid=<?=$row['orgid']?>"><?=$row['domain']?></a></td>
|
||||||
|
</tr>
|
||||||
|
<? } if(mysql_num_rows($res) >= 100) { ?>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><?=_("Only the first 100 rows are displayed.")?></td>
|
||||||
|
</tr>
|
||||||
|
<? } else { ?>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td>
|
||||||
|
</tr>
|
||||||
|
<? } ?>
|
||||||
|
</table><br><br>
|
||||||
<? } elseif(mysql_num_rows($res) == 1) {
|
<? } elseif(mysql_num_rows($res) == 1) {
|
||||||
$row = mysql_fetch_assoc($res);
|
$row = mysql_fetch_assoc($res);
|
||||||
$_GET['userid'] = $row['id'];
|
$_GET['userid'] = $row['id'];
|
||||||
|
|
|
@ -13,44 +13,36 @@
|
||||||
PARTICULAR PURPOSE. See the License for more details.
|
PARTICULAR PURPOSE. See the License for more details.
|
||||||
*/ ?>
|
*/ ?>
|
||||||
<?
|
<?
|
||||||
$town = mysql_escape_string(stripslashes($_GET['town']));
|
$town = mysql_escape_string(stripslashes($_REQUEST['town']));
|
||||||
$start = intval($_GET['start']);
|
$start = intval($_REQUEST['start']);
|
||||||
$limit = 25;
|
$limit = 25;
|
||||||
|
|
||||||
echo "<div id='listshow'><ul class='top'>\n<li>";
|
echo "<div id='listshow'><ul class='top'>\n<li>";
|
||||||
echo "<a href='account.php?id=53'>"._("Home")."</a>\n";
|
echo "<a href='account.php?id=53'>"._("Home")."</a>\n";
|
||||||
|
|
||||||
$display = "";
|
$display = "";
|
||||||
if(intval($_GET['locid']) > 0)
|
|
||||||
|
if(intval($_REQUEST['regid']) > 0)
|
||||||
{
|
{
|
||||||
$loc = mysql_fetch_assoc(mysql_query("select * from `locations` where `id`='".$_GET['locid']."'"));
|
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".$_REQUEST['regid']."'"));
|
||||||
$display = "<ul class='top'>\n<li>\n".
|
$display = "<ul class='top'>\n<li>\n".
|
||||||
"<a href='account.php?id=53&locid=".$_GET['locid']."'>$loc[name]</a> - Add\n".
|
"<a href='account.php?id=53®id=".$_REQUEST['regid']."'>$reg[name]</a> - <a href='account.php?action=add&id=54®id=".$_REQUEST['regid']."'>Add</a>\n".
|
||||||
$display;
|
$display;
|
||||||
$_GET['regid'] = $loc['regid'];
|
$_REQUEST['ccid'] = $reg['ccid'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if(intval($_GET['regid']) > 0)
|
if(intval($_REQUEST['ccid']) > 0)
|
||||||
{
|
{
|
||||||
$reg = mysql_fetch_assoc(mysql_query("select * from `regions` where `id`='".$_GET['regid']."'"));
|
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".$_REQUEST['ccid']."'"));
|
||||||
$display = "<ul class='top'>\n<li>\n".
|
$display = "<ul class='top'>\n<li>\n".
|
||||||
"<a href='account.php?id=53®id=".$_GET['regid']."'>$reg[name]</a> - Add\n".
|
"<a href='account.php?id=53&ccid=".$_REQUEST['ccid']."'>$cnt[name]</a> - <a href='account.php?action=add&id=54&ccid=".$_REQUEST['ccid']."'>Add</a>\n".
|
||||||
$display;
|
|
||||||
$_GET['ccid'] = $reg['ccid'];
|
|
||||||
}
|
|
||||||
|
|
||||||
if(intval($_GET['ccid']) > 0)
|
|
||||||
{
|
|
||||||
$cnt = mysql_fetch_assoc(mysql_query("select * from `countries` where `id`='".$_GET['ccid']."'"));
|
|
||||||
$display = "<ul class='top'>\n<li>\n".
|
|
||||||
"<a href='account.php?id=53&ccid=".$_GET['ccid']."'>$cnt[name]</a> - Add\n".
|
|
||||||
$display;
|
$display;
|
||||||
}
|
}
|
||||||
|
|
||||||
if($display)
|
if($display)
|
||||||
echo $display;
|
echo $display;
|
||||||
|
|
||||||
if(intval($_GET['ccid']) <= 0)
|
if(intval($_REQUEST['ccid']) <= 0)
|
||||||
{
|
{
|
||||||
echo "<ul>\n";
|
echo "<ul>\n";
|
||||||
$query = "select * from `countries` order by `name`";
|
$query = "select * from `countries` order by `name`";
|
||||||
|
@ -59,64 +51,56 @@
|
||||||
echo "<li><a href='account.php?id=53&ccid=$row[id]'>$row[name]</a></li>\n";
|
echo "<li><a href='account.php?id=53&ccid=$row[id]'>$row[name]</a></li>\n";
|
||||||
|
|
||||||
echo "</ul>\n</li>\n</ul></div>\n<br>\n";
|
echo "</ul>\n</li>\n</ul></div>\n<br>\n";
|
||||||
} elseif(intval($_GET['regid']) <= 0) {
|
} elseif(intval($_REQUEST['regid']) <= 0) {
|
||||||
echo "<ul>\n";
|
echo "<ul>\n";
|
||||||
$query = "select * from `regions` where `ccid`='".$_GET['ccid']."' order by `name`";
|
$query = "select * from `regions` where `ccid`='".$_REQUEST['ccid']."' order by `name`";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
while($row = mysql_fetch_assoc($res))
|
while($row = mysql_fetch_assoc($res))
|
||||||
echo "<li>( edit | delete ) <a href='account.php?id=53®id=$row[id]'>$row[name]</a></li>\n";
|
{
|
||||||
|
echo "<li>( <a href='account.php?action=edit&id=54®id=$row[id]'>edit</a> |";
|
||||||
|
echo " <a href='account.php?action=delete&id=53®id=$row[id]'";
|
||||||
|
echo " onclick=\"return confirm('Are you sure you want to delete this region and all connected locations?');\">delete</a> )";
|
||||||
|
echo " <a href='account.php?id=53®id=$row[id]'>$row[name]</a></li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
|
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
|
||||||
} elseif(intval($_GET['locid']) <= 0) {
|
} elseif(intval($_REQUEST['locid']) <= 0) {
|
||||||
echo "<ul>\n";
|
echo "<ul>\n";
|
||||||
if($town != "")
|
if($town != "")
|
||||||
{
|
{
|
||||||
$query = "select * from `locations` where `regid`='".$_GET['regid']."' and `name` < '$town'";
|
$query = "select * from `locations` where `regid`='".$_REQUEST['regid']."' and `name` < '$town'";
|
||||||
$start = mysql_num_rows(mysql_query($query));
|
$start = mysql_num_rows(mysql_query($query));
|
||||||
}
|
}
|
||||||
$query = "select * from `locations` where `regid`='".$_GET['regid']."' order by `name` limit $start, $limit";
|
$query = "select * from `locations` where `regid`='".$_REQUEST['regid']."' order by `name` limit $start, $limit";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
while($row = mysql_fetch_assoc($res))
|
while($row = mysql_fetch_assoc($res))
|
||||||
echo "<li>( edit | delete ) <a href='account.php?id=53&locid=$row[id]'>$row[name]</a></li>\n";
|
{
|
||||||
|
echo "<li>( <a href='account.php?action=move&id=54&locid=$row[id]'>move</a> |";
|
||||||
|
echo " <a href='account.php?action=edit&id=54&locid=$row[id]'>edit</a> |";
|
||||||
|
echo " <a href='account.php?action=delete&id=53&locid=$row[id]'";
|
||||||
|
echo " onclick=\"return confirm('Are you sure you want to delete this location?');\">delete</a> ) $row[name]</li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
|
echo "</ul>\n</li>\n</ul>\n</li>\n</ul></div>\n<br>\n";
|
||||||
$rc = mysql_num_rows(mysql_query("select * from `locations` where `regid`='".$_GET['regid']."'"));
|
$rc = mysql_num_rows(mysql_query("select * from `locations` where `regid`='".$_REQUEST['regid']."'"));
|
||||||
if($start > 0)
|
if($start > 0)
|
||||||
{
|
{
|
||||||
$prev = $start - $limit;
|
$prev = $start - $limit;
|
||||||
if($prev < 0)
|
if($prev < 0)
|
||||||
$prev = 0;
|
$prev = 0;
|
||||||
|
|
||||||
$st = "[ <a href='account.php?id=53®id=".$_GET['regid']."'><< Start</a> ] ";
|
$st = "[ <a href='account.php?id=53®id=".$_REQUEST['regid']."'><< Start</a> ] ";
|
||||||
$prev = "[ <a href='account.php?id=53®id=".$_GET['regid']."&start=$prev'>< Previous $limit</a> ] ";
|
$prev = "[ <a href='account.php?id=53®id=".$_REQUEST['regid']."&start=$prev'>< Previous $limit</a> ] ";
|
||||||
}
|
}
|
||||||
if($start < $rc - $limit)
|
if($start < $rc - $limit)
|
||||||
{
|
{
|
||||||
$next = $start + $limit;
|
$next = $start + $limit;
|
||||||
$last = $rc - $limit;
|
$last = $rc - $limit;
|
||||||
|
|
||||||
$next = "[ <a href='account.php?id=53®id=".$_GET['regid']."&start=$next'>Next $limit ></a> ] ";
|
$next = "[ <a href='account.php?id=53®id=".$_REQUEST['regid']."&start=$next'>Next $limit ></a> ] ";
|
||||||
$end = "[ <a href='account.php?id=53®id=".$_GET['regid']."&start=$last'>End >></a> ]";
|
$end = "[ <a href='account.php?id=53®id=".$_REQUEST['regid']."&start=$last'>End >></a> ]";
|
||||||
}
|
}
|
||||||
echo "<div id='search1'>$st</div><div id='search3'>$end</div>\n";
|
echo "<div id='search1'>$st</div><div id='search3'>$end</div>\n";
|
||||||
echo "<div id='search2'>$prev</div><div id='search4'>$next</div>\n";
|
echo "<div id='search2'>$prev</div><div id='search4'>$next</div>\n";
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
<div align="left">
|
|
||||||
<form method="get" action="account.php">
|
|
||||||
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="200">
|
|
||||||
<tr>
|
|
||||||
<td colspan="2" class="title"><?=_("Search this region")?></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="DataTD" width="125"><?=_("Location Name")?>: </td>
|
|
||||||
<td class="DataTD" width="125"><input type="text" name="town" value="<?=$_GET['town']?>" size="10"></td>
|
|
||||||
</tr>
|
|
||||||
<tr>
|
|
||||||
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Search")?>"></td>
|
|
||||||
</tr>
|
|
||||||
</table>
|
|
||||||
<input type="hidden" name="regid" value="<?=$_GET['regid']?>">
|
|
||||||
<input type="hidden" name="id" value="53">
|
|
||||||
</form>
|
|
||||||
</div>
|
|
||||||
<? } ?>
|
|
||||||
|
|
158
pages/account/54.php
Normal file
158
pages/account/54.php
Normal file
|
@ -0,0 +1,158 @@
|
||||||
|
<? /*
|
||||||
|
Copyright (C) 2004 by Duane Groth <duane_at_CAcert_dot_org>
|
||||||
|
|
||||||
|
This file is part of CAcert.
|
||||||
|
|
||||||
|
CAcert has been released under the CAcert Source License
|
||||||
|
which can be found included with these source files or can
|
||||||
|
be downloaded from the internet from the following address:
|
||||||
|
http://www.cacert.org/src-lic.php
|
||||||
|
|
||||||
|
CAcert is distributed WITHOUT ANY WARRANTY; without even
|
||||||
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. See the License for more details.
|
||||||
|
*/ ?>
|
||||||
|
<? if($_REQUEST['ccid'] > 0 && $_REQUEST['action'] == "add") { ?>
|
||||||
|
<form method="post" action="account.php">
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" class="title"><?=_("Add Region")?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Region")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="name" value="<?=$_REQUEST['name']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Add")?>"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="action" value="add">
|
||||||
|
<input type="hidden" name="ccid" value="<?=$_REQUEST['ccid']?>">
|
||||||
|
<input type="hidden" name="oldid" value="54">
|
||||||
|
</form>
|
||||||
|
<? } if($_REQUEST['regid'] > 0 && $_REQUEST['action'] == "edit") {
|
||||||
|
$query = "select * from `regions` where `id`='$_REQUEST[regid]' order by `name`";
|
||||||
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
$_REQUEST['name'] = $row['name'];
|
||||||
|
?>
|
||||||
|
<form method="post" action="account.php">
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" class="title"><?=_("Edit Region")?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Region")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="name" value="<?=$_REQUEST['name']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="action" value="edit">
|
||||||
|
<input type="hidden" name="regid" value="<?=$_REQUEST['regid']?>">
|
||||||
|
<input type="hidden" name="oldid" value="54">
|
||||||
|
</form>
|
||||||
|
<? } if($_REQUEST['regid'] > 0 && $_REQUEST['action'] == "add") { ?>
|
||||||
|
<form method="post" action="account.php">
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" class="title"><?=_("Add Location")?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Location")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="name" value="<?=$_REQUEST['name']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Longitude")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="longitude" value="<?=$_REQUEST['longitude']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Latitude")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="latitude" value="<?=$_REQUEST['latitude']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Add")?>"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="action" value="add">
|
||||||
|
<input type="hidden" name="regid" value="<?=$_REQUEST['regid']?>">
|
||||||
|
<input type="hidden" name="oldid" value="54">
|
||||||
|
</form>
|
||||||
|
<? } if($_REQUEST['locid'] > 0 && $_REQUEST['action'] == "edit") {
|
||||||
|
$locid = intval($_REQUEST['locid']);
|
||||||
|
$query = "select * from `locations` where `id`='$locid'";
|
||||||
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
|
||||||
|
if($_REQUEST['name'] == "")
|
||||||
|
$_REQUEST['name'] = $row['name'];
|
||||||
|
if($_REQUEST['longitude'] == "")
|
||||||
|
$_REQUEST['longitude'] = $row['long'];
|
||||||
|
if($_REQUEST['latitude'] == "")
|
||||||
|
$_REQUEST['latitude'] = $row['lat'];
|
||||||
|
?>
|
||||||
|
<form method="post" action="account.php">
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" class="title"><?=_("Edit Location")?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Location")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="name" value="<?=$_REQUEST['name']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Longitude")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="longitude" value="<?=$_REQUEST['longitude']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Latitude")?>:</td>
|
||||||
|
<td class="DataTD"><input type="text" name="latitude" value="<?=$_REQUEST['latitude']?>"></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="action" value="edit">
|
||||||
|
<input type="hidden" name="locid" value="<?=$_REQUEST['locid']?>">
|
||||||
|
<input type="hidden" name="oldid" value="54">
|
||||||
|
</form>
|
||||||
|
<? } if($_REQUEST['locid'] > 0 && $_REQUEST['action'] == "move") {
|
||||||
|
$locid = intval($_REQUEST['locid']);
|
||||||
|
$query = "select * from `locations` where `id`='$locid'";
|
||||||
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
$_REQUEST['newreg'] = $row['regid'];
|
||||||
|
?>
|
||||||
|
<form method="post" action="account.php">
|
||||||
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
||||||
|
<tr>
|
||||||
|
<td colspan="2" class="title"><?=_("Move Location")?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Location")?>:</td>
|
||||||
|
<td class="DataTD"><?=$row['name']?></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD"><?=_("Set Region")?>:</td>
|
||||||
|
<td class="DataTD"><select name="newreg">
|
||||||
|
<?
|
||||||
|
$query = "select * from `regions` where `ccid`='$row[ccid]'";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
echo "<option value='$row[id]'";
|
||||||
|
if($_REQUEST['newreg'] == $row['id'])
|
||||||
|
echo " selected";
|
||||||
|
echo ">$row[name]</option>\n";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</select></td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("Update")?>"></td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="action" value="move">
|
||||||
|
<input type="hidden" name="locid" value="<?=$_REQUEST['locid']?>">
|
||||||
|
<input type="hidden" name="oldid" value="54">
|
||||||
|
</form>
|
||||||
|
<? } ?>
|
||||||
|
|
|
@ -18,7 +18,6 @@
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
if(mysql_num_rows($res) <= 0)
|
if(mysql_num_rows($res) <= 0)
|
||||||
{
|
{
|
||||||
showheader(_("My CAcert.org Account!"));
|
|
||||||
echo _("No such PGP/GPG certificates attached to your account.");
|
echo _("No such PGP/GPG certificates attached to your account.");
|
||||||
showfooter();
|
showfooter();
|
||||||
exit;
|
exit;
|
||||||
|
|
|
@ -24,10 +24,9 @@
|
||||||
<li><?=_("To provide a trust mechanism to go with the security aspects of encryption.")?></li>
|
<li><?=_("To provide a trust mechanism to go with the security aspects of encryption.")?></li>
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
<br>
|
||||||
|
<p><a href="http://blog.CAcert.org"><?=_("Latest News")?></a> - [ <a href='http://blog.CAcert.org'><?=_("More News Items")?></a> ]</p>
|
||||||
<h3><?=_("Latest News")?></h3>
|
|
||||||
|
|
||||||
<?
|
<?
|
||||||
|
/*
|
||||||
$query = "select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 5";
|
$query = "select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 5";
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
while($row = mysql_fetch_assoc($res))
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
@ -38,5 +37,40 @@
|
||||||
}
|
}
|
||||||
if(mysql_num_rows(mysql_query("select * from `news`")) > 2)
|
if(mysql_num_rows(mysql_query("select * from `news`")) > 2)
|
||||||
echo "<p>[ <a href='news.php'>"._("More News Items")."</a> ]</p>";
|
echo "<p>[ <a href='news.php'>"._("More News Items")."</a> ]</p>";
|
||||||
|
*/
|
||||||
|
$open = $items = 0;
|
||||||
|
$fp = fopen("http://blog.CAcert.org/feed/rss/", "r");
|
||||||
|
while(!feof($fp))
|
||||||
|
$rss .= trim(fgets($fp, 4096));
|
||||||
|
fclose($fp);
|
||||||
|
$rss = str_replace("><", ">\n<", $rss);
|
||||||
|
$lines = explode("\n", $rss);
|
||||||
|
foreach($lines as $line)
|
||||||
|
{
|
||||||
|
$line = trim($line);
|
||||||
|
|
||||||
|
if($line != "<item>" && $open == 0)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if($line == "<item>" && $open == 0)
|
||||||
|
{
|
||||||
|
$open = 1;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($line == "</item>" && $open == 1)
|
||||||
|
{
|
||||||
|
$items++;
|
||||||
|
if($items >= 2)
|
||||||
|
break;
|
||||||
|
$open == 0;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if(substr($line, 0, 7) == "<title>")
|
||||||
|
echo "<h3>".trim(substr($line, 7, -8))."</h3>\n";
|
||||||
|
if(substr($line, 0, 13) == "<description>")
|
||||||
|
echo "<p>".trim(substr($line, 13, -14))."</p>\n";
|
||||||
|
if(substr($line, 0, 6) == "<link>")
|
||||||
|
echo "<p>[ <a href='".trim(substr($line, 6, -7))."'>"._("Full Story")."</a> ]</p>\n";
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
<br>
|
|
||||||
|
|
109
pages/wot/12.php
Normal file
109
pages/wot/12.php
Normal file
|
@ -0,0 +1,109 @@
|
||||||
|
<? if($_REQUEST['location'] == "") { ?>
|
||||||
|
<script language="javascript" src="/ac.js"></script>
|
||||||
|
<script language="javascript">
|
||||||
|
<!--
|
||||||
|
function oncomplete() {
|
||||||
|
document.f.submit();
|
||||||
|
}
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
|
<p>Please enter your town or suburb name, followed by region or state or province and then the country (please separate by commas)<br />
|
||||||
|
eg Sydney, New South Wales, Australia</p>
|
||||||
|
<p>This is an AJAX form which depends heavily on javascript for auto-complete functionality and while it will work without javascript the usability will be heavily degraded.</p>
|
||||||
|
<form name="f" action="wot.php" method="post">
|
||||||
|
<input type='hidden' name='oldid' value='12' />
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td align=right valign=middle>Maximum Distance:</td>
|
||||||
|
<td><select name="maxdist">
|
||||||
|
<?
|
||||||
|
$arr = array(10, 25, 50, 100, 250, 500, 1000);
|
||||||
|
foreach($arr as $val)
|
||||||
|
{
|
||||||
|
echo "<option value='$val'";
|
||||||
|
if($val == $_REQUEST['maxdist'])
|
||||||
|
echo " selected";
|
||||||
|
echo ">${val}km</option>\n";
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td align=right valign=middle>Location:</td>
|
||||||
|
<td><input autocomplete="off" type="text" id="location" name="location" value="" size="50" /> (hit enter to submit)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
<script language="javascript">
|
||||||
|
<!--
|
||||||
|
var ac1 = new AC('location', 'location', oncomplete);
|
||||||
|
ac1.enable_unicode();
|
||||||
|
document.f.location.focus();
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
|
<? } else {
|
||||||
|
if(intval($_REQUEST['location']) == 0)
|
||||||
|
{
|
||||||
|
$bits = explode(",", $_REQUEST['location']);
|
||||||
|
|
||||||
|
$loc = trim(mysql_escape_string($bits['0']));
|
||||||
|
$reg = trim(mysql_escape_string($bits['1']));
|
||||||
|
$ccname = trim(mysql_escape_string($bits['2']));
|
||||||
|
|
||||||
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
||||||
|
`locations`.`name` like '$loc%' and `regions`.`name` like '$reg%' and `countries`.`name` like '$ccname%' and
|
||||||
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
||||||
|
order by `locations`.`name` limit 1";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
if($reg != "" && $ccname == "" && mysql_num_rows($res) <= 0)
|
||||||
|
{
|
||||||
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
||||||
|
`locations`.`name` like '$loc%' and `countries`.`name` like '$reg%' and
|
||||||
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
||||||
|
order by `locations`.`name` limit 1";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
}
|
||||||
|
if(mysql_num_rows($res) <= 0)
|
||||||
|
die("Unable to find suitable location");
|
||||||
|
$row = mysql_fetch_assoc($res);
|
||||||
|
$_REQUEST['location'] = $row['locid'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$maxdist = intval($_REQUEST['maxdist']);
|
||||||
|
|
||||||
|
$locid = intval($_REQUEST['location']);
|
||||||
|
$query = "select * from `locations` where `id`='$locid'";
|
||||||
|
$loc = mysql_fetch_assoc(mysql_query($query));
|
||||||
|
$query = "SELECT (6378.137 * ACOS((SIN(PI() * $loc[lat] / 180) * SIN(PI() * `locations`.`lat` / 180)) + (COS(PI() * $loc[lat] / 180 ) *
|
||||||
|
COS(PI() * `locations`.`lat` / 180) * COS(PI() * `locations`.`long` / 180 - PI() * $loc[long] / 180)))) AS `distance`,
|
||||||
|
`locations`.`name` AS `location`, concat(`users`.`fname`, ' ', LEFT(`users`.`lname`, 1)) AS `name`, `long`, `lat`,
|
||||||
|
`users`.`id` as `uid`, `contactinfo` FROM `locations`, `users`, `notary` WHERE `users`.`locid` = `locations`.`id` AND
|
||||||
|
`users`.`id` = `notary`.`to` AND `users`.`listme` = 1 GROUP BY `notary`.`to`
|
||||||
|
HAVING SUM(`notary`.`points`) >= 100 AND `distance` <= '$maxdist' ORDER BY `distance` LIMIT 50";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper" width="700">
|
||||||
|
<tr>
|
||||||
|
<td class="title"><?=_("Name")?></td>
|
||||||
|
<td class="title"><?=_("Distance")?></td>
|
||||||
|
<td class="title"><?=_("Max Points")?></td>
|
||||||
|
<td class="title"><?=_("Contact Details")?></td>
|
||||||
|
<td class="title"><?=_("Email Assurer")?></td>
|
||||||
|
</tr>
|
||||||
|
<? while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$row[distance] = round($row[distance], -1);
|
||||||
|
$points = maxpoints($row['uid']);
|
||||||
|
if($points > 35)
|
||||||
|
$points = 35;
|
||||||
|
?>
|
||||||
|
<tr>
|
||||||
|
<td class="DataTD" width="100"><nobr><?=$row['name']?></nobr></td>
|
||||||
|
<td class="DataTD"><?=$row['distance']?>km</td>
|
||||||
|
<td class="DataTD"><?=$points?></td>
|
||||||
|
<td class="DataTD"><?=$row['contactinfo']?></td>
|
||||||
|
<td class="DataTD"><a href="wot.php?id=9&userid=<?=$row['uid']?>"><?=_("Email Me")?></a></td>
|
||||||
|
</tr>
|
||||||
|
<? } ?>
|
||||||
|
</table>
|
||||||
|
<? } ?>
|
72
pages/wot/13.php
Normal file
72
pages/wot/13.php
Normal file
|
@ -0,0 +1,72 @@
|
||||||
|
<? if($_REQUEST['location'] != "") {
|
||||||
|
if(intval($_REQUEST['location']) == 0)
|
||||||
|
{
|
||||||
|
$bits = explode(",", $_REQUEST['location']);
|
||||||
|
|
||||||
|
$loc = trim(mysql_escape_string($bits['0']));
|
||||||
|
$reg = trim(mysql_escape_string($bits['1']));
|
||||||
|
$ccname = trim(mysql_escape_string($bits['2']));
|
||||||
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
||||||
|
`locations`.`name` like '$loc%' and `regions`.`name` like '$reg%' and `countries`.`name` like '$ccname%' and
|
||||||
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
||||||
|
order by `locations`.`name` limit 1";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
if($reg != "" && $ccname == "" && mysql_num_rows($res) <= 0)
|
||||||
|
{
|
||||||
|
$query = "select `locations`.`id` as `locid` from `locations`, `regions`, `countries` where
|
||||||
|
`locations`.`name` like '$loc%' and `countries`.`name` like '$reg%' and
|
||||||
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
||||||
|
order by `locations`.`name` limit 1";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
}
|
||||||
|
if(mysql_num_rows($res) <= 0)
|
||||||
|
die("Unable to find suitable location");
|
||||||
|
|
||||||
|
$row = mysql_fetch_assoc($res);
|
||||||
|
$_REQUEST['location'] = $row['locid'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$locid = intval($_REQUEST['location']);
|
||||||
|
$query = "select * from `locations` where `id`='$locid'";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
if(mysql_num_rows($res) > 0)
|
||||||
|
{
|
||||||
|
$loc = mysql_fetch_assoc($res);
|
||||||
|
$_SESSION['profile']['ccid'] = $loc['ccid'];
|
||||||
|
$_SESSION['profile']['regid'] = $loc['regid'];
|
||||||
|
$_SESSION['profile']['locid'] = $loc['id'];
|
||||||
|
$query = "update `users` set `locid`='$loc[id]', `regid`='$loc[regid]', `ccid`='$loc[ccid]' where `id`='".$_SESSION['profile']['id']."'";
|
||||||
|
mysql_query($query);
|
||||||
|
echo "<p>"._("Your location has been updated")."</p>\n";
|
||||||
|
} else {
|
||||||
|
echo "<p>"._("I was unable to match your location with places in my database.")."</p>\n";
|
||||||
|
}
|
||||||
|
} ?>
|
||||||
|
<script language="javascript" src="/ac.js"></script>
|
||||||
|
<script language="javascript">
|
||||||
|
<!--
|
||||||
|
function oncomplete() {
|
||||||
|
document.f.submit();
|
||||||
|
}
|
||||||
|
// -->
|
||||||
|
</script>
|
||||||
|
<p>Please enter your town or suburb name, followed by region or state or province and then the country (please separate by commas)<br />
|
||||||
|
eg Sydney, New South Wales, Australia</p>
|
||||||
|
<p>This is an AJAX form which depends heavily on javascript for auto-complete functionality and while it will work without javascript the usability will be heavily degraded.</p>
|
||||||
|
<form name="f" action="wot.php" method="post">
|
||||||
|
<input type='hidden' name='id' value='13' />
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td align=right valign=middle>Location:</td>
|
||||||
|
<td><input autocomplete="off" type="text" id="location" name="location" value="" size="50" /> (hit enter to submit)</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
<script language="javascript">
|
||||||
|
<!--
|
||||||
|
var ac1 = new AC('location', 'location', oncomplete);
|
||||||
|
ac1.enable_unicode();
|
||||||
|
document.f.location.focus();
|
||||||
|
// -->
|
||||||
|
</script>
|
|
@ -135,5 +135,6 @@
|
||||||
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("I am sure of myself")?>"></td>
|
<td class="DataTD" colspan="2"><input type="submit" name="process" value="<?=_("I am sure of myself")?>"></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
<input type="hidden" name="pagehash" value="<?=$_SESSION['_config']['wothash']?>">
|
||||||
<input type="hidden" name="oldid" value="<?=$id?>">
|
<input type="hidden" name="oldid" value="<?=$id?>">
|
||||||
</form>
|
</form>
|
||||||
|
|
|
@ -61,6 +61,7 @@
|
||||||
else
|
else
|
||||||
$max = 50;
|
$max = 50;
|
||||||
|
|
||||||
|
if($URL != "")
|
||||||
if(substr($URL, 0, strlen("https://www.thawte.com/cgi/personal/wot/directory.exe?node=")) !=
|
if(substr($URL, 0, strlen("https://www.thawte.com/cgi/personal/wot/directory.exe?node=")) !=
|
||||||
"https://www.thawte.com/cgi/personal/wot/directory.exe?node=")
|
"https://www.thawte.com/cgi/personal/wot/directory.exe?node=")
|
||||||
{
|
{
|
||||||
|
|
547
www/ac.js
Normal file
547
www/ac.js
Normal file
|
@ -0,0 +1,547 @@
|
||||||
|
/* vim:ts=4:sts=4:sw=2:noai:noexpandtab
|
||||||
|
*
|
||||||
|
* Auto-complete client side javascript.
|
||||||
|
* Copyright (c) 2005 Steven McCoy <fnjordy@gmail.com>
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* format of constructor is overloaded:
|
||||||
|
* AC(<type>, <id>, <submit callback>)
|
||||||
|
* AC(<type>, <id>)
|
||||||
|
* AC(<id>)
|
||||||
|
*/
|
||||||
|
function AC(id) {
|
||||||
|
/* find search type */
|
||||||
|
if (arguments.length > 1) {
|
||||||
|
this.type = arguments[0];
|
||||||
|
id = arguments[1];
|
||||||
|
} else {
|
||||||
|
this.type = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* input element we are autocompleting on */
|
||||||
|
this.obj = document.getElementById(id);
|
||||||
|
this.obj.value = '';
|
||||||
|
|
||||||
|
/* base url to send request too */
|
||||||
|
this.url = '/ac.php';
|
||||||
|
|
||||||
|
/* function to call when option selected */
|
||||||
|
this.submit_callback = (arguments.length > 2) ? arguments[2] : null;
|
||||||
|
|
||||||
|
/* popup layer we will display results in */
|
||||||
|
this.div = document.createElement('DIV');
|
||||||
|
this.div.className = 'ac_menu';
|
||||||
|
this.div.style.visibility = 'hidden';
|
||||||
|
this.div.style.position = 'absolute';
|
||||||
|
this.div.style.zIndex = 1;
|
||||||
|
this.div.style.width = this.obj.offsetWidth - 2 + "px";
|
||||||
|
|
||||||
|
this.div.style.left = this.total_offset(this.obj,'offsetLeft') + "px";
|
||||||
|
this.div.style.top = this.total_offset(this.obj,'offsetTop') + this.obj.offsetHeight - 1 + "px";
|
||||||
|
|
||||||
|
/* tie to input element */
|
||||||
|
this.obj.parentNode.insertBefore(this.div, this.obj.nextSibling);
|
||||||
|
|
||||||
|
/* iframe for non-XmlHttpRequest() browsers */
|
||||||
|
this.iframe = null;
|
||||||
|
|
||||||
|
/* install event handlers */
|
||||||
|
this.obj.onkeydown = this.onkeydown;
|
||||||
|
this.obj.onkeyup = this.onkeyup;
|
||||||
|
this.obj.onkeypress = this.onkeypress;
|
||||||
|
this.obj.onblur = function() { this.AC.close_popup(); }
|
||||||
|
|
||||||
|
this.obj.AC = this; /* self reference */
|
||||||
|
this.selected_option = null; /* the currently selected option */
|
||||||
|
|
||||||
|
this.request = null; /* http request object */
|
||||||
|
this.cache = new Array(); /* cache of results from server */
|
||||||
|
this.typing = false; /* whether user is still typing */
|
||||||
|
this.typing_timeout = 10;
|
||||||
|
this.sending_timeout = 10;
|
||||||
|
|
||||||
|
this.search_term = null; /* current search term */
|
||||||
|
this.previous_term = null; /* previous search term */
|
||||||
|
this.searched_term = null; /* search from keyboard */
|
||||||
|
|
||||||
|
this.last_input = null; /* previous typed entry */
|
||||||
|
|
||||||
|
/* Unicode inputs require polling of the input control for updates */
|
||||||
|
this.poll_input = false;
|
||||||
|
|
||||||
|
/* update extern mapping array for rpc reply */
|
||||||
|
_ac_map_add(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
AC.prototype.enable_unicode = function() {
|
||||||
|
this.poll_input = true;
|
||||||
|
_ac_key_check(this,this.typing_timeout);
|
||||||
|
}
|
||||||
|
|
||||||
|
AC.prototype.total_offset = function(element, property) {
|
||||||
|
var total = 0;
|
||||||
|
while (element) {
|
||||||
|
total += element[property];
|
||||||
|
element = element.offsetParent;
|
||||||
|
}
|
||||||
|
return total;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* hide popup and cleanup */
|
||||||
|
AC.prototype.close_popup = function() {
|
||||||
|
this.div.style.visibility = 'hidden';
|
||||||
|
|
||||||
|
/* no selected item, no typing, and close any pending request */
|
||||||
|
this.selected_option = null;
|
||||||
|
this.typing = false;
|
||||||
|
this.search_term = null;
|
||||||
|
this.previous_term = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* create object for rpc call */
|
||||||
|
AC.prototype.XMLHttpRequest = function() {
|
||||||
|
var request = null;
|
||||||
|
if (typeof XMLHttpRequest != 'undefined') {
|
||||||
|
request = new XMLHttpRequest();
|
||||||
|
} else {
|
||||||
|
try {
|
||||||
|
request = new ActiveXObject('Msxml2.XMLHTTP')
|
||||||
|
} catch(e) {
|
||||||
|
try {
|
||||||
|
request = new ActiveXObject('Microsoft.XMLHTTP')
|
||||||
|
} catch(e) {
|
||||||
|
request = null
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return request;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* helper functions to process typing timer */
|
||||||
|
var _ac_key_thunk = new Array();
|
||||||
|
function _ac_key_thunk_call(id) {
|
||||||
|
if (_ac_key_thunk[id]) {
|
||||||
|
var ac = _ac_key_thunk[id][1];
|
||||||
|
|
||||||
|
/* now check as if onkeyup() was called */
|
||||||
|
/* first find unselected text */
|
||||||
|
var unselected = ac.obj.value;
|
||||||
|
if (document.selection) {
|
||||||
|
var range = document.selection.createRange();
|
||||||
|
if (range) {
|
||||||
|
/* to limit the execution this would be nice, but parentElement() not supported in Opera */
|
||||||
|
// if (range && range.parentElement && range.parentElement() == ac.obj) {
|
||||||
|
var length = unselected.length - range.text.length;
|
||||||
|
if (length > 0) {
|
||||||
|
unselected = unselected.substring(0, length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else if (ac.obj.setSelectionRange) {
|
||||||
|
var length = ac.obj.selectionEnd - ac.obj.selectionStart;
|
||||||
|
if (length > 0)
|
||||||
|
unselected = unselected.substring(0,ac.obj.selectionStart);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (unselected != ac.last_input) {
|
||||||
|
if (unselected.length > 0) {
|
||||||
|
ac.searched_term = unselected;
|
||||||
|
ac.suggest(ac.searched_term);
|
||||||
|
} else {
|
||||||
|
_ac_cancel(ac);
|
||||||
|
ac.close_popup();
|
||||||
|
}
|
||||||
|
ac.last_input = unselected;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* re-install timer for polling */
|
||||||
|
if (ac.poll_input) {
|
||||||
|
_ac_key_thunk[id][2] = setTimeout("_ac_key_thunk_call("+id+")",ac.typing_timeout);
|
||||||
|
} else {
|
||||||
|
/* remove from list and cleanup list */
|
||||||
|
_ac_key_thunk[id] = null;
|
||||||
|
for (i = _ac_key_thunk.length; i > 0; i--)
|
||||||
|
if (_ac_key_thunk[i] == null)
|
||||||
|
_ac_key_thunk.length--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function _ac_key_check(ac,timeout) {
|
||||||
|
/* first remove any pending key check */
|
||||||
|
for (i = _ac_key_thunk.length-1; i >= 0; i--)
|
||||||
|
if (_ac_key_thunk[i] != null && _ac_key_thunk[i][0] == ac.obj.id) {
|
||||||
|
clearTimeout(_ac_key_thunk[i][2]);
|
||||||
|
_ac_key_thunk[i] = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* now setup a new one */
|
||||||
|
var i = _ac_key_thunk.length;
|
||||||
|
var handle = setTimeout("_ac_key_thunk_call("+i+")",timeout);
|
||||||
|
_ac_key_thunk[i] = new Array(ac.obj.id,ac,handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* helper functions to process sending timer */
|
||||||
|
var _ac_thunk = new Array();
|
||||||
|
function _ac_thunk_call(id) {
|
||||||
|
if (_ac_thunk[id]) {
|
||||||
|
var ac = _ac_thunk[id][1];
|
||||||
|
ac.typing = false;
|
||||||
|
ac.send(_ac_thunk[id][2]);
|
||||||
|
_ac_thunk[id] = null;
|
||||||
|
for (i = _ac_thunk.length; i > 0; i--)
|
||||||
|
if (_ac_thunk[i] == null)
|
||||||
|
_ac_thunk.length--;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* cancel a pending request */
|
||||||
|
function _ac_cancel(ac) {
|
||||||
|
for (i = _ac_thunk.length-1; i >= 0; i--)
|
||||||
|
if (_ac_thunk[i] != null && _ac_thunk[i][0] == ac.obj.id) {
|
||||||
|
clearTimeout(_ac_thunk[i][3]);
|
||||||
|
_ac_thunk[i] = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function _ac_add(ac,query,timeout) {
|
||||||
|
var i = _ac_thunk.length;
|
||||||
|
var handle = setTimeout("_ac_thunk_call("+i+")",timeout);
|
||||||
|
_ac_thunk[i] = new Array(ac.obj.id,ac,query,handle);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* helper functions for webserver rpc processing */
|
||||||
|
var _ac_map = new Array();
|
||||||
|
function _ac_map_add(ac) {
|
||||||
|
_ac_map[ac.obj.id] = ac;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* called to initiation suggestion process */
|
||||||
|
AC.prototype.suggest = function(query) {
|
||||||
|
/* remove redundant searches */
|
||||||
|
if (query == this.search_term)
|
||||||
|
return;
|
||||||
|
|
||||||
|
/* cancel any existing http call */
|
||||||
|
_ac_cancel(this);
|
||||||
|
if (this.request && this.request.readyState != 0) {
|
||||||
|
this.request.abort();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* check cache */
|
||||||
|
var lc = query.toLowerCase();
|
||||||
|
for (i = 0; i < this.cache.length; i++)
|
||||||
|
if (this.cache[i][0] == lc) {
|
||||||
|
var results = this.cache[i][1];
|
||||||
|
this.search_term = query;
|
||||||
|
this.update_popup(results);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* send call to server */
|
||||||
|
this.typing = true;
|
||||||
|
this.send(query);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* called to send message to a server */
|
||||||
|
AC.prototype.send = function(query) {
|
||||||
|
/* check throttle timer */
|
||||||
|
if (this.typing) {
|
||||||
|
_ac_add(this,query,this.sending_timeout);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* initiate new call */
|
||||||
|
this.search_term = query;
|
||||||
|
if (this.iframe == null) {
|
||||||
|
this.request = this.XMLHttpRequest();
|
||||||
|
if (this.request == null) {
|
||||||
|
var iframe = document.createElement('IFRAME');
|
||||||
|
iframe.src = this.url+'?i=1&id='+encodeURI(this.obj.id)+'&t='+encodeURI(this.type)+'&s='+encodeURI(query);
|
||||||
|
/* opera 7.54 doesn't like iframe styles */
|
||||||
|
iframe.style.width = '0px';
|
||||||
|
iframe.style.height = '0px';
|
||||||
|
this.iframe = this.obj.appendChild(iframe);
|
||||||
|
this.obj.focus();
|
||||||
|
} else {
|
||||||
|
/* send XmlHttpRequest */
|
||||||
|
var AC = this;
|
||||||
|
this.request.onreadystatechange = function() {
|
||||||
|
if (AC.request.readyState == 4) {
|
||||||
|
try {
|
||||||
|
if (AC.request.status != 200 || AC.request.responseText.charAt(0) == '<') {
|
||||||
|
/* some error */
|
||||||
|
} else {
|
||||||
|
eval(AC.request.responseText);
|
||||||
|
}
|
||||||
|
} catch (e) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.request.open("GET", this.url+"?id="+encodeURI(this.obj.id)+"&t="+encodeURI(this.type)+"&s="+encodeURI(query));
|
||||||
|
this.request.send(null);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
/* re-submit iframe */
|
||||||
|
this.iframe.src = this.url+'?i=1&id='+encodeURI(this.obj.id)+'&t='+encodeURI(this.type)+'&s='+encodeURI(query);
|
||||||
|
this.obj.focus();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* called with array of search results */
|
||||||
|
AC.prototype.update_popup = function(results) {
|
||||||
|
if (this.search_term != null && results != null && results.length > 0) {
|
||||||
|
/* remove currently listed options */
|
||||||
|
while (this.div.hasChildNodes())
|
||||||
|
this.div.removeChild(this.div.firstChild);
|
||||||
|
|
||||||
|
/* default to first result when adding characters */
|
||||||
|
if (this.previous_term == null || this.search_term.length >= this.previous_term.length) {
|
||||||
|
this.selected_option = 0;
|
||||||
|
} else {
|
||||||
|
/* remove selection when deleteing */
|
||||||
|
this.selected_option = null;
|
||||||
|
}
|
||||||
|
this.previous_term = this.search_term;
|
||||||
|
|
||||||
|
for (i = 0; i < results.length; i++) {
|
||||||
|
var div = document.createElement('DIV');
|
||||||
|
div.divid = results[i][2];
|
||||||
|
div.AC = this;
|
||||||
|
if (this.selected_option == div.divid)
|
||||||
|
div.className = 'ac_highlight';
|
||||||
|
else
|
||||||
|
div.className = 'ac_normal';
|
||||||
|
div.name = results[i][0];
|
||||||
|
div.value = results[i][1];
|
||||||
|
div.innerHTML = results[i][3];
|
||||||
|
div.onmousedown = function() { this.AC.onselected(); }
|
||||||
|
div.onmouseover = function() {
|
||||||
|
if (this.AC.selected_option != null)
|
||||||
|
this.AC.div.childNodes[this.AC.selected_option].className = 'ac_normal';
|
||||||
|
this.AC.selected_option = this.divid;
|
||||||
|
this.AC.cabbage = this.AC.selected_option;
|
||||||
|
this.className = 'ac_highlight';
|
||||||
|
}
|
||||||
|
div.onmouseout = function() { this.className = 'ac_normal'; }
|
||||||
|
this.div.appendChild(div);
|
||||||
|
}
|
||||||
|
this.div.style.visibility = 'visible';
|
||||||
|
|
||||||
|
/* complete text box with selected text */
|
||||||
|
|
||||||
|
if (this.selected_option == 0 &&
|
||||||
|
(this.obj.createTextRange || this.obj.setSelectionRange) &&
|
||||||
|
this.obj.value != results[0][1] &&
|
||||||
|
results[0][1].substring(0,this.search_term.length).toLowerCase() == this.search_term.toLowerCase())
|
||||||
|
{
|
||||||
|
this.obj.value = results[0][1];
|
||||||
|
if (this.obj.createTextRange) {
|
||||||
|
var range = this.obj.createTextRange();
|
||||||
|
range.moveStart('character',this.search_term.length);
|
||||||
|
range.select();
|
||||||
|
} else {
|
||||||
|
// var range = document.createRange();
|
||||||
|
// range.setStart(this.obj,this.search_term.length);
|
||||||
|
this.obj.setSelectionRange(this.search_term.length,this.obj.value.length);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
this.close_popup();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* update cache */
|
||||||
|
var found = false;
|
||||||
|
var lc = this.search_term.toLowerCase();
|
||||||
|
for (i = 0; i < this.cache.length; i++)
|
||||||
|
if (this.cache[i][0] == lc) {
|
||||||
|
found = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!found) {
|
||||||
|
this.cache[this.cache.length] = new Array(lc, results);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* update auto-compete input element with selected option */
|
||||||
|
AC.prototype.update_input = function() {
|
||||||
|
this.obj.value = this.div.childNodes[this.selected_option].name;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* when option is clicked with mouse, or entered with keyboard */
|
||||||
|
AC.prototype.onselected = function() {
|
||||||
|
if (this.selected_option == null)
|
||||||
|
if (this.cabbage == null)
|
||||||
|
return;
|
||||||
|
else
|
||||||
|
this.selected_option = this.cabbage; /* opera funky */
|
||||||
|
|
||||||
|
this.update_input();
|
||||||
|
|
||||||
|
/* hide popup */
|
||||||
|
this.close_popup();
|
||||||
|
/* submit form */
|
||||||
|
if (this.submit_callback)
|
||||||
|
this.submit_callback();
|
||||||
|
}
|
||||||
|
|
||||||
|
/* capture up & down actions to prevent moving cursor left or right */
|
||||||
|
/* input.onkeypress() */
|
||||||
|
AC.prototype.onkeypress = function(e) {
|
||||||
|
if (!e) e = window.event;
|
||||||
|
var c = e.keyCode;
|
||||||
|
if (c == 0) c = e.charCode;
|
||||||
|
if(e.charCode) {_ac_key_check(this.AC,this.AC.typing_timeout); return;}
|
||||||
|
switch (c) {
|
||||||
|
case 38: /* up */
|
||||||
|
case 40: /* down */
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default: break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* move cursor on down to allow repeating */
|
||||||
|
/* input.onkeydown() */
|
||||||
|
AC.prototype.onkeydown = function(e) {
|
||||||
|
if (!e) e = window.event;
|
||||||
|
var c = e.keyCode;
|
||||||
|
if (c == 0) c = e.charCode;
|
||||||
|
var i = this.AC.selected_option == null ? -1 : this.AC.selected_option;
|
||||||
|
if(e.charCode) {_ac_key_check(this.AC,this.AC.typing_timeout); return;}
|
||||||
|
switch (c) {
|
||||||
|
case 38: /* up */
|
||||||
|
i--;
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 40: /* down */
|
||||||
|
i++;
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
_ac_key_check(this.AC,this.AC.typing_timeout);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (c == 38 || c == 40) {
|
||||||
|
var length = this.AC.div.childNodes.length;
|
||||||
|
if (i < 0) i = 0;
|
||||||
|
if (i >= length) i = length-1;
|
||||||
|
if (i != this.AC.selected_option) {
|
||||||
|
for (j = 0; j < length; j++) {
|
||||||
|
if (j == i) {
|
||||||
|
this.AC.obj.value = this.AC.div.childNodes[j].value;
|
||||||
|
this.AC.selected_option = this.AC.div.childNodes[j].divid;
|
||||||
|
this.AC.div.childNodes[j].className = 'ac_highlight';
|
||||||
|
} else {
|
||||||
|
this.AC.div.childNodes[j].className = 'ac_normal';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* update search term */
|
||||||
|
this.AC.search_term = this.AC.div.childNodes[this.AC.selected_option].value;
|
||||||
|
|
||||||
|
/* popup if hidden */
|
||||||
|
if (this.AC.div.style.visibility == 'hidden') {
|
||||||
|
this.AC.suggest (this.AC.searched_term);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* input.onkeyup() */
|
||||||
|
AC.prototype.onkeyup = function(e) {
|
||||||
|
if (!e) e = window.event;
|
||||||
|
var c = e.keyCode;
|
||||||
|
if (c == 0) c = e.charCode;
|
||||||
|
switch (c) {
|
||||||
|
/* prevent strange selections at top of option list */
|
||||||
|
case 38: /* up */
|
||||||
|
case 40: /* down */
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
/* select highlighted option */
|
||||||
|
case 13: /* enter */
|
||||||
|
this.AC.onselected();
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
/* hide popup window */
|
||||||
|
case 27: /* escape */
|
||||||
|
this.AC.close_popup();
|
||||||
|
e.returnValue = false;
|
||||||
|
if (e.preventDefault) e.preventDefault();
|
||||||
|
break;
|
||||||
|
|
||||||
|
/* get new suggestion for new data */
|
||||||
|
default:
|
||||||
|
|
||||||
|
/* for latin this is ok:
|
||||||
|
if (this.value.length > 0) {
|
||||||
|
this.AC.searched_term = this.value;
|
||||||
|
this.AC.suggest(this.value);
|
||||||
|
} else {
|
||||||
|
_ac_cancel(this.AC);
|
||||||
|
this.AC.close_popup();
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* iframe or XmlHttpRequest() callback */
|
||||||
|
function _ac_rpc() {
|
||||||
|
var id = arguments[0];
|
||||||
|
if (_ac_map[id]) {
|
||||||
|
/* we cannot shift() arguments as it is an object :( */
|
||||||
|
_ac_map[id].process_reply.apply(_ac_map[id],arguments);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* parse rpc results into html for the popup */
|
||||||
|
AC.prototype.process_reply = function() {
|
||||||
|
var results = new Array();
|
||||||
|
var c = 0;
|
||||||
|
var re = new RegExp('('+this.searched_term+')', "gi");
|
||||||
|
var nt = '<font color="red"><b>$1</b></font>';
|
||||||
|
for (i = 1; i < arguments.length; i += 2) {
|
||||||
|
var name = this.highlight ? arguments[i+1].replace(re, nt) : arguments[i+1];
|
||||||
|
var value = this.highlight ? arguments[i].replace(re, nt) : arguments[i];
|
||||||
|
var html = "<span class='d'>"+name+"</span><span class='a'>"+value+"</span>";
|
||||||
|
results[c] = new Array(arguments[i+1], arguments[i], c, html);
|
||||||
|
c++;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.update_popup(results);
|
||||||
|
}
|
||||||
|
|
||||||
|
function escapeURI(La){
|
||||||
|
if(encodeURIComponent) {
|
||||||
|
return encodeURIComponent(La);
|
||||||
|
}
|
||||||
|
if(escape) {
|
||||||
|
return escape(La)
|
||||||
|
}
|
||||||
|
}
|
37
www/ac.php
Normal file
37
www/ac.php
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<?
|
||||||
|
header('Content-Type: text/html; charset=UTF-8');
|
||||||
|
|
||||||
|
if($_REQUEST['i'] != "")
|
||||||
|
echo "<html><body><script language=\"JavaScript\"><!--\n";
|
||||||
|
|
||||||
|
$s = mysql_escape_string($_REQUEST['s']);
|
||||||
|
|
||||||
|
$id = $_REQUEST['id'];
|
||||||
|
|
||||||
|
echo "parent._ac_rpc('$id',";
|
||||||
|
|
||||||
|
$bits = explode(",", $s);
|
||||||
|
|
||||||
|
$loc = trim(mysql_escape_string($bits['0']));
|
||||||
|
$reg = trim(mysql_escape_string($bits['1']));
|
||||||
|
$ccname = trim(mysql_escape_string($bits['2']));
|
||||||
|
$query = "select `locations`.`id` as `locid`, `locations`.`name` as `locname`, `regions`.`name` as `regname`,
|
||||||
|
`countries`.`name` as `ccname` from `locations`, `regions`, `countries` where
|
||||||
|
`locations`.`name` like '$loc%' and `regions`.`name` like '$reg%' and `countries`.`name` like '$ccname%' and
|
||||||
|
`locations`.`regid`=`regions`.`id` and `locations`.`ccid`=`countries`.`id`
|
||||||
|
order by `locations`.`name` limit 10";
|
||||||
|
$res = mysql_query($query);
|
||||||
|
while($row = mysql_fetch_assoc($res))
|
||||||
|
{
|
||||||
|
$rc++;
|
||||||
|
if($rc > 1)
|
||||||
|
echo ",";
|
||||||
|
echo '"'.$row['locname'].', '.$row['regname'].', '.$row['ccname'].'", "'.$row['locid'].'"';
|
||||||
|
}
|
||||||
|
echo ");";
|
||||||
|
|
||||||
|
if($_REQUEST['i'] != "")
|
||||||
|
echo "\n\n// -->\n</script></body></html>";
|
||||||
|
|
||||||
|
exit;
|
||||||
|
?>
|
|
@ -18,8 +18,10 @@
|
||||||
if($id == 6)
|
if($id == 6)
|
||||||
{
|
{
|
||||||
include_once("../www/account/6.php");
|
include_once("../www/account/6.php");
|
||||||
|
exit;
|
||||||
} else if($id == 19) {
|
} else if($id == 19) {
|
||||||
include_once("../www/account/19.php");
|
include_once("../www/account/19.php");
|
||||||
|
exit;
|
||||||
} else if($oldid == 40 && $process != "" && $_POST['support'] != "yes") {
|
} else if($oldid == 40 && $process != "" && $_POST['support'] != "yes") {
|
||||||
$who = stripslashes($who);
|
$who = stripslashes($who);
|
||||||
$email = stripslashes($email);
|
$email = stripslashes($email);
|
||||||
|
@ -51,9 +53,11 @@
|
||||||
$query = "select * from `tverify` where `id`='".$_GET['photoid']."'";
|
$query = "select * from `tverify` where `id`='".$_GET['photoid']."'";
|
||||||
$row = mysql_fetch_assoc(mysql_query($query));
|
$row = mysql_fetch_assoc(mysql_query($query));
|
||||||
readfile($row['photoid']);
|
readfile($row['photoid']);
|
||||||
|
exit;
|
||||||
} else {
|
} else {
|
||||||
showheader(_("My CAcert.org Account!"));
|
showheader(_("My CAcert.org Account!"));
|
||||||
includeit($id, "account");
|
includeit($id, "account");
|
||||||
showfooter();
|
showfooter();
|
||||||
|
exit;
|
||||||
}
|
}
|
||||||
?>
|
?>
|
||||||
|
|
|
@ -245,6 +245,7 @@
|
||||||
$pdf->AddPage();
|
$pdf->AddPage();
|
||||||
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['assurer'], $_GET['date'], $maxpoints, $_GET['document1'], $_GET['document2'], $_GET['location']);
|
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['assurer'], $_GET['date'], $maxpoints, $_GET['document1'], $_GET['document2'], $_GET['location']);
|
||||||
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
|
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
|
||||||
|
header("Content-Disposition: attachment; filename=cap.pdf");
|
||||||
header("Cache-Control: public, max-age=10800");
|
header("Cache-Control: public, max-age=10800");
|
||||||
header("Pragma: cache");
|
header("Pragma: cache");
|
||||||
$pdf->output();
|
$pdf->output();
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
<? header("location: http://my.rsscache.com/blog.CAcert.org/feed/"); exit; ?>
|
||||||
<? /* <author>$row['who'] <nomail@nospam.sss></author> */ ?>
|
<? /* <author>$row['who'] <nomail@nospam.sss></author> */ ?>
|
||||||
<? header("Content-Type: application/xml");
|
<? header("Content-Type: application/xml");
|
||||||
?><<?="?"?>xml version="1.0" encoding="UTF-8" <?="?"?>>
|
?><<?="?"?>xml version="1.0" encoding="UTF-8" <?="?"?>>
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `expire`<=NOW()"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `expire`<=NOW()"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts` where `revoked`=0 and `expire`>NOW()"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `orgdomaincerts` where `revoked`=0 and `expire`>NOW()"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts` where `revoked`=0 and `expire`>NOW()"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `orgemailcerts` where `revoked`=0 and `expire`>NOW()"));
|
||||||
$totalassurers = tc(mysql_query("select count(`id`) as `count` from notary group by `to` having sum(`points`) >= 100"));
|
$totalassurers = mysql_num_rows(mysql_query("select `to` from notary group by `to` having sum(`points`) >= 100"));
|
||||||
?>
|
?>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Valid Certificates")?>:</td>
|
<td class="DataTD"><?=_("Valid Certificates")?>:</td>
|
||||||
|
@ -55,12 +55,11 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Users with 1-49 Points")?>:</td>
|
<td class="DataTD"><?=_("Users with 1-49 Points")?>:</td>
|
||||||
<td class="DataTD"><?=number_format(tc(mysql_query(
|
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select `to` from `notary` group by `to` having sum(`points`) > 0 and sum(`points`) < 50")))?></td>
|
||||||
"select count(`id`) as `count` from `notary` group by `to` having sum(`points`) > 0 and sum(`points`) < 50")))?></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Users with 50-99 Points")?>:</td>
|
<td class="DataTD"><?=_("Users with 50-99 Points")?>:</td>
|
||||||
<td class="DataTD"><?=number_format(tc(mysql_query("select count(`id`) as `count` from `notary` group by `to` having sum(`points`) >= 50 and sum(`points`) < 100")))?></td>
|
<td class="DataTD"><?=number_format(mysql_num_rows(mysql_query("select `to` from `notary` group by `to` having sum(`points`) >= 50 and sum(`points`) < 100")))?></td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="DataTD"><?=_("Assurers")?>:</td>
|
<td class="DataTD"><?=_("Assurers")?>:</td>
|
||||||
|
@ -85,7 +84,7 @@
|
||||||
<? for($i = 0; $i < 12; $i++) {
|
<? for($i = 0; $i < 12; $i++) {
|
||||||
$date = date("Y-m", mktime(0,0,0,date("m") - $i,1,date("Y")));
|
$date = date("Y-m", mktime(0,0,0,date("m") - $i,1,date("Y")));
|
||||||
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$date%' and `verified`=1"));
|
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$date%' and `verified`=1"));
|
||||||
$totassurers += $assurers = tc(mysql_query("select count(`id`) as `count` from `notary` where `when` like '$date%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
|
$totassurers += $assurers = mysql_num_rows(mysql_query("select `to` from `notary` where `when` like '$date%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
|
||||||
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$date%'"));
|
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$date%'"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$date%'"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$date%'"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$date%'"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$date%'"));
|
||||||
|
@ -122,7 +121,7 @@
|
||||||
$totalcerts = $totalusers = $totassurers = 0;
|
$totalcerts = $totalusers = $totassurers = 0;
|
||||||
for($i = date("Y"); $i >= 2002; $i--) {
|
for($i = date("Y"); $i >= 2002; $i--) {
|
||||||
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$i%' and `verified`=1"));
|
$totalusers += $users = tc(mysql_query("select count(`id`) as `count` from `users` where `created` like '$i%' and `verified`=1"));
|
||||||
$totassurers += $assurers = tc(mysql_query("select count(`id`) as `count` from `notary` where `when` like '$i%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
|
$totassurers += $assurers = mysql_num_rows(mysql_query("select `to` from `notary` where `when` like '$i%' and `method`!='Administrative Increase' group by `to` having sum(`points`) >= 100"));
|
||||||
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$i%'"));
|
$certs = tc(mysql_query("select count(`id`) as `count` from `domaincerts` where `created` like '$i%'"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$i%'"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `emailcerts` where `created` like '$i%'"));
|
||||||
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$i%'"));
|
$certs += tc(mysql_query("select count(`id`) as `count` from `gpg` where `issued` like '$i%'"));
|
||||||
|
|
|
@ -560,3 +560,39 @@ td.greytxt {
|
||||||
font-weight: BOLD;
|
font-weight: BOLD;
|
||||||
color: #FF0000;
|
color: #FF0000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ac_menu
|
||||||
|
{
|
||||||
|
border:1px solid black
|
||||||
|
}
|
||||||
|
.ac_normal
|
||||||
|
{
|
||||||
|
background-color:#ffffff;
|
||||||
|
cursor:pointer;
|
||||||
|
}
|
||||||
|
.ac_highlight
|
||||||
|
{
|
||||||
|
background-color:#3366cc;
|
||||||
|
color:white;
|
||||||
|
cursor:pointer;
|
||||||
|
}
|
||||||
|
.ac_normal .a
|
||||||
|
{
|
||||||
|
font-size:13px;
|
||||||
|
color:black;
|
||||||
|
}
|
||||||
|
.ac_highlight .a
|
||||||
|
{
|
||||||
|
font-size:13px;
|
||||||
|
}
|
||||||
|
.ac_normal .d
|
||||||
|
{
|
||||||
|
float:right;
|
||||||
|
font-size:10px;
|
||||||
|
color:green;
|
||||||
|
}
|
||||||
|
.ac_highlight .d
|
||||||
|
{
|
||||||
|
float:right;
|
||||||
|
font-size:10px;
|
||||||
|
}
|
||||||
|
|
|
@ -189,6 +189,7 @@
|
||||||
$pdf->AddPage();
|
$pdf->AddPage();
|
||||||
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['date']);
|
$pdf->Body($_GET['name'], $_GET['dob'], $_GET['email'], $_GET['date']);
|
||||||
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
|
header("Expires: ".gmdate("D, j M Y G:i:s \G\M\T", time()+10800));
|
||||||
|
header("Content-Disposition: attachment; filename=ttp.pdf");
|
||||||
header("Cache-Control: public, max-age=10800");
|
header("Cache-Control: public, max-age=10800");
|
||||||
header("Pragma: cache");
|
header("Pragma: cache");
|
||||||
$pdf->output();
|
$pdf->output();
|
||||||
|
|
|
@ -23,6 +23,11 @@
|
||||||
if($_POST['location'] != "")
|
if($_POST['location'] != "")
|
||||||
$_SESSION['_config']['location'] = $_POST['location'];
|
$_SESSION['_config']['location'] = $_POST['location'];
|
||||||
|
|
||||||
|
if($oldid == 12)
|
||||||
|
{
|
||||||
|
$id = $oldid;
|
||||||
|
}
|
||||||
|
|
||||||
if(($id == 5 || $oldid == 5 || $id == 6 || $oldid == 6) && $_SESSION['profile']['points'] < 100)
|
if(($id == 5 || $oldid == 5 || $id == 6 || $oldid == 6) && $_SESSION['profile']['points'] < 100)
|
||||||
{
|
{
|
||||||
showheader(_("My CAcert.org Account!"));
|
showheader(_("My CAcert.org Account!"));
|
||||||
|
@ -170,7 +175,7 @@
|
||||||
$res = mysql_query($query);
|
$res = mysql_query($query);
|
||||||
$row = mysql_fetch_assoc($res);
|
$row = mysql_fetch_assoc($res);
|
||||||
$name = $row['fname']." ".$row['mname']." ".$row['lname']." ".$row['suffix'];
|
$name = $row['fname']." ".$row['mname']." ".$row['lname']." ".$row['suffix'];
|
||||||
if($_SESSION['_config']['wothash'] != md5($name."-".$row['dob']))
|
if($_SESSION['_config']['wothash'] != md5($name."-".$row['dob']) || $_SESSION['_config']['wothash'] != $_REQUEST['pagehash'])
|
||||||
{
|
{
|
||||||
$id = $oldid;
|
$id = $oldid;
|
||||||
unset($oldid);
|
unset($oldid);
|
||||||
|
|
Loading…
Reference in a new issue