2004-10-16 00:28:17 +00:00
< ? /*
2008-04-06 19:45:09 +00:00
LibreSSL - CAcert web application
Copyright ( C ) 2004 - 2008 CAcert Inc .
2004-10-16 00:28:17 +00:00
2008-04-06 19:45:09 +00:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; version 2 of the License .
2004-10-16 00:28:17 +00:00
2008-04-06 19:45:09 +00:00
This program 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 General Public License for more details .
2004-10-16 00:28:17 +00:00
2008-04-06 19:45:09 +00:00
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 USA
2004-10-16 00:28:17 +00:00
*/ ?>
2008-03-14 17:18:45 +00:00
< 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>
<!--
2004-10-16 00:28:17 +00:00
< 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 >
2008-03-14 17:18:45 +00:00
2007-11-17 21:27:13 +00:00
< p >< ? = sprintf ( _ ( " For general documentation and help please see our %s site " ), " <a href='http://wiki.CAcert.org'> " . _ ( " Wiki Documentation " ) . " </a> " ) ?> .</p>
2008-03-14 17:18:45 +00:00
-->
< div class = " newsbox " >
2004-10-16 00:28:17 +00:00
< ?
2005-12-04 21:04:05 +00:00
/*
2005-03-12 19:40:24 +00:00
$query = " select *, UNIX_TIMESTAMP(`when`) as `TS` from news order by `when` desc limit 5 " ;
2004-10-16 00:28:17 +00:00
$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' ] != " " )
2005-07-01 13:12:14 +00:00
echo " <p>[ <a href='news.php?id= " . $row [ 'id' ] . " '> " . _ ( " Full Story " ) . " </a> ]</p> \n " ;
2004-10-16 00:28:17 +00:00
}
if ( mysql_num_rows ( mysql_query ( " select * from `news` " )) > 2 )
2005-07-01 13:12:14 +00:00
echo " <p>[ <a href='news.php'> " . _ ( " More News Items " ) . " </a> ]</p> " ;
2005-12-04 21:04:05 +00:00
*/
2006-03-05 11:18:16 +00:00
$rss = " " ;
2005-12-04 21:04:05 +00:00
$open = $items = 0 ;
2007-03-12 14:27:16 +00:00
$fp = @ fopen ( " /www/pages/index/feed.rss " , " r " );
2006-08-17 22:11:00 +00:00
if ( $fp )
2005-12-04 21:04:05 +00:00
{
2008-03-14 17:18:45 +00:00
echo '<p><u>' . _ ( 'Latest News' ) . '</u></p>' ;
2005-12-04 21:04:05 +00:00
2006-08-17 22:11:00 +00:00
while ( ! feof ( $fp ))
$rss .= trim ( fgets ( $fp , 4096 ));
fclose ( $fp );
$rss = str_replace ( " >< " , " > \n < " , $rss );
$lines = explode ( " \n " , $rss );
foreach ( $lines as $line )
2005-12-04 21:04:05 +00:00
{
2006-08-17 22:11:00 +00:00
$line = trim ( $line );
2005-12-04 21:04:05 +00:00
2006-08-17 22:11:00 +00:00
if ( $line != " <item> " && $open == 0 )
continue ;
if ( $line == " <item> " && $open == 0 )
{
$open = 1 ;
continue ;
}
if ( $line == " </item> " && $open == 1 )
{
$items ++ ;
2007-04-04 12:25:31 +00:00
if ( $items >= 3 )
2006-08-17 22:11:00 +00:00
break ;
$open == 0 ;
continue ;
}
if ( substr ( $line , 0 , 7 ) == " <title> " )
echo " <h3> " . str_replace ( " &# " , " &# " , recode_string ( " UTF8..html " , str_replace ( " & " , " " , trim ( substr ( $line , 7 , - 8 ))))) . " </h3> \n " ;
if ( substr ( $line , 0 , 13 ) == " <description> " )
echo " <p> " . str_replace ( " &# " , " &# " , recode_string ( " UTF8..html " , str_replace ( " & " , " " , 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 " ;
2005-12-04 21:04:05 +00:00
}
}
2004-10-16 00:28:17 +00:00
?>
2008-03-14 17:18:45 +00:00
[ < a href = " http://blog.CAcert.org/ " >< ? = _ ( 'More News Items' ) ?> </a> ]
</ div >