Project

General

Profile

Download (5.62 KB) Statistics
| Branch: | Tag: | Revision:
1
#!/usr/local/bin/php
2
<?php
3
/* $Id$ */
4
/*
5
	system_advanced.php
6
        part of pfSense
7
        Copyright (C) 2005 Scott Ullrich
8

    
9
	originally part of m0n0wall (http://m0n0.ch/wall)
10
	Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
11
	All rights reserved.
12

    
13
	Redistribution and use in source and binary forms, with or without
14
	modification, are permitted provided that the following conditions are met:
15

    
16
	1. Redistributions of source code must retain the above copyright notice,
17
	   this list of conditions and the following disclaimer.
18

    
19
	2. Redistributions in binary form must reproduce the above copyright
20
	   notice, this list of conditions and the following disclaimer in the
21
	   documentation and/or other materials provided with the distribution.
22

    
23
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
24
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
25
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
27
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
29
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
30
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
31
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32
	POSSIBILITY OF SUCH DAMAGE.
33
*/
34

    
35
require("guiconfig.inc");
36

    
37
if ($_POST) {
38
	$config['system']['firmware']['branch'] = $_POST['branch'];
39
	write_config();
40
}
41

    
42
$curcfg = $config['system']['firmware'];
43

    
44
$pgtitle = "System: Firmware: Settings";
45
include("head.inc");
46

    
47
?>
48

    
49
<script language="JavaScript">
50
<!--
51
var systemdescs=new Array(4);
52
systemdescs[0]="This patch system uses a combination of unified and binary diffs. This system requires the least bandwidth, but is less forgiving of errors.";
53
systemdescs[1]="This patch system uses tar files to update the system. This requires the most bandwidth, but is more reliable.";
54
systemdescs[2]="This patch system uses tar files for the kernel and base system, and unified diffs for other components.";
55

    
56
var branchinfo=new Array(4);
57
branchinfo[0]="The stable branch contains only those updates believed to be stable by the developers.";
58
branchinfo[1]="This branch contains both stable updates as well as those believed to be fairly stable.";
59
branchinfo[2]="This branch contains all released updates, regardless of stability.";
60

    
61
function update_description(itemnum) {
62
        document.forms[0].branchinfo.value=branchinfo[itemnum];
63
}
64

    
65
// -->
66
</script>
67

    
68
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
69
<?php include("fbegin.inc");?>
70
<p class="pgtitle"><?=$pgtitle?></p>
71
<form action="system_firmware_settings.php" method="post" name="iform" id="iform">
72
            <?php if ($savemsg) print_info_box($savemsg); ?>
73
              <table width="100%" border="0" cellpadding="0" cellspacing="0">
74
	<tr>
75
		<td>
76
<?php
77
	$tab_array = array();
78
	$tab_array[0] = array("Manual Update", false, "system_firmware.php");
79
	$tab_array[1] = array("Auto Update", false, "system_firmware_check.php");
80
	$tab_array[2] = array("Updater Settings", true, "system_firmware_settings.php");
81
	display_top_tabs($tab_array);
82
?>
83
		</td>
84
	</tr>
85
	<tr><td><div id=mainarea>
86
	      <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
87
	<tr>
88
		<td colspan="2" valign="top" class="listtopic">Firmware Branch</td>
89
	</tr>
90
	<tr>
91
                  <td width="22%" valign="top" class="vncell">Firmware Branch</td>
92
                  <td width="78%" class="vtable">
93
			<select onChange="update_description(this.selectedIndex);" name="branch" id="branch">
94
			<option value="stable"<?php if($curcfg['branch']=="stable") echo " SELECTED"; ?>>Stable</option>
95
			<option value="beta"<?php if($curcfg['branch']=="beta") echo " SELECTED"; ?>>Beta</option>
96
			<option value="alpha"<?php if($curcfg['branch']=="alpha") echo " SELECTED"; ?>>Alpha</option>
97
			</select>
98
			<textarea cols="60" rows="2" id="branchinfo" name="branchinfo"style="border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;">
99
			</textarea>
100
			<script language="javascript">
101
			update_description(document.forms[0].branch.selectedIndex);
102
			</script>
103
			<br><span class="vexpl"><b>Select the update branch you would like this system to track</b></td>
104
                </tr>
105
<!--
106
	<tr>
107
                  <td width="22%" valign="top" class="vncell">Update Preference</td>
108
                  <td width="78%" class="vtable">
109
			<select onChange="update_description(branchinfo, this.selectedIndex);" name="branch" id="branch">
110
			<option value="patches"<?php if($curcfg['updates']=="diffs") echo " SELECTED"; ?>>Patches</option>
111
			<option value="full"<?php if($curcfg['updates']=="full") echo " SELECTED"; ?>>Full Updates</option>
112
			<option value="combination"<?php if($config['updates']=="combination") echo " SELECTED"; ?>>Combination</option>
113
			</select>
114
			<textarea cols="60" rows="2" id="info" name="info"style="border:1px dashed #000066; background-color: #ffffff; color: #000000; font-size: 8pt;">
115
			</textarea>
116
			<script language="javascript">
117
			update_description(branchinfo, document.forms[0].optimization.selectedIndex);
118
			</script>
119
			<br><span class="vexpl"><b>Select the update branch you would like this system to track</b></td>
120
                </tr>
121
-->
122
                <tr>
123
                  <td width="22%" valign="top">&nbsp;</td>
124
                  <td width="78%">
125
                    <input name="Submit" type="submit" class="formbtn" value="Save">
126
                  </td>
127
                </tr>
128
              </table></div></td></tr></table>
129
</form>
130
<?php include("fend.inc"); ?>
131
</body>
132
</html>
(108-108/128)