summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/firewall_shaper.php
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2811 from ↵Stephen Beaver2016-04-041-2/+2
| | | | | | NOYB/Firewall_/_Traffic_Shaper_-_Remove_Personalizations (cherry picked from commit 7f824121528288fdcc493f36da25c61982f4e320)
* Remove one call to SetAvailableBandwidth() that I missed earlier.Luiz Otavio O Souza2016-03-301-21/+0
| | | | | | Fixes the shaper setup on fresh installs. Ticket #6042
* Relocated tree directory to vendors/treeStephen Beaver2016-03-171-1/+1
|
* Revert "Merge pull request #2728 from phil-davis/form_button"Renato Botelho2016-03-151-2/+2
| | | | | This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
* Internationalize Form_Button textPhil Davis2016-03-111-2/+2
| | | | | | The text of a Form_Button is not translated internally. Some Form_Button calls already had the button text enclosed in gettext(), this does it for the remaining ones.
* More icon/button inconsistencies. Ticket #5965jim-p2016-03-101-2/+2
|
* Bring some consistency to the way most buttons are displayed (color, icons, ↵jim-p2016-03-091-2/+5
| | | | | | etc). Ticket #5965 Still need to review Advanced buttons and Repeatable block buttons.
* Bring all calls of print_info_box to same standardNewEraCracker2016-02-151-1/+1
| | | | The call itself to print_info_box already echoes the content. There is no need of additionally using the short-open-echo tag on those calls to echo return value. The previous implementation shouldn't yell any visible issues as return is 'NULL' (undefined) which casts to an empty string when printing. But, just for the sake of conformity, this changes are advisable in my opinion.
* Merge pull request #2637 from k-paulius/patch-6Stephen Beaver2016-02-141-1/+1
|\
| * Update breadcrumb to match tab namek-paulius2016-02-141-1/+1
| |
* | Review alert wording. End sentence with period, remove redundant 'Warning', ↵k-paulius2016-02-141-1/+1
|/ | | | 'Error', etc. prefixes, since alerts are now color coded. Remove <b> tags.
* Synchronize page titles with tab titles. Rename some titles in order to be ↵k-paulius2016-02-131-1/+1
| | | | more consistent.
* Synchronize page titles with tab titles. Rename some titles in order to be ↵k-paulius2016-02-131-1/+0
| | | | more consistent. Convert page title to title case.
* Standardize print_apply_box usagePhil Davis2016-01-271-1/+1
| | | | | | | | | | 1) For the translators, it should be better to do it consistently. Then they only need to have 1 translation of "You must apply the changes in order for them to take effect" and can translate each of the other custom sentences individually. 2) The full-stop should always go at the end of the sentence, inside the gettext(). There are some languages where the full-stop is not the same as European. e.g. In Nepal we use the vertical bar for end of sentence.
* Fix #5794 remove print_info_box_np chackes for gettext("apply")Phil Davis2016-01-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | 1) Get rid of the stristr() checks to "guess" if an apply button should be used. 2) Change print_info_box() so it can take a button name of "close" , "apply" or none to decide which button to show. 3) Delete function print_info_box_np_undo() - nothing calls it. 4) Add new function print_apply_box() to provide an easy wrapper for print_info_box() with the parameters to be 'warning' level and 'apply' button. 5) Change print_info_box_np() calls to just print_info_box() or print_apply_box() as appropriate. There is 1 direct call to print_info_box_np() from vpn_ipsec_mobile.php remaining. That tries to make a "create" button. It was not working before this change. It needs to be sorted out and fixed separately. After this change there is no dependency on a string containing text like "apply" to make the apply button appear. Then we can work on re-engineering the internal code of print_info_box_np() print_info_box() and print_apply_box() to fit together however we like. It should be easy to preserving the current API to print_info_box() and print_apply_box().
* Firewall shaper print_info_box at correct severityPhil Davis2016-01-191-3/+6
|
* Allow thee use of multiple infoblock on a pageStephen Beaver2016-01-111-1/+1
|
* Change the automatic information block to look for <div class="infoblock" ↵Stephen Beaver2016-01-071-1/+1
| | | | | | instrad of <div id="infoblock" Just makes more sense to use a class for this
* Adjust more calls to print_info_box with unquoted stringsNewEraCracker2016-01-071-1/+1
|
* Improve error message when the user forget to "Apply"Stephen Beaver2016-01-041-2/+2
|
* Remove $closehead variableColin Fleming2015-12-191-1/+0
| | | | Remove unused variable $closehead
* move tree.css to main css filesJared Dillard2015-12-161-1/+0
|
* Remove all pfSense_MODULE and pfSense_BUILDER_BINARIES definitions, whatever ↵Renato Botelho2015-12-151-4/+0
| | | | was the reason they were added, it was never finished and it's not being used
* Fixed #5540Stephen Beaver2015-12-081-11/+16
|
* Standardize firewall shaper breadcrumbsPhil Davis2015-12-071-1/+1
| | | The others for queues, limiter, wizards seem OK.
* Tidy up "firewall_shaper*.php"Colin Fleming2015-12-041-18/+24
| | | | | | Tidy up coding style Add PROPERTY statement to LINK tag Remove self closing statement from ANCHOR tag
* Fixed #5540Stephen Beaver2015-12-021-13/+20
|
* Tidy up traffice shaperColin Fleming2015-12-011-1/+1
| | | | | | | | *shaper.inc* Remove stray closing B tag *firewall_shaper.php* Remove self closing element, not required in HTML5
* Calling all of these "Page" in the privilege name is redundant since they ↵jim-p2015-11-251-1/+1
| | | | are all pages and the "WebCfg" prefix implies they are pages.
* Added use of class autoloading (GUI stuff only)Doug Wollison2015-11-231-2/+0
| | | | | Any GUI script that loads the guiconfig.inc file will have access to the autoloader.
* Remove layer7 components. Ticket #5508Chris Buechler2015-11-201-1/+0
|
* EOL whitespace and header consistency for wwwPhil Davis2015-11-091-9/+7
|
* First batch of copyright updatesStephen Beaver2015-11-051-2/+1
|
* Moved action-buttons in-line styling to pfSense.cssStephen Beaver2015-11-051-1/+1
|
* Merge pull request #1858 from phil-davis/bootstrap-fjim-p2015-09-021-5/+5
|\
| * bootstrap usr\local\www\f minor changesPhil Davis2015-09-011-5/+5
| |
* | bootstrap, use require_once for classes/Form.class.phpPiBa-NL2015-08-311-1/+1
|/
* Merge branch 'master' into bootstrapRenato Botelho2015-08-261-182/+205
|
* Move main pfSense content to src/Renato Botelho2015-08-251-0/+486
OpenPOWER on IntegriCloud