struct / union in initializer, RFE #901.
[sdcc.git] / sdcc-web / snap_header.php
blobcca74ac72f3add6288fc9b51f0e0d212ffbade31
1 <?php
2 /*-------------------------------------------------------------------------
3 snap_head.php - snapshot builds page head
5 Copyright (C) 2011, Borut Razem <borut.razem AT gmail.com>
7 This program is free software; you can redistribute it and/or modify it
8 under the terms of the GNU General Public License as published by the
9 Free Software Foundation; either version 2.1, or (at your option) any
10 later version.
12 This library is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this library; see the file COPYING. If not, write to the
19 Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston,
20 MA 02110-1301, USA.
21 -------------------------------------------------------------------------*/
22 header("Cache-Control: max-age=3600, must-revalidate"); //HTTP/1.1
24 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
25 <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
26 <head>
27 <meta content="text/html; charset=UTF-8" http-equiv="content-type" />
28 <title>SDCC - Snapshot Builds</title>
29 <link type="text/css" href="styles/style.css" rel="stylesheet" />
30 <link rel="icon" type="image/svg+xml" href="/images/sdcc.svg">
31 </head>
32 <body bgcolor="white" link="teal" vlink="#483d8b">
33 <div align="left">
34 <h1>SDCC - Snapshot Builds</h1>
35 <table border="0" cellpadding="2" cellspacing="1" width="100%" bgcolor="white">
36 <tbody>
37 <tr>
38 <td width="15%" valign="top"><?php echo(file_get_contents('./left_menu.inc'));?>
39 </td>
40 <td width="85%">
41 <h2><a name="What"></a>Automatically Updated Snapshot Builds</h2>
42 <p>
43 These snapshot builds are automatically updated from the developmental
44 code in the Subversion repository. They are <i>not</i> official releases
45 and should be considered "beta" quality. Some may not even work
46 at all if a serious bug was introduced during development, so
47 several are provided to give you the best chance of finding one
48 that will work.
49 </p>
50 <p>
51 Because official SDCC releases are infrequent, these snapshot builds
52 often contain fixes for bugs discovered in the last official
53 release. If you do encounter a bug, please test the latest
54 snapshot build to see if it has already been fixed by a developer.
55 </p>
56 <p>
57 To see what developers have added, you can
58 <a href="http://svn.code.sf.net/p/sdcc/code/trunk/sdcc/ChangeLog">
59 view the ChangeLog</a> directly from the Subversion repository.
60 </p>