Skip to content

Commit

Permalink
Reapply "Separate unstable download information to a separate file, m…
Browse files Browse the repository at this point in the history
…ake"

This reverts commit bd9178cd9df82b7c0ff6f06b79ddb13aa7578362.

git-svn-id: svn+ssh://svn.gnucash.org/repo/htdocs/branches/beta@22693 57a11ea4-9604-0410-9ed3-97b8803252fd
  • Loading branch information
gjanssens committed Jan 11, 2013
1 parent c5bf95f commit c77e25c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 12 deletions.
15 changes: 3 additions & 12 deletions download.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -41,18 +41,9 @@ include("externals/menu.phtml");
</ul>
<p><?php echo T_("For build instructions, please check the <span class=\"gnucash\">GnuCash</span> wiki which has <a href='http://wiki.gnucash.org/wiki/GnuCash#Installation'>guidelines for several distributions</a>.")?></p>

<div class="featureborder">
<h2 class="featuretitle"><?php printf (T_("Unstable/Development release (%s)"), $latest_unstable)?></h2>
</div>
<p class="justify"><?php echo T_("Unstable (development) releases are for testing purposes only. They contain the newest features and improvements, but may also contain serious bugs still. Don't install these releases for everyday use.")?></p>
<p class="justify"><?php printf (T_("The latest unstable release of <span class=\"gnucash\">GnuCash</span> is %s. Choose the download for your operating system below."), $latest_unstable)?></p>

<ul>
<li><?php printf (T_("GnuCash %s for"), $latest_unstable)?> <a href="<?php echo $download_path.$latest_unstable_win;?>">Microsoft Windows XP/Vista/7</a></li>
<li><?php printf (T_("GnuCash %s for"), $latest_unstable)?> Mac OS X <a href="<?php echo $download_path.$latest_unstable_mac_intel;?>">Intel</a> | <a href="<?php echo $download_path.$latest_unstable_mac_ppc;?>">PPC</a> | <a href="http://wiki.gnucash.org/wiki/MacOSX/<?php echo $latest_unstable;?>/Readme">Readme</a></li>
<li><a href="<?php echo $download_path.$latest_unstable_source;?>">bzip2 compressed tarball</a> <?php printf (T_("for GnuCash %s"), $latest_unstable)?></li>
</ul>

<?php if ($latest_unstable)
include "unstable-download.phtml";
?>
<div class="featureborder">
<h2 class="featuretitle"><?php echo T_("Other")?></h2>
</div>
Expand Down
12 changes: 12 additions & 0 deletions unstable-download.phtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<div class="featureborder">
<h2 class="featuretitle"><?php printf (T_("Unstable/Development release (%s)"), $latest_unstable)?></h2>
</div>
<p class="justify"><?php echo T_("Unstable (development) releases are for testing purposes only. They contain the newest features and improvements, but may also contain serious bugs still. Don't install these releases for everyday use.")?></p>
<p class="justify"><?php printf (T_("The latest unstable release of <span class=\"gnucash\">GnuCash</span> is %s. Choose the download for your operating system below."), $latest_unstable)?></p>

<ul>
<li><?php printf (T_("GnuCash %s for"), $latest_unstable)?> <a href="<?php echo $download_path.$latest_unstable_win;?>">Microsoft Windows XP/Vista/7</a></li>
<li><?php printf (T_("GnuCash %s for"), $latest_unstable)?> Mac OS X <a href="<?php echo $download_path.$latest_unstable_mac_intel;?>">Intel</a> | <a href="<?php echo $download_path.$latest_unstable_mac_ppc;?>">PPC</a> | <a href="http://wiki.gnucash.org/wiki/MacOSX/<?php echo $latest_unstable;?>/Readme">Readme</a></li>
<li><a href="<?php echo $download_path.$latest_unstable_source;?>">bzip2 compressed tarball</a> <?php printf (T_("for GnuCash %s"), $latest_unstable)?></li>
</ul>

0 comments on commit c77e25c

Please sign in to comment.