pidgin/old.pidgin.im

closing merged branch
Robbie/fix-my-typo-1473976047247
2019-05-27, Gary Kramlich
b9d367009499
closing merged branch
<?php
include($_SERVER['DOCUMENT_ROOT'] . "/../inc/version.inc");
// The keys in this array are available download types. They should
// match the piece of the URL following "/download/" For example,
// "source" or "windows"
// The values in this array are arrays containing info about the
// download type. The keys in these arrays are things like "name"
// and "description."
$download_types = array(
'windows' => array(
'title' => 'Download Pidgin for Windows',
'subsect' => 'Windows',
'description' => 'Download the free Pidgin universal chat client for Windows',
'body' => '<p class="download_button">
<a class="sourceforge_accelerator_link" href="http://sourceforge.net/projects/pidgin/files/Pidgin/' . $pidgin_win32_version . '/pidgin-' . $pidgin_win32_version . '.exe/download">Download Now</a>
<script type="text/javascript">
(function() {
var script = document.createElement("script");
script.src = "//sourceforge.net/accelerator/js?partner_id=62\u0026button_size=large";
script.defer = true;
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(script, s);
})();
</script>
</p>
<p>This version of Pidgin downloads an appropriate version of GTK+. GTK+ is now installed locally for Pidgin, and not system-wide, thus Pidgin will not interfere with other GTK+ apps on your system.</p>
<p>If you would like to have GTK+ included in the installer, we have an <a href="http://sourceforge.net/projects/pidgin/files/Pidgin/' . $pidgin_win32_version . '/pidgin-' . $pidgin_win32_version . '-offline.exe/download">offline installer</a> that bundles everything except spell-checking dictionaries. </p>',
),
'linux' => array(
'title' => 'Download Pidgin for Linux',
'subsect' => 'Linux',
'description' => 'Download the free Pidgin universal chat client for Linux',
'body' => '<p>We do not provide pre-built packages for Linux and Unix distributions. We recommend installing Pidgin using your operating system\'s standard package management tool.</p>
<p>If your operating system doesn\'t provide a pre-built package, or if their pre-built package is out of date and you want to upgrade, then you can try <a href="/download/source/">building from source</a>.</p>',
),
'mac' => array(
'title' => 'Download Pidgin for Mac OS X',
'subsect' => 'Mac OS X',
'description' => 'Download the free Pidgin universal chat client for Mac OS X',
'body' => '<p>For a native Mac OS X experience we recommend <a href="http://adium.im" onClick="javascript:pageTracker._trackPageview("/external/adium.im");">Adium</a>, which uses libpurple (the core of Pidgin) for much of its protocol support.</p>
<p>If you\'re sure you want to use Pidgin on OS X, you may find the packages provided through <a href="http://brew.sh/" onClick="javascript:pageTracker._trackPageview("/external/brew.sh");">Homebrew</a>, <a href="http://finkproject.org/download/" onClick="javascript:pageTracker._trackPageview("/external/finkproject.org");">Fink</a> or <a href="https://www.macports.org/install.php" onClick="javascript:pageTracker._trackPageview("/external/macports.org");">Macports</a> more convenient than compiling from source. Please note, <i>we do not provide support for issues related to installing Homebrew, Fink, Macports, or their packages of Pidgin</i>. Contact those projects directly with questions or concerns.</p>
<p>If you\'re sure you want to use Pidgin on OS X and you don\'t want to use Homebrew, Fink or Macports, you can <a href="/download/source/">download the Pidgin source</a> and compile.</p>',
),
'source' => array(
'title' => 'Download Pidgin Source',
'subsect' => 'Source',
'description' => 'Download the source code for the free Pidgin universal chat client',
'body' => '<p class="download_button">
<a class="sourceforge_accelerator_link" href="http://sourceforge.net/projects/pidgin/files/Pidgin/' . $pidgin_version . '/pidgin-' . $pidgin_version . '.tar.bz2/download">Download Now</a>
<script type="text/javascript">
(function() {
var script = document.createElement("script");
script.src = "//sourceforge.net/accelerator/js?partner_id=62\u0026button_size=large";
script.defer = true;
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(script, s);
})();
</script>
</p>
<p>This download is for the source code of Pidgin ' . $pidgin_version . '.</p>
<p>If you want to <b>use</b> Pidgin, you should either download and use our Windows installer or look for pre-built packages from your operating system distribution.</p>
<p>If you are looking to <b>modify</b> Pidgin, you may want to look at our <a href="https://developer.pidgin.im/wiki/UsingPidginMercurial">instructions for checking out the code from our repository</a>.</p>',
),
);
?>