Revision: 1561 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=1561&view=re... Author: any0n3 Date: 2010-09-04 22:26:06 +0000 (Sat, 04 Sep 2010)
Log Message: ----------- Added pre tag for hashes
Modified Paths: -------------- www/staging/content/downloads.html
Modified: www/staging/content/downloads.html =================================================================== --- www/staging/content/downloads.html 2010-09-04 22:15:35 UTC (rev 1560) +++ www/staging/content/downloads.html 2010-09-04 22:26:06 UTC (rev 1561) @@ -52,9 +52,9 @@ echo " <td><a href="./geany-plugins/geany-plugins-" . $version . ".tar.gz.sig">SIG</a></td>"; if ($_GET['hash'] == "sha1") { - echo " <td>" . sha1_file($dir . "geany-plugins-" . $version . ".tar.gz") . "</a>"; + echo " <td><pre>" . sha1_file($dir . "geany-plugins-" . $version . ".tar.gz") . "</pre></td>"; } else { - echo " <td>" . md5_file($dir . "geany-plugins-" . $version . ".tar.gz") . "</a>"; + echo " <td><pre>" . md5_file($dir . "geany-plugins-" . $version . ".tar.gz") . "</pre></td>"; } echo "</tr>"; } @@ -64,12 +64,12 @@ { 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><a href="./geany-plugins/geany-plugins-" . $version . ".tar.bz2.sig">SIG</a></td>"; if ($_GET['hash'] == "sha1") { - echo " <td>" . sha1_file($dir . "geany-plugins-" . $version . ".tar.bz2") . "</a>"; + echo " <td><pre>" . sha1_file($dir . "geany-plugins-" . $version . ".tar.bz2") . "</pre></td>"; } else { - echo " <td>" . md5_file($dir . "geany-plugins-" . $version . ".tar.bz2") . "</a>"; + echo " <td><pre>" . md5_file($dir . "geany-plugins-" . $version . ".tar.bz2") . "</pre></td>"; } echo "</tr>"; } @@ -84,9 +84,9 @@ echo " <td><a href="./geany-plugins/geany-plugins-" .$version . "_setup.exe.sig">SIG</a></td>"; if ($_GET['hash'] == "sha1") { - echo " <td>" . sha1_file($dir . "geany-plugins-" . $version . "_setup.exe") . "</a>"; + echo " <td><pre>" . sha1_file($dir . "geany-plugins-" . $version . "_setup.exe") . "</pre></td>"; } else { - echo " <td>" . md5_file($dir . "geany-plugins-" . $version . "_setup.exe") . "</a>"; + echo " <td><pre>" . md5_file($dir . "geany-plugins-" . $version . "_setup.exe") . "</pre></td>"; } 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