Revision: 1557 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1557&view=re... Author: any0n3 Date: 2010-09-04 21:40:11 +0000 (Sat, 04 Sep 2010)
Log Message: ----------- Added md5 file hash
Modified Paths: -------------- www/staging/content/downloads.html
Modified: www/staging/content/downloads.html =================================================================== --- www/staging/content/downloads.html 2010-09-04 20:51:59 UTC (rev 1556) +++ www/staging/content/downloads.html 2010-09-04 21:40:11 UTC (rev 1557) @@ -28,6 +28,7 @@ echo "<tr>"; echo " <th>Download</th>"; echo " <th>SIG</th>"; + echo " <th>MD5</th>"; echo "</tr>";
if(file_exists($dir . "geany-plugins-" . $version . ".tar.gz") && @@ -36,6 +37,7 @@ echo "<tr>"; echo " <td><a href="./geany-plugins/geany-plugins-" . $version . ".tar.gz">geany-plugins-" . $version . ".tar.gz</a></td>"; echo " <td><a href="./geany-plugins/geany-plugins-" . $version . ".tar.gz.sig">SIG</a></td>"; + echo " <td>" . md5_file($dir . "geany-plugins-" . $version . ".tar.gz") . "</a>"; echo "</tr>"; }
@@ -45,6 +47,7 @@ echo "<tr>"; echo " <td><a href="./geany-plugins/geany-plugins-" . $version . ".tar.bz2">geany-plugins-" . $version . ".tar.bz2</a></td>"; echo " <td><a href="./geany-plugins/geany-plugins-" . $version . ".tar.bz2.sig">SIG</td>"; + echo " <td>" . md5_file($dir . "geany-plugins-" . $version . ".tar.bz2") . "</a>"; echo "</tr>"; }
@@ -56,6 +59,7 @@ echo "<tr>"; echo " <td><a href="./geany-plugins/geany-plugins-" .$version . "_setup.exe">geany-plugins-" . $version . "_setup.exe</a></td>"; echo " <td><a href="./geany-plugins/geany-plugins-" .$version . "_setup.exe.sig">SIG</a></td>"; + echo " <td>" . md5_file($dir . "geany-plugins-" . $version . "_setup.exe.sig") . "</a>"; echo "</tr>"; }
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org