|
From: <ai...@us...> - 2010-06-07 23:37:23
|
Revision: 11067
http://plplot.svn.sourceforge.net/plplot/?rev=11067&view=rev
Author: airwin
Date: 2010-06-07 23:37:17 +0000 (Mon, 07 Jun 2010)
Log Message:
-----------
Adjust for the fact that the SF projnews.php no longer works correctly
(it returns bad URL's for individual news items).
Add URL for our collected news page to horizontal menu bar.
Drop projnews.php results (which included individual news items plus
a link to our collected news page) from sidebar.
Put resources first on sidebar and source code last.
Modified Paths:
--------------
trunk/www/corefunctions.php
Modified: trunk/www/corefunctions.php
===================================================================
--- trunk/www/corefunctions.php 2010-06-07 22:11:40 UTC (rev 11066)
+++ trunk/www/corefunctions.php 2010-06-07 23:37:17 UTC (rev 11067)
@@ -40,6 +40,7 @@
echo ' <div id="menubar">';
echo ' <ul>';
echo ' <li><a href="index.php" ' . (($item=='index') ? ('id="selected"') : ('')) .'>Home</a></li>';
+ echo ' <li><a href="http://sourceforge.net/news/?group_id=2915" ' . (($item=='news') ? ('id="selected"') : ('')) .'>News</a></li>';
echo ' <li><a href="download.php" ' . (($item=='download') ? ('id="selected"') : ('')) .'>Download</a></li>';
echo ' <li><a href="examples.php" ' . (($item=='examples') ? ('id="selected"') : ('')) .'>Examples</a></li>';
echo ' <li><a href="documentation.php" ' . (($item=='documentation') ? ('id="selected"') : ('')) .'>Documentation</a></li>';
@@ -91,18 +92,14 @@
<!-- Sidebar -->
<div id="rightside">
END;
- if($news) {
+// Permanently disable and do another way (see above)
+// because pageNews calls SF php script that returns
+// bad URL's.
+ if(0) {
echo "<h3>News</h3>\n";
pageNews(3);
}
echo <<<END
- <h3>Source Code</h3>
- <ul class="arrowlist">
- <li><a href="http://sourceforge.net/project/showfiles.php?group_id=2915&package_id=2865">Download</a></li>
- <li><a href="http://sourceforge.net/svn/?group_id=2915">SVN Repository</a></li>
- <li><a href="http://plplot.svn.sourceforge.net/viewvc/plplot/">Browse SVN</a></li>
- </ul>
-
<h3>Resources</h3>
<ul class="arrowlist">
<li><a href="documentation.php">Documentation</a></li>
@@ -112,6 +109,13 @@
<li><a href="http://sourceforge.net/mail/?group_id=2915">Mailing Lists</a></li>
<li><a href="http://sourceforge.net/tracker/?group_id=2915&atid=102915">Bug Tracker</a></li>
</ul>
+ <h3>Source Code</h3>
+ <ul class="arrowlist">
+ <li><a href="http://sourceforge.net/project/showfiles.php?group_id=2915&package_id=2865">Download</a></li>
+ <li><a href="http://sourceforge.net/svn/?group_id=2915">SVN Repository</a></li>
+ <li><a href="http://plplot.svn.sourceforge.net/viewvc/plplot/">Browse SVN</a></li>
+ </ul>
+
</div>
END;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|