1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
|
<?php
/**
*
* SourceForge Exports
*
* SourceForge: Breaking Down the Barriers to Open Source Development
* Copyright 1999-2001 (c) VA Linux Systems
* http://sourceforge.net
*
* @version $Id: index.php 5046 2005-12-01 14:15:42Z danper $
*
*/
require_once('pre.php');
$HTML->header(array(title=>"Exports Available"));
?>
<p><?php echo $GLOBALS['sys_name']; ?> data is exported in a variety of standard formats. Many of
the export URLs can also accept form/get data to customize the output. All
data generated by these pages is realtime.</p>
<h3>
RSS/XML Exports
</h3>
<h4>News Data</h4>
<ul>
<li><a href="rss_sfnews.php"><?php echo $GLOBALS['sys_name']; ?> Front Page/Project News</a>
(<a href="http://web.resource.org/rss/1.0/spec">RSS 1.0</a>)</li>
<li><a href="rss_sfnewreleases.php"><?php echo $GLOBALS['sys_name']; ?> New Releases</a>
(<a href="http://my.netscape.com/publish/formats/rss-spec-0.91.html">RSS 0.91</a>,
<a href="http://my.netscape.com/publish/formats/rss-0.91.dtd"><rss-0.91.dtd></a>)</li>
</ul>
<ul>
<li><a href="rss20_news.php"><?php print $GLOBALS[sys_name] ?> Front Page News/Project News</a>
(<a href="http://blogs.law.harvard.edu/tech/rss">RSS 2.0</a>)
<li><a href="rss20_newreleases.php"><?php print $GLOBALS[sys_name] ?> New Releases/New Project Releases</a>
(<a href="http://blogs.law.harvard.edu/tech/rss">RSS 2.0</a>)</li>
</ul>
<h4>Site Information</h4>
<ul>
<li><a href="rss_sfprojects.php"><?php echo $GLOBALS['sys_name']; ?> Full Project Listing</a>
(<a href="http://my.netscape.com/publish/formats/rss-spec-0.91.html">RSS 0.91</a>,
<a href="http://my.netscape.com/publish/formats/rss-0.91.dtd"><rss-0.91.dtd></a>)</li>
<li><A href="rss20_projects.php"><?php print $GLOBALS[sys_name] ?> Full Project Listing</a>
(<a href="http://blogs.law.harvard.edu/tech/rss">RSS 2.0</a>)</li>
<li><a href="trove_tree.php"><?php echo $GLOBALS['sys_name']; ?> Trove Categories Tree</a>
(<a href="http://www.w3.org/XML">XML</a>,<a href="trove_tree_0.1.dtd"><trove_tree_0.1.dtd></a>)</li>
</ul>
<h4>Project Information</h4>
<p>
All links below require <tt>?group_id=</tt> parameter with id of specific
group. Exports which provide en masse access to data which otherwise
project property, require project admin privilege.
</p>
<ul>
<li><a href="forum.php">Project Forums</a>(<a href="forum_0.1.dtd"><forum_0.1.dtd></a>)</li>
</ul>
<!--
<ul>
<li><a href="bug_dump.php">Project Bugs</a>(<a href="bug_0.1.dtd"><bug_0.1.dtd></a>)</li>
<li><a href="patch_dump.php">Project Patches</a>(<a href="patch_0.1.dtd"><patch_0.1.dtd></a>)</li>
</ul>
-->
<h3>
HTML Exports
</h3>
<p>
While XML data allows for arbitrary processing and formatting, many
projects will find ready-to-use HTML exports suitable for their needs.
For details, check <a href="http://sourceforge.net/docman/display_doc.php?docid=1502&group_id=1">this</a> out.
</p>
<?php
$HTML->footer(array());
?>
|