summaryrefslogtreecommitdiffstats
path: root/usr/local/www/javascript
Commit message (Collapse)AuthorAgeFilesLines
* fix alert scroller in ChromeChris Buechler2010-01-071-4/+6
| | | | Ticket #237
* fix conflict between domTT and prototype that was breaking javascript in a ↵Chris Buechler2010-01-053-20/+21
| | | | | | | number of areas. Problem described here. http://groups.google.com/group/dom-tooltip/browse_thread/thread/3f0ecf76e0755ffc?pli=1 Ticket #276 among others
* Adding latest dom_TT. Fixes #202 Thanks to RobisCoolScott Ullrich2009-12-233-23/+225
|
* Updating to 1.8.3Scott Ullrich2009-12-239-1065/+1623
|
* Add patch from lietu (Janne Enberg). Ticket #136pierrepomes2009-12-121-20/+26
| | | | | | | | | | | | | | | | | | | | | 1) Multiple NAT rules can be assigned the same filter rule -> Fixed, added assigned-nat-rule-id to filter rules to keep track of the assignment 2) when removing the link (i.e. switching to "pass" or "none", the linked rule isn't deleted (should it be? probably yes) -> Fixed, when a NAT rule's association is removed, the filter rule is deleted. Added a "create new associated filter rule" option to the dropdown if there is none selected. 3) The destination IP and port of linked rules can be edited in firewall_rules_edit.php and shouldn't be. Source should be editable but not destination, since that should strictly be tied to the NAT rule. -> Fixed, you cannot edit the destination for the filter rules that are linked to NAT rules, this has been disabled both by JavaScript and PHP. 4) If you edit the source in a linked firewall rule, it gets overwritten when you edit the NAT rule. The NAT rule should never touch the firewall rule source after the rule exists. -> Fixed, previously the old rule was deleted and a new one created, now it only updates the old rule and doesn't touch the source. Also added crosslinking from the NAT rule to the filter rule and back, so you can jump to edit the filter rule from the NAT rule and vice-versa.
* Make all autocompletes in there case insensitive.Ermal Luçi2009-12-044-8/+8
|
* Fixup Source OS boxsullrich2009-12-031-2/+1
|
* Minor formatting + hide Source OS behind Advanced boxsullrich2009-12-031-0/+6
|
* Hide layer7 and in/out behind advanced buttonsullrich2009-12-031-0/+13
|
* Make xmlrpc sync, schedule, gateway, in/out, ackqueue and layer7 all ↵sullrich2009-12-031-0/+26
| | | | advanced type buttons simplifying the firewall rule edit form for 99% of the cases
* Ticket #146. Fix the autocompletion of ports aliases only for the ports and ↵Ermal Luçi2009-11-301-9/+1
| | | | host/network aliases for the src/dst. Checking if a valid alias is entered end if it is a correct one for this box seems like to much overhead and work for this. (For firewall_nat_edit.php)
* Ticket #146. Fix the autocompletion of ports aliases only for the ports and ↵Ermal Luçi2009-11-301-10/+1
| | | | host/network aliases for the src/dst. Checking if a valid alias is entered end if it is a correct one for this box seems like to much overhead and work for this.
* Seperate diffserv box into a <select> dropdown. Hide item behind advanced ↵sullrich2009-11-281-0/+6
| | | | button. Move down one section near other advanced items. Resolves #60
* Move back to using sortable as class nameScott Ullrich2009-08-231-1/+1
|
* Modify sortable.js to work on tabcont as opposed to sortable class. This ↵Scott Ullrich2009-08-201-1/+1
| | | | has the effect of making any table that has a single header sortable instead of having to visit each page. Sponsored-by: BSD Perimeter Commercial Support
* Make matching on autosuggestion case insensitive.Ermal Luçi2009-07-231-2/+2
|
* Add the id tag to the row helper javascript created input objects. Make the ↵Ermal Luçi2009-07-231-1/+1
| | | | controls of aliases clearly show that they can be even alias names with autocomplete.(Loop checking is not yet implemented).
* Avoid errors when a non-existent element is called by a functionRenato Botelho2009-06-021-18/+24
| | | | Submitted-by: Manoel Carvalho
* Filter log parsing updatejim-p2009-04-041-0/+134
| | | | | | | | | | | | * Share filter log parsing code instead of using copy/paste/code duplication. * Reworked the JavaScript a little so it could also be shared * Fix a large number of bugs, especially in the AJAX-based dynamic log viewer. * Picks up some more detail from the logs, and more accurately determines the protocol of a given log entry. * Adds a CLI log parser (filterparser.php) * Removed some redundant/unused code * Code cleanup/style fixes * Added support for finding logged rdr rules from miniupnpd NOTE: Due to the dynamic nature of upnp rules, the rule may not be present when checked.
* remove dead JS filesBill Marquette2009-03-141-120/+0
|
* Massive javascript cleanup, all .js files now live in $g['www_path']/javascriptBill Marquette2009-03-147-0/+629
| | | | Purged unused JS
* Move datetimepicker javascript to JS directoryBill Marquette2009-03-141-0/+486
|
* Adding Ajax queue system.Scott Ullrich2009-03-141-0/+40
| | | | | | | | | | | | Example usage: AjaxQueue.setBatchSize(1); AjaxQueue.push("http://www.testingqueue.com/process/",{onSucess: funcSuccess, onfailure: funcFailure}); AjaxQueue.push("http://www.testingqueue.com/process1/",{onSucess: funcSuccess1, onfailure: funcFailure1}, "myDiv"); AjaxQueue.push("http://www.testingqueue.com/process2/",{onSucess: funcSuccess2, onfailure: funcFailure2}); AjaxQueue.push("http://www.testingqueue.com/process3/",{onSucess: funcSuccess3, onfailure: funcFailure3}); AjaxQueue.push("http://www.testingqueue.com/process4/",{onSucess: funcSuccess4, onfailure: funcFailure4}); AjaxQueue.push("http://www.testingqueue.com/process5/",{onSucess: funcSuccess5, onfailure: funcFailure5});
* a little cleaner JSBill Marquette2009-03-141-1/+3
|
* Sajax is no more, long live PrototypeBill Marquette2009-03-141-8/+14
| | | | This eliminates one AJAX library, but not all "non-Prototype" AJAX code
* Make use of Prototype-ism's in sajax.js - first small step in attempting to ↵Bill Marquette2009-03-131-44/+51
| | | | remove sajax from pfSense
* dunno where prototype 1.6.0.3 ran off to, but reign it back in and make it ↵Bill Marquette2009-03-131-167/+317
| | | | submit
* bump scriptaculous to 1.8.2Bill Marquette2009-03-138-508/+519
|
* * Make function opening braces uniform.Scott Ullrich2009-03-111-21/+11
| | | | * Minor documentation additions
* Ensure that the gateway widget exists before populating data during ajax calls.Scott Ullrich2009-03-111-4/+8
|
* Change to 11 second refresh, a lot of underlying information refreshesScott Ullrich2009-03-111-1/+1
| | | | every 10 seconds.
* Add ajax mojo to gateway status widgetScott Ullrich2009-03-111-1/+13
|
* Graph value on the GraphLink graph, tooScott Ullrich2009-03-081-0/+2
|
* Test to make sure items exist before trying to get their propertiesScott Ullrich2009-03-081-10/+16
|
* Change update interval for sajax to 10000Scott Ullrich2009-03-081-1/+1
|
* Revert "show/hide icmp6box"Chris Buechler2009-02-151-34/+4
| | | | This reverts commit 9ce5e10ac4fe43e9b580344454dd27172b6c4456.
* show/hide icmp6boxSimon Cornelius P. Umacob2009-01-201-4/+34
|
* add IPv6.inc and NetUtils.jsSimon Cornelius P. Umacob2009-01-201-0/+114
|
* Update to v2Scott Ullrich2008-12-051-165/+462
|
* Break out the advanced system options page into tabs group by categories.Matthew Grooms2008-09-041-27/+0
| | | | | | Fold the sysctl tunables page into a tab under the advanced options page. This reduces the top level menu options by one. There should be no functional changes.
* update scriptaculous to version 1.8.1Bill Marquette2008-08-029-1993/+5036
|
* Adding firebug liteScott Ullrich2008-07-272-0/+1682
|
* Fix closing </script> so we can be inlined.Scott Ullrich2008-07-271-1/+1
|
* correct definitionsScott Dale2008-03-171-2/+2
|
* Show loading icon while loading new widget through AJAX. Note: loading icon ↵Scott Dale2008-03-171-22/+31
| | | | needs improvement.
* new ajax functions for dashboardScott Dale2007-12-301-0/+48
|
* Add back scriptaculous files which are being used by the RRD graphsSeth Mos2007-11-017-0/+4908
| | | | | page. Replacements welcome if we want it removed. See status_rrd_graph.php
* * removed scriptaculous. It will be added while building the ISODaniel Stefan Haischt2007-10-2810-5705/+0
| | | | or embedded image.
* Ticket #1448: IP Address sorting was MFC'd from HEAD (this whole fileBill Marquette2007-10-051-0/+13
| | | | | | should probably be MFC'd) MFC: to RELENG_1_2
* DomTT library for popups.Scott Dale2007-02-124-0/+2272
|
OpenPOWER on IntegriCloud