Commit Graph

4705 Commits

Author SHA1 Message Date
Ermal Luçi
2cbdf97ea1 Cleanup the status queues so it does not does stupid things.
Apparnetly this needs to be converted to 'ajax' calls as the traffic graph but for now live with this.
2008-10-01 17:26:25 +00:00
Ermal Luçi
9e21d3187f Introduce a 'None' option for the gateways select box.
Apart fixing aestetic when there is no gateway configured for the interface it allows you to setup gateways and not
select them on the interface configuration i.e. on Lan or similar type configured ones.

Reported-by: sullrich@
2008-09-30 15:31:18 +00:00
Mark Crane
82458abb20 pkg_edit add <wrap>off</wrap> for textarea 2008-09-29 22:09:11 +00:00
Scott Ullrich
447611c415 Remove stray 1 2008-09-28 05:28:25 +00:00
Scott Ullrich
fae0b5112d * Remove debugging code
* Hide syntax highlighting option for now
2008-09-28 05:26:48 +00:00
Scott Ullrich
bd125eb250 Do not encode, AJAX function handles. 2008-09-28 05:24:23 +00:00
Scott Ullrich
5f05c1e819 Automatically remote /tmp/config.cache if it exists after file save. 2008-09-28 05:06:36 +00:00
Seth Mos
48b135c66f Fix enable/disable checkbox 2008-09-20 19:24:30 +00:00
Ermal Luçi
16e6485b56 Workaround agressive cache of firefox by adding some options in the header. this is the same issue as the traffic graph one. 2008-09-20 14:08:14 +00:00
Ermal Luçi
0605bbe327 Add text, from lagg(4) man page, that explains what the various protocols do. Add even a note to explain that only un-assigned interfaces can be part of a lagg(4) interface with suggestion from http://forum.pfsense.org/index.php/topic,11614.0.html. 2008-09-20 14:02:46 +00:00
Ermal Luçi
30c1b51e47 Add a note that interfaces part of a lagg(4) will not be shown(allowed to be assigned. 2008-09-20 13:05:38 +00:00
Ermal Luçi
dbdd08afe1 Do not allow lagg(4) members to be assigned. 2008-09-20 12:58:27 +00:00
Ermal Luçi
ae5143a7c6 Oops, typo. 2008-09-18 16:51:24 +00:00
Ermal Luçi
1ba5e90ab8 Catch up with traffic graph changes. 2008-09-18 06:34:24 +00:00
Ermal Luçi
4314071069 Add missing quota to the titles so pages actually display. 2008-09-16 20:20:39 +00:00
Matthew Grooms
1d3bcd2a89 Use get_configured_interface_with_descr() for OpenVPN gui pages. Suggested
by Ermal.
2008-09-16 19:00:49 +00:00
Ermal Luçi
913ba941bb Nuke old utility to take interface statistics 2008-09-16 18:22:25 +00:00
Ermal Luçi
4558117267 Fix the Traffic Graph for Firefox case, which caches agressively and makes the XMLHttpRequest calls return the same result and the output is just a red line at the end of the graph since the difference between the old and new traffic is always 0. 2008-09-16 18:18:36 +00:00
Ermal Luçi
453074aa4f * Fix 'descr'setting and displaying.
* Some white space cleanup.
2008-09-16 18:15:25 +00:00
Matthew Grooms
99bbd213c9 Fix a few minor problems with the IPsec configuration interface. Make sure
we don't copy the ikeid when duplicating a phase1 entry. Simplify the code
that deletes all associated phase2 entries when a phase1 is deleted. I was
and still am learning the finer points of php.
2008-09-16 18:04:08 +00:00
Matthew Grooms
b63f2e8b29 Make it possible for pakages to insert additional tabbed pages into an
existing tab group. This requires that each page in the tab group call
add_package_tabs() with the tab group name before display_top_tabs() so
pages can be inserted. While far from optimal, this system is really a
stop-gap measure until a more intelligent menu/tab system can be
implemented. Discussed with Scott on IRC.
2008-09-16 17:41:22 +00:00
Seth Mos
2e814e0d69 Fix empty wep array 2008-09-15 17:42:09 +00:00
Ermal Luçi
bfe1ef8c6f Correctly handle 802.11x setting. 2008-09-15 17:08:37 +00:00
Ermal Luçi
ff2f4e4330 Some style and consistency fixes, no functional change. 2008-09-12 23:16:45 +00:00
Ermal Luçi
872ce0dd45 Fix the Status->Traffic Graph graphic. 2008-09-12 22:54:43 +00:00
Ermal Luçi
f4758c47ef Bring the ppp frontend to functionality.
Add a more options like max connection attempt, support for static ip setups, username and password configs.
2008-09-11 21:44:01 +00:00
Scott Ullrich
bddd43b403 Add ability to hook into tabs on various screens. Each tab area will
need to hook into this sytem similar to:
	$tab_array = array();
	$tab_array[] = array("Port Forward", true, "firewall_nat.php");
	$tab_array[] = array("1:1", false, "firewall_nat_1to1.php");
	$tab_array[] = array("Outbound", false, "firewall_nat_out.php");
	$tab_array[] = add_package_tab_hooks("firewallnat")
	display_top_tabs($tab_array);
2008-09-11 00:30:29 +00:00
Scott Ullrich
586293d162 Remove (not parsed) from description. It IS parsed and checked for XSS
problems now that we can assign owners of interfaces.
2008-09-10 22:50:34 +00:00
Scott Ullrich
5157927fc5 Backout last change, we need to think about this some more. 2008-09-10 22:32:50 +00:00
Scott Ullrich
aa8cdf5219 Learn how to spell "Acknowledge"
Pointed-out-by: billm
2008-09-10 22:24:25 +00:00
Scott Ullrich
b8f3372739 We already escape characters. Do not worry about notifying user that
the description field is invalid as it will be escaped again
during firewall_rules.php
2008-09-10 22:20:28 +00:00
Scott Ullrich
8a7712ea5d Require_once instead of require. 2008-09-10 19:59:44 +00:00
Matthew Grooms
e647cc2e67 Increase the page redirect time after switching between http and https. It
can take longer on slower embedded systems.
2008-09-10 18:48:22 +00:00
Matthew Grooms
4c951cc9c9 Whitespace and minor bug fixes for package manager pages. 2008-09-10 18:41:07 +00:00
Ermal Luçi
2cc504e1ea Show correct interface. 2008-09-10 13:34:11 +00:00
Ermal Luçi
5d41713c0b Catch up with backend modification and synchronize some fields in the GUI itself. 2008-09-10 13:18:11 +00:00
Ermal Luçi
1d4bd2bc79 Catch up with function renaming. 2008-09-10 11:08:14 +00:00
Ermal Luçi
934240efeb * Correctly show dhcp tabs for the service
* Do not display tabs for the interface not elligible for running a dhcp service.
2008-09-10 09:27:17 +00:00
Ermal Luçi
3f24dd1226 Array checks too. 2008-09-09 21:50:27 +00:00
Ermal Luçi
f20f946167 Add missing quote char. 2008-09-09 21:25:32 +00:00
Ermal Luçi
b9ed163dc5 Array checks too. 2008-09-09 21:23:52 +00:00
Ermal Luçi
89019922fa Add some check if we are working with arrays and fix the check for not allowing dhcpd to be configured on nonstatic ip interfaces. 2008-09-09 21:22:16 +00:00
Ermal Luçi
43e255d21e * Introduce an apply button before the changes get effect.
* Actually fix the form submit action to work correctly.
2008-09-09 20:49:57 +00:00
Matthew Grooms
fe787fc761 Modify the OpenVPN server configuration to allow the DH parameter length
to be specified. Upgraded 1.2.x configurations will default to 1024 bits.
2008-09-09 20:32:56 +00:00
Matthew Grooms
2ff19bfd40 Move the 'advanced users only' notice into the tab body so the tab headers
are not displaced by this message.
2008-09-09 18:54:57 +00:00
Matthew Grooms
77446bebd4 Whitespace and minor bug fixes for system general setup page. 2008-09-09 18:49:32 +00:00
Ermal Luçi
69e5a8be8d Rename interfaces_wan_configure to interface_configure now that it is used for all assigned interface configuration. 2008-09-09 11:08:02 +00:00
Ermal Luçi
4634cb480e Merge interfaces_wlan.inc into interfaces.php there is no need for the to be different files so when one is edited the other can be broken. 2008-09-09 10:41:54 +00:00
Ermal Luçi
998552f806 NOTE: Part of the interfaces history is located on interfaces_lan.php and interfaces_opt.php. 2008-09-09 07:45:05 +00:00
Ermal Luçi
18961b4e84 Catch up with file rename. 2008-09-09 07:39:38 +00:00