root/trunk/www/download/windows.php @ 8221

Revision 8221, 2.0 KB (checked in by guillaume, 6 months ago)

Website update for 1.10.2 release.

Line 
1<?php
2
3include $_SERVER['DOCUMENT_ROOT'] . "/include/page.php"; 
4
5$PAGE_TITLE = _("pgAdmin: Download - Windows &trade;");
6$PAGE_CONTENT = '
7
8<h1>' . _("Windows &trade;") . '</h1>
9
10<h4>' . sprintf(_("Maintainer: %s"), "Dave Page") . '</h4>
11
12<p>' . _("pgAdmin is available for Windows &trade; 2000 and above.") . '</p>
13
14<p>' . sprintf(_("Note that the <a href=\"%s\">pgInstaller</a> distribution of PostgreSQL for Windows includes a bundled copy of pgAdmin."), "http://www.postgresql.org/ftp/win32") . '</p>
15
16<ul>
17  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.2/win32/", "1.10.2") . '<br />&nbsp;</li>
18  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.1/win32/", "1.10.1") . '<br />&nbsp;</li>
19  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.0/win32/", "1.10.0") . '<br />&nbsp;</li>
20  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.8.4/win32/", "1.8.4") . '<br />&nbsp;</li>
21  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.6.3/win32/", "1.6.3") . '<br />&nbsp;</li>
22  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.4.3/win32/", "1.4.3") . '<br />&nbsp;</li>
23  <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.2.2/win32/", "1.2.2") . '<br />&nbsp;</li>
24</ul>
25
26<p>' . _("To install these packages, unzip the downloaded file, double-click the </i>pgadmin3.msi</i> installer file and follow the on-screen instructions. Minor upgrades (e.g. from 1.4.0 to 1.4.1) can be performed using the <i>upgrade.bat</i> script. Differing major releases, e.g. 1.2.2 and 1.4.1, can be installed on the same machine at the same time.") . '</p>
27'; 
28
29// Display the page
30www_page($PAGE_TITLE, $PAGE_CONTENT);
31
32?>
Note: See TracBrowser for help on using the browser.