Initial creation.
This commit is contained in:
629
html/dvp/dvp.php
Normal file
629
html/dvp/dvp.php
Normal file
@@ -0,0 +1,629 @@
|
||||
<?
|
||||
// $RCSfile: dvp.php,v $
|
||||
// $Revision: 1.1 $
|
||||
// $Name: $
|
||||
// $Date: 2008/09/04 16:00:45 $
|
||||
// $Author: agibert $
|
||||
|
||||
/*
|
||||
* DvpBrowse - Development Project Browser
|
||||
* Copyright (C) 2008 Arnaud G. Gibert
|
||||
* mailto:arnaud@rx3.net
|
||||
* http://www.rx3.org/dvp/dvpbrowse
|
||||
*
|
||||
* 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; either version 2
|
||||
* of the License, or any later version.
|
||||
*
|
||||
* 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.
|
||||
*
|
||||
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
function microtime_float()
|
||||
{
|
||||
list($usec, $sec) = explode(" ", microtime());
|
||||
return ((float)$usec + (float)$sec);
|
||||
}
|
||||
|
||||
$time_start = microtime_float();
|
||||
|
||||
|
||||
|
||||
include "/var/httpd/www.rx3.org/html/dvp/dvp_config.inc";
|
||||
|
||||
$dvp_myname="DvpBrowse";
|
||||
$dvp_tag_tab=explode( " ", "$Name: $");
|
||||
$dvp_tag_tab=explode( "-", $dvp_tag_tab[1]);
|
||||
$dvp_myver=strtr( "$dvp_tag_tab[1]-$dvp_tag_tab[2]", "_", ".");
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_get_section( $dvp_id_lookup)
|
||||
{
|
||||
global $dvp_tab;
|
||||
|
||||
|
||||
foreach( $dvp_tab as $section_id => $value)
|
||||
{
|
||||
$dvp=$dvp_tab[$section_id]["dvp"];
|
||||
|
||||
foreach( $dvp as $dvp_id => $value)
|
||||
{
|
||||
if( $dvp_id == $dvp_id_lookup)
|
||||
{
|
||||
return $section_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_get_name( $dvp_id_lookup)
|
||||
{
|
||||
global $dvp_tab;
|
||||
|
||||
|
||||
foreach( $dvp_tab as $section_id => $value)
|
||||
{
|
||||
$dvp=$dvp_tab[$section_id]["dvp"];
|
||||
|
||||
foreach( $dvp as $dvp_id => $value)
|
||||
{
|
||||
if( $dvp_id == $dvp_id_lookup)
|
||||
{
|
||||
return $dvp[$dvp_id]["name"];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_get_reqby( $dvp_id_lookup)
|
||||
{
|
||||
global $dvp_tab;
|
||||
|
||||
foreach( $dvp_tab as $section_id => $value)
|
||||
{
|
||||
$dvp=$dvp_tab[$section_id]["dvp"];
|
||||
|
||||
foreach( $dvp as $dvp_id => $value)
|
||||
{
|
||||
$depend=$dvp[$dvp_id]["depend"];
|
||||
|
||||
if( $depend != "")
|
||||
{
|
||||
foreach( $depend as $depend_id)
|
||||
{
|
||||
if( $depend_id == $dvp_id_lookup)
|
||||
{
|
||||
$reqby[]=$dvp_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return $reqby;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_main_header( $name)
|
||||
{
|
||||
$page_name="$name";
|
||||
$page_title="$page_name !";
|
||||
global $dvp_tab;
|
||||
global $dvp_header;
|
||||
global $dvp_keywords;
|
||||
|
||||
|
||||
$keywords="$dvp_keywords";
|
||||
|
||||
foreach( $dvp_tab as $section_id => $value)
|
||||
{
|
||||
foreach( $dvp_tab[$section_id]["dvp"] as $dvp_id => $value)
|
||||
{
|
||||
$keywords="$keywords,$dvp_id";
|
||||
}
|
||||
}
|
||||
|
||||
include "$dvp_header";
|
||||
|
||||
echo " <META NAME=\"keywords\" CONTENT=\"$keywords\">
|
||||
<TITLE>$page_name</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1>$page_title</H1>
|
||||
|
||||
<H5><A HREF=\"..\">Rx3.Org Main Page</A></H5>
|
||||
|
||||
<HR>
|
||||
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_main_body( $dvp_tab)
|
||||
{
|
||||
global $dvp_download_http_url;
|
||||
global $dvp_download_ftp_url;
|
||||
global $dvp_cvsweb_url;
|
||||
|
||||
|
||||
echo " <P>
|
||||
<BR>
|
||||
<BR>
|
||||
</P>
|
||||
";
|
||||
|
||||
foreach( $dvp_tab as $section_id => $value)
|
||||
{
|
||||
$section_name=$dvp_tab[$section_id]["name"];
|
||||
$dvp=$dvp_tab[$section_id]["dvp"];
|
||||
|
||||
echo " <H3>$section_name</H3>
|
||||
<UL>
|
||||
";
|
||||
|
||||
foreach( $dvp as $dvp_id => $value)
|
||||
{
|
||||
$dvp_name=$dvp[$dvp_id]["name"];
|
||||
$dvp_summary=$dvp[$dvp_id]["summary"];
|
||||
$dvp_listbrk=$dvp[$dvp_id]["listbrk"];
|
||||
|
||||
if( $dvp_listbrk == "yes")
|
||||
{
|
||||
$dvp_cl="chap1";
|
||||
}
|
||||
else
|
||||
{
|
||||
$dvp_cl="chap2";
|
||||
}
|
||||
|
||||
echo " <LI CLASS=\"$dvp_cl\"><A HREF=\"?dvp=$dvp_id\">$dvp_name</A>: $dvp_summary</LI>
|
||||
";
|
||||
}
|
||||
|
||||
echo " </UL>
|
||||
<P>
|
||||
<BR>
|
||||
<BR>
|
||||
</P>
|
||||
";
|
||||
}
|
||||
|
||||
echo "
|
||||
<HR>
|
||||
|
||||
<H5>";
|
||||
|
||||
echo "<A HREF=\"$dvp_download_http_url\">Rx3 Free Software Development HTTP download page</A> ";
|
||||
echo "<A HREF=\"$dvp_download_ftp_url\">Rx3 Free Software Development FTP download page</A> ";
|
||||
echo "<A HREF=\"$dvp_cvsweb_url\">Rx3 Free Software CVS Web</A></H5>
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_main_page()
|
||||
{
|
||||
global $dvp_tab;
|
||||
|
||||
|
||||
dvp_main_header( "Rx3 Free Software Development Main Page");
|
||||
dvp_main_body( $dvp_tab);
|
||||
dvp_footer();
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_header( $id, $name, $summary, $curver)
|
||||
{
|
||||
$page_name="$name Home Page";
|
||||
$page_title="$page_name !";
|
||||
global $dvp_url;
|
||||
global $dvp_header;
|
||||
global $dvp_keywords;
|
||||
$keywords="$dvp_keywords,$id";
|
||||
|
||||
|
||||
include "$dvp_header";
|
||||
|
||||
echo " <META NAME=\"keywords\" CONTENT=\"$keywords\">
|
||||
<TITLE>$page_name</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1>$page_title</H1>
|
||||
<H4>$summary</H4>
|
||||
<H4>$curver</H4>
|
||||
|
||||
<H5><A HREF=\"..\">Rx3.Org Main Page</A> / <A HREF=\"$dvp_url\">Rx3 Free Software Development Main Page</A></H5>
|
||||
|
||||
<HR>
|
||||
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_body( $id, $name, $description, $depend, $freshmeat, $curver)
|
||||
{
|
||||
global $dvp_download_http_url;
|
||||
global $dvp_download_ftp_url;
|
||||
global $dvp_cvsweb_url;
|
||||
global $dvp_freshmeat_url;
|
||||
|
||||
|
||||
echo " <P>
|
||||
<BR>
|
||||
<BR>
|
||||
|
||||
$description
|
||||
<BR>
|
||||
<BR>
|
||||
";
|
||||
|
||||
if( $depend != "")
|
||||
{
|
||||
echo " <BR>
|
||||
</P>
|
||||
<H5>Dependend on:</H5>
|
||||
<P>
|
||||
";
|
||||
|
||||
foreach( $depend as $dep_id)
|
||||
{
|
||||
$dep_name=dvp_get_name( $dep_id);
|
||||
echo "<A HREF=\"?dvp=$dep_id\">$dep_name</A> ";
|
||||
}
|
||||
}
|
||||
|
||||
$reqby=dvp_get_reqby( $id);
|
||||
|
||||
if( $reqby != "")
|
||||
{
|
||||
echo " <BR>
|
||||
</P>
|
||||
<H5>Required by:</H5>
|
||||
<P>
|
||||
";
|
||||
|
||||
foreach( $reqby as $dep_id)
|
||||
{
|
||||
$dep_name=dvp_get_name( $dep_id);
|
||||
echo "<A HREF=\"?dvp=$dep_id\">$dep_name</A> ";
|
||||
}
|
||||
}
|
||||
|
||||
echo " </P>
|
||||
";
|
||||
|
||||
if( $curver != "")
|
||||
{
|
||||
$cmd="tar xOzf download/$id/$id-$curver.src.tgz $id-$curver/ReleaseNotes.txt|awk 'BEGIN {go=0; skip=0;} /---------/ {go+=1; skip=1} /^$/ {if(go > 0) go+=1;} {if( ( skip != 1) && ( go > 0) && ( go < 4)) { print $0;} else skip=0;}'";
|
||||
exec( $cmd, $rn_tab);
|
||||
|
||||
echo " <P>
|
||||
<BR>
|
||||
</P>
|
||||
|
||||
<HR>
|
||||
<H5>Last Release Notes: $rn_tab[0]</H5>
|
||||
";
|
||||
|
||||
echo " <PRE>
|
||||
";
|
||||
for( $i = 1; $i < count($rn_tab); $i++)
|
||||
{
|
||||
echo "$rn_tab[$i]\n";
|
||||
}
|
||||
|
||||
echo " </PRE>
|
||||
";
|
||||
}
|
||||
|
||||
echo" <HR>
|
||||
<H5>";
|
||||
|
||||
if( $curver != "")
|
||||
{
|
||||
echo "<A HREF=\"?dvp=$id&rn=yes\">$name release notes page</A> ";
|
||||
echo "<A HREF=\"?dvp=$id&rm=yes\">$name readme page</A> ";
|
||||
}
|
||||
|
||||
echo "<A HREF=\"$dvp_download_http_url/$id\">$name HTTP download page</A> ";
|
||||
echo "<A HREF=\"$dvp_download_ftp_url/$id\">$name FTP download page</A> ";
|
||||
echo "<A HREF=\"$dvp_cvsweb_url/$id\">$name CVS Web</A>";
|
||||
|
||||
if( $freshmeat == "yes")
|
||||
{
|
||||
echo " <A HREF=\"$dvp_freshmeat_url/$id/\">$name FreshMeat page</A>
|
||||
";
|
||||
}
|
||||
echo "</H5>";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_footer()
|
||||
{
|
||||
global $dvp_myname;
|
||||
global $dvp_myver;
|
||||
global $dvp_footer;
|
||||
global $time_start;
|
||||
|
||||
|
||||
include "$dvp_footer";
|
||||
|
||||
$time_stop = microtime_float();
|
||||
$time_elaps = intval( ( $time_stop - $time_start) * 1000) / 1000;
|
||||
|
||||
echo " </P>
|
||||
";
|
||||
echo " <H6>Page generated in $time_elaps seconds by $dvp_myname V $dvp_myver</H6>";
|
||||
|
||||
echo" </BODY>
|
||||
</HTML>
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_page( $dvp_id, $dvp_name, $dvp_summary, $dvp_description, $depend, $dvp_freshmeat)
|
||||
{
|
||||
$cmd="ls download/$dvp_id/$dvp_id*.src.tgz | sed -e 's/.*$dvp_id-//' -e 's/.src.tgz//'";
|
||||
$dvp_curver=exec($cmd);
|
||||
|
||||
dvp_header( $dvp_id, $dvp_name, $dvp_summary, $dvp_curver);
|
||||
dvp_body( $dvp_id, $dvp_name, $dvp_description, $depend, $dvp_freshmeat, $dvp_curver);
|
||||
dvp_footer();
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rn_header( $id, $name, $curver)
|
||||
{
|
||||
$page_name="$name Release Notes Page";
|
||||
$page_title="$page_name";
|
||||
global $dvp_url;
|
||||
global $dvp_header;
|
||||
global $dvp_keywords;
|
||||
$keywords="$dvp_keywords,$id, $id release notes";
|
||||
|
||||
|
||||
include "$dvp_header";
|
||||
|
||||
echo " <META NAME=\"keywords\" CONTENT=\"$keywords\">
|
||||
<TITLE>$page_name</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1>$page_title</H1>
|
||||
<H4>$curver</H4>
|
||||
|
||||
<H5><A HREF=\"..\">Rx3.Org Main Page</A> / <A HREF=\"$dvp_url\">Rx3 Free Software Development Main Page</A> / <A HREF=\"$dvp_url?dvp=$id\">$name Home Page</A></H5>
|
||||
|
||||
<HR>
|
||||
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rn_body( $id, $name, $curver)
|
||||
{
|
||||
if( $curver != "")
|
||||
{
|
||||
$cmd="tar xOzf download/$id/$id-$curver.src.tgz $id-$curver/ReleaseNotes.txt";
|
||||
exec( $cmd, $rn_tab);
|
||||
|
||||
echo " <PRE>
|
||||
";
|
||||
for( $i = 1; $i < count($rn_tab); $i++)
|
||||
{
|
||||
echo "$rn_tab[$i]\n";
|
||||
}
|
||||
}
|
||||
|
||||
echo " </PRE>
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rn_page( $dvp_id, $dvp_name)
|
||||
{
|
||||
$cmd="ls download/$dvp_id/$dvp_id*.src.tgz | sed -e 's/.*$dvp_id-//' -e 's/.src.tgz//'";
|
||||
$dvp_curver=exec($cmd);
|
||||
|
||||
dvp_rn_header( $dvp_id, $dvp_name, $dvp_curver);
|
||||
dvp_rn_body( $dvp_id, $dvp_name, $dvp_curver);
|
||||
dvp_footer();
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rm_header( $id, $name, $curver)
|
||||
{
|
||||
$page_name="$name Read Me Page";
|
||||
$page_title="$page_name";
|
||||
global $dvp_url;
|
||||
global $dvp_header;
|
||||
global $dvp_keywords;
|
||||
$keywords="$dvp_keywords,$id, $id release notes";
|
||||
|
||||
|
||||
include "$dvp_header";
|
||||
|
||||
echo " <META NAME=\"keywords\" CONTENT=\"$keywords\">
|
||||
<TITLE>$page_name</TITLE>
|
||||
</HEAD>
|
||||
|
||||
<BODY>
|
||||
<H1>$page_title</H1>
|
||||
<H4>$curver</H4>
|
||||
|
||||
<H5><A HREF=\"..\">Rx3.Org Main Page</A> / <A HREF=\"$dvp_url\">Rx3 Free Software Development Main Page</A> / <A HREF=\"$dvp_url?dvp=$id\">$name Home Page</A></H5>
|
||||
|
||||
<HR>
|
||||
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rm_body( $id, $name, $curver)
|
||||
{
|
||||
if( $curver != "")
|
||||
{
|
||||
$cmd="tar xOzf download/$id/$id-$curver.src.tgz $id-$curver/ReadMe.txt";
|
||||
exec( $cmd, $rm_tab);
|
||||
|
||||
echo " <PRE>
|
||||
";
|
||||
for( $i = 1; $i < count($rm_tab); $i++)
|
||||
{
|
||||
echo "$rm_tab[$i]\n";
|
||||
}
|
||||
}
|
||||
|
||||
echo " </PRE>
|
||||
";
|
||||
}
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
function dvp_rm_page( $dvp_id, $dvp_name)
|
||||
{
|
||||
$cmd="ls download/$dvp_id/$dvp_id*.src.tgz | sed -e 's/.*$dvp_id-//' -e 's/.src.tgz//'";
|
||||
$dvp_curver=exec($cmd);
|
||||
|
||||
dvp_rm_header( $dvp_id, $dvp_name, $dvp_curver);
|
||||
dvp_rm_body( $dvp_id, $dvp_name, $dvp_curver);
|
||||
dvp_footer();
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
if( $_GET["dvp"] == "")
|
||||
{
|
||||
dvp_main_page( $dvp_tab);
|
||||
}
|
||||
else
|
||||
{
|
||||
$dvp_id=$_GET["dvp"];
|
||||
|
||||
$section_id=dvp_get_section( $dvp_id);
|
||||
|
||||
$dvp_name=$dvp_tab[$section_id]["dvp"][$dvp_id]["name"];
|
||||
|
||||
if( $_GET["rn"] == "yes")
|
||||
{
|
||||
dvp_rn_page( $dvp_id, $dvp_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
if( $_GET["rm"] == "yes")
|
||||
{
|
||||
dvp_rm_page( $dvp_id, $dvp_name);
|
||||
}
|
||||
else
|
||||
{
|
||||
$dvp_summary=$dvp_tab[$section_id]["dvp"][$dvp_id]["summary"];
|
||||
$dvp_description=$dvp_tab[$section_id]["dvp"][$dvp_id]["description"];
|
||||
$dvp_depend=$dvp_tab[$section_id]["dvp"][$dvp_id]["depend"];
|
||||
$dvp_freshmeat=$dvp_tab[$section_id]["dvp"][$dvp_id]["freshmeat"];
|
||||
|
||||
dvp_page( $dvp_id, $dvp_name, $dvp_summary, $dvp_description, $dvp_depend, $dvp_freshmeat);
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
||||
166
html/dvp/dvp_config.inc
Normal file
166
html/dvp/dvp_config.inc
Normal file
@@ -0,0 +1,166 @@
|
||||
<?
|
||||
// $RCSfile: dvp_config.inc,v $
|
||||
// $Revision: 1.1 $
|
||||
// $Name: $
|
||||
// $Date: 2008/09/04 16:00:45 $
|
||||
// $Author: agibert $
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* Path and URL definitions */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
$dvp_path="/var/httpd/www.rx3.org/html/dvp";
|
||||
$dvp_url="/dvp/";
|
||||
$dvp_header="/var/httpd/www.rx3.org/html/dvp/header.html";
|
||||
$dvp_footer="/var/httpd/www.rx3.org/html/dvp/footer.html";
|
||||
$dvp_download_http_url="/dvp/download";
|
||||
$dvp_download_ftp_url="ftp://ftp.rx3.org/pub/arc/dvp";
|
||||
$dvp_cvsweb_url="/cgi-bin/viewcvs.cgi";
|
||||
$dvp_freshmeat_url="http://freshmeat.net/projects";
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* Keywords definitions */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
$dvp_keywords="rx3,rx3.org,rx3 developement,rx3 cvs,cvs,free software,open source,download";
|
||||
|
||||
|
||||
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
/* Development Application definitions */
|
||||
/*--------------------------------------------------------------------------------------------------------------------*/
|
||||
|
||||
$dvp_tab=array( "java_tools" => array ( "name" => "Java Tools",
|
||||
"dvp" => array ( "mqsload" => array( "name" => "MQSLoad",
|
||||
"summary" => "A simple tool to load messages from a file into a MQSeries queue",
|
||||
"description" => "MQSLoad is a simple java program which load messages red from a file into a MQSeries queue.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "yes"
|
||||
),
|
||||
"mqssave" => array( "name" => "MQSSave",
|
||||
"summary" => "A simple tool to save messages from a MQSeries queue into a file",
|
||||
"description" => "MQSSave is a simple java program which save messages red from a MQSeries queue into a file.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "yes"
|
||||
),
|
||||
"tslaunch" => array( "name" => "TSLaunch",
|
||||
"summary" => "A command launcher with a command line timestamp generation",
|
||||
"description" => "TSLaunch is simple java program which launch a sub-command whom some args are completed whith a timestamp. ",
|
||||
"depend" => "",
|
||||
"listbrk" => "yes",
|
||||
"freshmeat" => "no"
|
||||
)
|
||||
)
|
||||
),
|
||||
|
||||
"lib_prj" => array ( "name" => "Librarie Dev Projects",
|
||||
"dvp" => array ( "libver" => array( "name" => "LibVer",
|
||||
"summary" => "A runtime module versioning manager C library",
|
||||
"description" => "LibVer is a C library which manages enbeded version string into object files.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"libopt" => array( "name" => "LibOpt",
|
||||
"summary" => "A generic program option (cmd line / ini file / internal) manager C library",
|
||||
"description" => "LibOpt is a C library which manages options which can be setup internaly, in a .ini file or in the command line.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"libnode" => array( "name" => "LibNode",
|
||||
"summary" => "A generic list/tree manager C library",
|
||||
"description" => "LibNode is a C library which manages generic list and/or tree node structures.",
|
||||
"depend" => "",
|
||||
"listbrk" => "yes",
|
||||
"freshmeat" => "yes"
|
||||
),
|
||||
|
||||
"libshmem" => array( "name" => "LibShMem",
|
||||
"summary" => "A shared memory pool manager C library",
|
||||
"description" => "LibShMem is a C library which manages memory pools in shared memory. It's built over LibNode.",
|
||||
"depend" => array( "libnode"),
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"libdatastr" => array( "name" => "LibDataStr",
|
||||
"summary" => "An inter-proces generic list/tree manager C library",
|
||||
"description" => "LibDataStr is a C library which manages generic list and/or tree node structures inter-process sharable. It's built over LibNode and libShMem.",
|
||||
"depend" => array( "libnode", "libshmem"),
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"libmsg" => array( "name" => "LibMsg",
|
||||
"summary" => "An inter-process messaging system C library",
|
||||
"description" => "LibMsg is a C library which manages messages exchange between message ports inter-process sharable. It's built over LibNode, libShMem and libDataStr.",
|
||||
"depend" => array( "libnode", "libshmem", "libdatastr"),
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"liblog" => array( "name" => "LibLog",
|
||||
"summary" => "A centralized and controled inter-proces log manager C library",
|
||||
"description" => "LibLog is a C library which manages inter-process log in a distributed environment. It's built over LibNode, libShMem, libDataStr and libMsg.",
|
||||
"depend" => array( "libnode", "libshmem", "libdatastr", "libmsg"),
|
||||
"listbrk" => "yes",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
|
||||
"libdatabase" => array( "name" => "LibDatabase",
|
||||
"summary" => "An Oracle OCI frontend C library",
|
||||
"description" => "LibDatabase is a C library which offers an interface between Oracle OCI API and a C program.",
|
||||
"depend" => "",
|
||||
"listbrk" => "yes",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
)
|
||||
),
|
||||
|
||||
"web_prj" => array ( "name" => "Web Projects",
|
||||
"dvp" => array ( "dvpbrowse" => array( "name" => "DvpBrowse",
|
||||
"summary" => "Development Project Browser",
|
||||
"description" => "DvpBrowse is a small php script which gerates dynamicaly some HTML pages in order to browse a list of development project.<BR>
|
||||
<BR>
|
||||
These development projects are grouped by sections. Each project have got a home page which displays some informations (version, summary, ...) and provides some internal and external links (release notes file, readme file, download, cvs browse, freshmeat, ..). The displayed informations are extracted from the configuration file and development tarball.<BR>
|
||||
<BR>
|
||||
This script has been made inorder to browse the \"Rx3 Free Software Development Pages\" on http://www.rx3.org.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
),
|
||||
"pkgbrowse" => array( "name" => "PkgBrowse",
|
||||
"summary" => "Packaging Project Browser",
|
||||
"description" => "PkgBrowse is a small php script which gerates dynamicaly some HTML pages in order to browse a list of packaging project.<BR>
|
||||
<BR>
|
||||
These packaging projects are grouped by sections. Each project have got a home page which displays some informations (version, summary, last change log, sub packages,...) and provides some internal and external links (change log file, file list, download, ..). The displayed informations are extracted from the configuration file and RPM packages.<BR>
|
||||
<BR>
|
||||
This script has been made inorder to browse the \"Rx3 Free Software Packaging Pages\" on http://www.rx3.org.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
)
|
||||
)
|
||||
),
|
||||
|
||||
|
||||
"misc_prj" => array ( "name" => "Misc Dev Projects",
|
||||
"dvp" => array ( "eql_tools" => array( "name" => "Eql_Tools",
|
||||
"summary" => "Linux serial line Eql tools",
|
||||
"description" => "Eql_Tools is a set of tools controling linux serial line network load ballancing.",
|
||||
"depend" => "",
|
||||
"listbrk" => "no",
|
||||
"freshmeat" => "no"
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
);
|
||||
?>
|
||||
13
html/dvp/footer.html
Normal file
13
html/dvp/footer.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<HR>
|
||||
|
||||
<P>
|
||||
<A HREF="http://www.mandriva.com/"> <IMG SRC="/icons/mandriva.png" ALT="Powered by Mandriva Linux" class="PWR"> </A>
|
||||
<A HREF="http://www.advx.org/"> <IMG SRC="/icons/advx.png" ALT="Powered by Advx.org" > </A>
|
||||
<A HREF="http://www.apache.org/"> <IMG SRC="/icons/apache.png" ALT="Powered by Apache" > </A>
|
||||
<A HREF="http://www.modssl.org/"> <IMG SRC="/icons/mod_ssl.png" ALT="Powered by mod_ssl" > </A>
|
||||
<A HREF="http://www.postgresql.com/"> <IMG SRC="/icons/postgresql.png" ALT="Powered by PostgreSQL" > </A>
|
||||
<A HREF="http://www.mysql.com/"> <IMG SRC="/icons/mysql.png" ALT="Powered by MySQL" > </A>
|
||||
<A HREF="http://www.php.net/"> <IMG SRC="/icons/php.png" ALT="Powered by PHP" > </A>
|
||||
<A HREF="http://www.hertgen.com/anybrowser/"> <IMG SRC="/images/anyb09.png" ALT="Best Viewed With Any Browser" > </A>
|
||||
<A HREF="http://validator.w3.org/check?uri=referer"> <IMG SRC="http://www.w3.org/Icons/valid-html401" ALT="Valid HTML 4.01!" > </A>
|
||||
<A HREF="http://jigsaw.w3.org/css-validator/check?uri=referer"><IMG SRC="http://jigsaw.w3.org/css-validator/images/vcss" ALT="Valid CSS!" > </A>
|
||||
6
html/dvp/header.html
Normal file
6
html/dvp/header.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
||||
<HTML>
|
||||
<HEAD>
|
||||
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
|
||||
<LINK REL="shortcut icon" HREF="/favicon.ico" TYPE="image/x-icon">
|
||||
<LINK REL="stylesheet" TYPE="text/css" HREF="/default.css">
|
||||
Reference in New Issue
Block a user