You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/pages/index/0.php

107 lines
3.9 KiB
PHTML

<? /*
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.
*/ ?>
<h3><?=_("Are you new to CAcert?")?></h3>
<p><?=sprintf(_("If you want to have free certificates issued to you, join the %s CAcert Community %s."),"<a href=\"https://www.cacert.org/index.php?id=1\">","</a>")?></p>
<p><?=sprintf(_("If you want to use certificates issued by CAcert, read the CAcert %s Disclaimer and Licence %s."),'<a href="/policy/NRPDisclaimerAndLicence.php">',"</a>")?>
<?=sprintf(_("This licence applies to using the CAcert %s root keys %s."),'<a href="/index.php?id=3">','</a>')?></p>
<h3><?=_("For CAcert Members")?></h3>
<p><?=sprintf(_("Have you passed the CAcert %s Assurer Challenge %s yet?"),'<a href="http://wiki.cacert.org/wiki/AssurerChallenge">','</a>')?></p>
<p><?=sprintf(_("Have you read the CAcert %sCommunity Agreement%s yet?"),'<a href="/policy/CAcertCommunityAgreement.php">','</a>')?></p>
<p><?=sprintf(_("For general documentation and help, please visit the CAcert %sWiki Documentation site %s."),'<a href="http://wiki.CAcert.org">','</a>')?>
<?=sprintf(_("For specific policies, see the CAcert %sApproved Policies page%s."),'<a href="/policy/">',"</a>")?></p>
<!--
<h3><?=_("Introduction")?></h3>
<p><?=_("It's been a long time coming, but the wait was worthwhile, finally you are able to get security at the right price... Free!")?></p>
<p><?=_("For years we've all been charged high amounts of money to pay for security that doesn't and shouldn't cost the earth.")?></p>
<p><?=_("The primary goals are:")?>
<ul>
<li><?=_("Inclusion into mainstream browsers!")?></li>
<li><?=_("To provide a trust mechanism to go with the security aspects of encryption.")?></li>
</ul>
<p><?=sprintf(_("For general documentation and help please see our %s site"), "<a href='http://wiki.CAcert.org'>"._("Wiki Documentation")."</a>")?>.</p>
-->
<div class="newsbox">
<?
19 years ago
/*
$query = "select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 5";
$res = mysql_query($query);
while($row = mysql_fetch_assoc($res))
{
echo "<p><b>".date("Y-m-d", $row['TS'])."</b> - ".$row['short']."</p>\n";
if($row['story'] != "")
echo "<p>[ <a href='news.php?id=".$row['id']."'>"._("Full Story")."</a> ]</p>\n";
}
if(mysql_num_rows(mysql_query("select * from `news`")) > 2)
echo "<p>[ <a href='news.php'>"._("More News Items")."</a> ]</p>";
19 years ago
*/
19 years ago
$rss = "";
19 years ago
$open = $items = 0;
$fp = @fopen("/www/pages/index/feed.rss", "r");
18 years ago
if($fp)
19 years ago
{
echo '<p><u>'._('Latest News').'</u></p>';
19 years ago
18 years ago
while(!feof($fp))
$rss .= trim(fgets($fp, 4096));
fclose($fp);
$rss = str_replace("><", ">\n<", $rss);
$lines = explode("\n", $rss);
foreach($lines as $line)
19 years ago
{
18 years ago
$line = trim($line);
19 years ago
18 years ago
if($line != "<item>" && $open == 0)
continue;
if($line == "<item>" && $open == 0)
{
$open = 1;
continue;
}
if($line == "</item>" && $open == 1)
{
$items++;
if($items >= 3)
18 years ago
break;
$open == 0;
continue;
}
if(substr($line, 0, 7) == "<title>")
echo "<h3>".str_replace("&amp;#", "&#", recode_string("UTF8..html", str_replace("&amp;", "", trim(substr($line, 7, -8)))))."</h3>\n";
if(substr($line, 0, 13) == "<description>")
echo "<p>".str_replace("&amp;#", "&#", recode_string("UTF8..html", str_replace("&amp;", "", 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";
19 years ago
}
}
?>
[ <a href="http://blog.CAcert.org/"><?=_('More News Items')?></a> ]
</div>