[Vim-latex-cvs] SF.net SVN: vim-latex: [1019] trunk/htdocs
Brought to you by:
srinathava,
tmaas
|
From: <tm...@us...> - 2008-05-06 15:06:16
|
Revision: 1019
http://vim-latex.svn.sourceforge.net/vim-latex/?rev=1019&view=rev
Author: tmaas
Date: 2008-05-06 07:56:14 -0700 (Tue, 06 May 2008)
Log Message:
-----------
-use link to svn webinterface to display packages instead of carrying a local copy
Modified Paths:
--------------
trunk/htdocs/head.inc
Removed Paths:
-------------
trunk/htdocs/packages/
trunk/htdocs/packages.inc
Modified: trunk/htdocs/head.inc
===================================================================
--- trunk/htdocs/head.inc 2008-05-06 14:34:12 UTC (rev 1018)
+++ trunk/htdocs/head.inc 2008-05-06 14:56:14 UTC (rev 1019)
@@ -30,7 +30,7 @@
href="index.php?subject=contact&title=Contact">Feature
Requests <br/>Bug Reports <br/>Mailing List <br/></a><br>
<p></p>
- <a href="index.php?subject=packages&title=Package%20Files">Package files</a><br>
+ <a href="http://vim-latex.svn.sourceforge.net/viewvc/vim-latex/trunk/vimfiles/ftplugin/latex-suite/packages/">Package files</a><br>
<a href="index.php?subject=templates&title=Templates">Templates</a><br>
<p></p>
<hr class=navig>
Deleted: trunk/htdocs/packages.inc
===================================================================
--- trunk/htdocs/packages.inc 2008-05-06 14:34:12 UTC (rev 1018)
+++ trunk/htdocs/packages.inc 2008-05-06 14:56:14 UTC (rev 1019)
@@ -1,23 +0,0 @@
-<table>
-<tr>
- <td><b>Name of the package:</b></td>
- <td> </td>
- <td><b>Last modified:</b></td>
-</tr>
-<?
-$dir = getcwd()."/packages";
-$packdir = dir($dir);
-while($file = $packdir->read()){
- if($file!="." && $file!=".." && strncmp($file,"CVS",3)){
- $filetable[] = $file;
- }
-}
-$packdir->close();
-asort($filetable);
-foreach($filetable as $packagefile){
- echo "<tr><td><a href='packages/".$packagefile."'>".$packagefile."</a></td>";
- echo "<td> </td>";
- echo "<td>".date("F j, Y", filemtime($dir."/".$packagefile))."</td></tr>\n";
-}
-?>
-</table>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|