1: <?php
2: $ext_path = "/mozdev/sandbox/data/helm/htdoc/accountex/www/files/";
3:
4: $current_multi = "accountex-0.2.2-tb.xpi";
5: $require_multi = "Thunderbird: 0.8 - 1.5.0.*";
6:
7: //ohne Zustimmung von update.mozilla.org
8:
9: $current_multi2 = "";
10: $require_multi2 = "Thunderbird: 0.8 - 1.5beta2";
11:
12: $current_de = "accountex-0.2.2-de-tb.xpi";
13: $require_de = "Thunderbird: 0.8 - 1.5.0.*";
14: ?>
15: <?xml version="1.0" encoding="UTF-8"?>
16: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
17: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="de">
18: <head>
19: <title>accountex: download</title>
20: <?php include("head.html"); ?>
21: </head>
22: <body id="www-mozilla-org" class="secondLevel sectionDownload">
23: <?php include("de_header.html"); ?>
24:
25: <div id="side">
26: <?php include("de_nav.html"); ?>
27: <?php include("de_sidebar.html"); ?>
28: </div>
29:
30: <div id="mainContent">
31: <div class="key-point">
32: <div id="product-desc" class="product-accountex-multi">
33: To install, download the xpi below from your browser. Then, in Thunderbird, use Tools -> Extensions -> Install to install the xpi you just downloaded. Restart Thunderbird.<br /><br />
34: includes: de-DE, en-US, es-ES, fr-FR, hu-HU, it-IT, ja, sl
35: </div>
36: <div id="product-side">
37: <div class="download">
38: <h3><a href="http://accountex.mozdev.org/download.php?datei=<?php echo $current_multi ?>"><?php echo $current_multi ?></a></h3>
39: <br />
40: <img src="http://www.mozilla.org/images/thunderbird16.png" height="16" width="16" alt="Thunderbird icon" style="vertical-align: middle;" /><?php echo $require_multi ?>
41: <div class="configParent">
42: <span class="configuration">
43: <b>MD5:</b> <?php echo md5_file($ext_path . $current_multi) ?>
44: </span>
45: </div>
46: </div>
47:
48: <?php
49: if ($current_multi2 != "") {
50: echo "<div class=\"download\">";
51: echo "<h3><a href=\"http://accountex.mozdev.org/download.php?datei=" . $current_multi2 . "\">" . $current_multi2 . "</a></h3>";
52: echo "<font color=\"#ff0000\">not approved from update.mozilla.org</font>";
53: echo "<br /><br />";
54: echo "<img src=\"http://www.mozilla.org/images/thunderbird16.png\" height=\"16\" width=\"16\" alt=\"Thunderbird icon\" style=\"vertical-align: middle;\" />" . $require_multi2;
55: echo "<div class=\"configParent\">";
56: echo "<span class=\"configuration\">";
57: echo "<b>MD5:</b> " . md5_file($ext_path . $current_multi2);
58: echo "</span>";
59: echo "</div>";
60: echo "</div>";
61: }
62: ?>
63: <ul>
64: <li>
65: <a class="ancilliaryLink" href="http://accountex.mozdev.org/history.html">History</a>
66: </li>
67: </ul>
68: </div>
69:
70: <hr class="hide"/>
71: </div>
72: <div id="mainContent-de">
73: <div class="key-point">
74: <div id="product-desc-de" class="product-accountex-de">
75: To install, download the xpi below from your browser. Then, in Thunderbird, use Tools -> Extensions -> Install to install the xpi you just downloaded. Restart Thunderbird.<br /><br />
76: includes: de-DE
77: </div>
78: <div id="product-side-de">
79: <div class="download">
80: <h3><a href="http://accountex.mozdev.org/download.php?datei=<?php echo $current_de ?>"><?php echo $current_de ?></a></h3>
81: <br />
82: <img src="http://www.mozilla.org/images/thunderbird16.png" height="16" width="16" alt="Thunderbird icon" style="vertical-align: middle;" /><?php echo $require_de ?>
83: <div class="configParent">
84: <span class="configuration">
85: <b>MD5:</b> <?php echo md5_file($ext_path . $current_de); ?>
86: </span>
87: </div>
88: </div>
89: <ul>
90: <li>
91: <a class="ancilliaryLink" href="http://accountex.mozdev.org/history.html">History</a>
92: </li>
93: </ul>
94: </div>
95:
96: <hr class="hide"/>
97: </div></div></div>
98: <?php include("footer.html"); ?>
99: </body>
100: </html>
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>