mass rename/edit
[grml.org.git] / download / prerelease / index.html.tt2
1 <?php
2 // while there is no prerelease, redirect to stable page
3 header("Location: /download/");
4 exit;
5 ?>
6 <!DOCTYPE html>
7 <html>
8 <head>
9 <title>grml.org - Download</title>
10 <meta name="Title" content="grml.org - Download" />
11 <meta name="Author" content="the grml team [www.grml.org/team/]" />
12 <meta name="Keywords" content="grml.org, grml" />
13 <meta name="Description" content="Download of grml.org" />
14 <meta name="Abstract" content="grml, just another linux-distribution" />
15 <meta name="fdse-index-as" content="http://www.grml.org/download/" />
16 <meta name="Robots" content="index,follow" />
17 <meta name="Language" content="english" />
18 <meta name="identifier-url" content="http://www.grml.org/" />
19 <meta name="MSSmartTagsPreventParsing" content="true" />
20 <meta http-equiv="imagetoolbar" content="no" />
21 <link rel="home" href="/" title="grml.org" />
22 <link rel="help" href="/features/" title="About" />
23 <link rel="author" href="/team/" title="Team" />
24 <link rel="icon" href="/favicon.png" type="image/png" />
25 <link rel="stylesheet" href="/style.css" type="text/css" />
26 <style type="text/css">
27 #contentbox {
28     padding-left: 20px;
29     padding-right: 20px;
30 }
31 .download_panel {
32     float: left;
33     width: 288px;
34     margin-bottom: 2em;
35     margin-top: 1em;
36     font-size: 11px;
37 }
38 .download_panel>div {
39     margin-right: 20px;
40 }
41 #download_panel4 {
42     width: auto;
43 }
44 .largebutton {
45     width: 100%;
46     background: #FFDA62;
47     height: 90px;
48     border: 1px solid gray;
49     -moz-border-radius:3px;
50     -webkit-border-radius:3px;
51     -o-border-radius:3px;
52     border-radius:3px;
53     margin-bottom: 0.5em;
54     font-size: 15pt;
55     font-weight: bold;
56     display: block;
57     text-align: center;
58     color: black;
59     text-decoration: none;
60     padding: auto;
61     }
62 .largebutton:hover {
63     background: #FFA862;
64 }
65 .download_relinfo {
66     font-size: 10pt;
67     margin-top: 0.8em;
68     }
69 .download_group {
70     border-bottom: 1px dotted gray;
71     overflow: auto;
72 }
73 .hide {
74     display: none;
75 }
76 </style>
77
78 </head>
79
80 <body>
81 <?php include '../../static.inc'; ?>
82
83 <div class="content">
84
85     <h1>Download Grml 2011.12-rc1</h1>
86
87     <p><strong>NOTE: This is a PRE-RELEASE, not a stable release yet.<br />
88     You have been warned.</strong><br />
89
90     <a href="../">Looking for the stable release version instead?</a></p>
91
92     <p>Download the Grml flavour you need, then write it to a CD-R or an empty USB stick.</p>
93
94     <div class="download_group" id="download_group1">
95     <form method="get" action="/download/bounce/">
96     <input type="hidden" name="version" value="2011.12-rc1"/>
97     <div class="download_panel" id="download_panel1"><div>
98
99     <h2>Options</h2>
100
101     <select name="flavour" id="download_flavour" style="width:100%;">
102     <option value="full" selected="selected">grml (350MB)</option>
103     </select>
104     <br /><br />
105     <select name="arch" id="download_arch" style="width:100%;">
106     <option value="amd64" selected="selected">64-bit PC</option>
107     <option value="i386">32-bit PC</option>
108     </select>
109     <br />
110     <br />
111     <br />
112     <br />
113     <br />
114     <a href="/changelogs/README-grml-2011.12-rc1/">Release Notes</a>
115     </div></div>
116
117     <div class="download_panel" id="download_panel2"><div>
118     <!-- fallback cgi buttons -->
119     <div id="formbuttons">
120     <button name="filetype" value="iso" id="download_button_mirror" class="largebutton" style="width:100%;" type="submit">Download Now </button><br />
121     <button name="filetype" value="bt" id="download_button_bt" type="submit">Download using BitTorrent</button><br />
122     <button name="filetype" value="signature" id="download_button_signature" type="submit">Get Checksum/Signature</button><br />
123     </div>
124     <!-- JS links -->
125     <div id="linkbuttons" style="display:none;">
126     <a id="download_link_mirror" class="largebutton">Download Now</a><br />
127     <a id="download_link_bt">BitTorrent Download</a><br />
128     <a id="download_link_signature">Get Checksum/Signature</a><br />
129     </div>
130     </div></div>
131
132     </form>
133     <script type="text/javascript">
134     function update_links() {
135         var current_version = "2011.12-rc1";
136         var product = 'grml';
137         var arch = document.getElementById('download_arch').value;
138         var flavour = document.getElementById('download_flavour').value;
139         if (arch == 'amd64') product = 'grml64';
140         if (flavour != 'full') product += '-' + flavour;
141         var iso = product + '_' + current_version + '.iso';
142         var mirror_url = "http://download.grml.org/devel/";
143         document.getElementById('download_link_mirror').href = mirror_url + iso;
144         document.getElementById('download_link_mirror').innerHTML = '<br />Download Now<div class="download_relinfo">' + product + ' ' + current_version + '</div>';
145         document.getElementById('download_link_bt').href = mirror_url + iso + '.torrent';
146         document.getElementById('download_link_signature').href = mirror_url + iso + '.sha1.asc';
147     }
148     // hook update function
149     document.getElementById('download_flavour').onchange = update_links;
150     document.getElementById('download_arch').onchange = update_links;
151     // force initial link href set
152     update_links();
153     // only show our link "buttons"
154     document.getElementById('formbuttons').style.display = 'none';
155     document.getElementById('linkbuttons').style.display = '';
156     </script>
157     </div>
158
159     <div class="download_group" id="download_group2">
160
161     <div class="download_panel" id="download_panel3"><div>
162     <b>Alternate downloads</b><br /><br />
163     <a href="http://daily.grml.org/">Daily images</a><br />
164     <a href="http://download.grml.org/">Older releases</a><br />
165     <a href="http://download.grml.org/devel/">chroots for remastering</a> (prerelease)<br />
166     <a href="http://download.grml.org/devel/grml_sources-2011.12-rc1.tgz">Source code</a> (one tgz for both architectures)<br />
167     <br />
168     <a href="http://debian.netcologne.de/grml/gnupg-michael-prokop.txt">Signing Key</a><br />
169     <br />
170     Please verify all downloads using GnuPG!
171     </div></div>
172
173     <div class="download_panel" id="download_panel4"><div>
174     <b>Boot from USB stick</b><br />
175     <br />
176     Just <tt>dd(1)</tt> the downloaded ISO to an <abbr title="Any existing data will be overwritten by the dd command!">empty</abbr> USB stick!<br /><br />
177     <code>dd if=grml_2011.12-rc1.iso of=/dev/USB_STICK</code>
178     <br /><br />
179
180     <b>Troubleshooting</b><br /><br />
181     <a href="http://git.grml.org/?p=grml-live.git;a=blob_plain;f=templates/GRML/grml-cheatcodes.txt;hb=HEAD">Boot option guide</a>
182     <br /><br />
183
184     </div></div>
185
186     </div>
187
188     <div style="clear: both;"></div>
189
190 </div>
191
192 <?php include '../../static_bottom.inc'; ?>