gaim/www

(21:23:17) SimGuy: LSchiere: why is it that gaim-ssl.txt is not a web page?
(21:23:36) LSchiere: SimGuy: because i don't know how to use the includes
and engines ChipX86|Coding wrote
(21:23:47) LSchiere: and so i just committed the file nosnilmot gave me
(21:24:10) nosnilmot: SimGuy: http://gaim.nosnilmot.com/faq-ssl.php
(21:24:21) nosnilmot: LSchiere: do you want that?
(21:24:40) nosnilmot: SimGuy: because I was a lazy sod originally
(21:25:01) SimGuy: nosnilmot: haha, that's exactly the sort of thing i
meant
(21:25:12) ***LSchiere blinks
(21:25:18) LSchiere: nosnilmot: yes i would
(21:26:18) nosnilmot: LSchiere:
(21:26:45) nosnilmot: LSchiere: it fixinates a couple of too for goodness


Christian, if this isn't correct, just revert it and we'll have nosnilmot
fix it ;-)
<?php
require "base.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"
),
"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();
?>