gaim/www

people are dense
WITH_GTK12_ANSWERS
2004-01-19, Luke Schierer
522b8ea7e1b3
people are dense
<?php
require "base.inc.php";
start_html("Plugins");
$plugins = array(
"gaim-e" => array(
"URL" => "http://gaim-e.sourceforge.net/",
"TEXT" => "Gaim-e Encryption Plugin"
),
"gaim-blogger" => array(
"URL" => "http://gaim-blogger.sourceforge.net",
"TEXT" => "Makes use of Gaim's IM interface to post, edit, view and track blogs"
),
);
start_section("Plugins");
?>
<p>
Welcome to our plugins page! Here you'll find a listing of some of the plugins
available for Gaim written by Gaim users. There are other great ones listed in
the <a href="http://sourceforge.net/tracker/?atid=390395&group_id=235&func=browse">Plugins</a>
section on our SourceForge project page. Remember, the Protocol Plugins come
with Gaim.
</p>
<p>
<ul>
<?php
while (list($name, $data) = each($plugins)) {
print " <li>";
print "<a href=" . $data["URL"] . ">";
print $name;
print "</a> - ";
start_font();
print $data["TEXT"];
end_font();
print "</li><br />\n";
}
?>
</ul>
</p>
<p>
More to come later....
</p>
<?php
end_section();
end_html();
?>