gaim/www

Initial import into CVS
chipx86 start
2002-09-26, Christian Hammond
2b210e25fed4
Initial import into CVS
<?php
require "html.inc.php";
start_html("Plugins");
$plugins = array(
"gaim-e" => array(
"URL" => "http://gaim-e.sourceforge.net/",
"TEXT" => "Gaim-e Encryption Plugin"
),
"rusconv" => array(
"URL" => "http://sourceforge.net/projects/rusconv/",
"TEXT" => "KOI8-R &lt;-&gt; CP1251 Converter"
),
"Eric's Plugins" => array(
"URL" => "http://gaim.sourceforge.net/eric/",
"TEXT" => "Various plugins and patches Eric's written over the years"
),
);
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();
?>