| 1 | <?php |
|---|
| 2 | |
|---|
| 3 | include $_SERVER['DOCUMENT_ROOT'] . "/include/page.php"; |
|---|
| 4 | |
|---|
| 5 | $PAGE_TITLE = _("pgAdmin: Download - Windows ™"); |
|---|
| 6 | $PAGE_CONTENT = ' |
|---|
| 7 | |
|---|
| 8 | <h1>' . _("Windows ™") . '</h1> |
|---|
| 9 | |
|---|
| 10 | <h4>' . sprintf(_("Maintainer: %s"), "Dave Page") . '</h4> |
|---|
| 11 | |
|---|
| 12 | <p>' . _("pgAdmin is available for Windows ™ 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.1/win32/", "1.10.1") . '<br /> </li> |
|---|
| 18 | <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.10.0/win32/", "1.10.0") . '<br /> </li> |
|---|
| 19 | <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.8.4/win32/", "1.8.4") . '<br /> </li> |
|---|
| 20 | <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.6.3/win32/", "1.6.3") . '<br /> </li> |
|---|
| 21 | <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.4.3/win32/", "1.4.3") . '<br /> </li> |
|---|
| 22 | <li>' . sprintf(_("<a href=\"%s\">pgAdmin v%s</a>"), "http://www.postgresql.org/ftp/pgadmin3/release/v1.2.2/win32/", "1.2.2") . '<br /> </li> |
|---|
| 23 | </ul> |
|---|
| 24 | |
|---|
| 25 | <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> |
|---|
| 26 | '; |
|---|
| 27 | |
|---|
| 28 | // Display the page |
|---|
| 29 | www_page($PAGE_TITLE, $PAGE_CONTENT); |
|---|
| 30 | |
|---|
| 31 | ?> |
|---|