summaryrefslogtreecommitdiffstats
path: root/src/usr/local/www/pkg_edit.php
Commit message (Collapse)AuthorAgeFilesLines
* Comment typo/whitespace fixdoktornotor2017-06-121-2/+2
|
* Add more checks to eliminate empty config tags in package settings. Fixes #7624jim-p2017-06-051-3/+13
|
* pkg_edit, fix empty config tag checkPiBa-NL2017-05-201-1/+1
|
* Merge branch 'master' into patch-18doktornotor2017-03-241-2/+16
|\
| * Sanitize linebreaks for textarea fields in packages on save (Bug #5306)doktornotor2017-03-031-2/+16
| |
* | Remove duplicate pfSenseHeader() functiondoktornotor2017-03-081-7/+3
|/ | | Sort includes while here.
* GET/POST conversionSteve Beaver2017-02-141-7/+4
|
* fields with <required/> set now pre-pend an asterisk to the field title, ↵Steve Beaver2017-01-191-0/+6
| | | | thereby causing it to be displayed as a required field (currently an underline)
* Breadcrumb linksPhil Davis2017-01-101-0/+5
|
* Fix #7100Steve Beaver2017-01-071-2/+6
|
* Fix typo in grouping/$groupingSteve Beaver2016-12-211-2/+2
|
* Fix "<onchange>" tag processing in package XML handlingSteve Beaver2016-12-211-2/+2
|
* Revert "Fixed #6811"Steve Beaver2016-11-111-4/+4
| | | | This reverts commit f92d44da5a4958372c7fb925043abc34588143e3.
* Fixed #6811Steve Beaver2016-11-041-4/+4
|
* Move copyright from ESF to NetgateRenato Botelho2016-09-061-1/+1
|
* fix typoChris Buechler2016-07-151-1/+1
|
* Move to Apache License 2.0Renato Botelho2016-07-151-41/+9
|
* Review license / copyright on all files (final round)Renato Botelho2016-07-151-41/+39
|
* Correct spacingStephen Beaver2016-07-061-1/+1
|
* Remove debugStephen Beaver2016-07-061-3/+0
| | | | (cherry picked from commit 5810f934472368f43942ea66820dc98e17143c19)
* Fixed #6577 - Preserve user input on errorStephen Beaver2016-07-061-6/+10
|
* Always use require_oncePhil Davis2016-06-271-1/+1
| | | | | | | | | The usage of require() and require_once() throughout the system is inconsistent, and "bugs" come up now and then when the order of "requires" is a bit different and some require() happens after the include file is already included/required. It seems to me that there is no harm at all in always using require_once().
* fix rowhelper select_source empty comboMarcello Coutinho2016-06-211-1/+1
| | | while using $config['installedpackage']{['...'] as source
* Reengineer Form_Button setAttributePhil Davis2016-03-201-3/+1
| | | | | | As per what was done for https://github.com/pfsense/pfsense/pull/2765 - do it to the rest of them. Seems to work OK.
* Revert "Merge pull request #2728 from phil-davis/form_button"Renato Botelho2016-03-151-3/+3
| | | | | This reverts commit a32bed49516f3df3d104a5026a5b2c74451f348f, reversing changes made to 9ec9978267a5d1985d6da8ba35d52b7174239d2f.
* Merge pull request #2728 from phil-davis/form_buttonStephen Beaver2016-03-141-3/+3
|\
| * Internationalize Form_Button textPhil Davis2016-03-111-3/+3
| | | | | | | | | | | | 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.
* | Some safety belts to avoid presenting PHP errors to the user. Ticket #5973jim-p2016-03-111-1/+6
|/
* More icon/button inconsistencies. Ticket #5965jim-p2016-03-101-3/+17
|
* Add the ability for packages to control their button icon and class. Ticket ↵jim-p2016-03-101-1/+14
| | | | #5965
* Add button on pkg needs fa-plus, too. Ticket #5965jim-p2016-03-091-2/+4
|
* Print help text when passed as "description" for a select_source.Luiz Otavio O Souza2016-02-231-3/+4
|
* Headers don't need HTML entitiesNewEraCracker2016-02-161-1/+1
| | | | This commits fixes form submission on Services/UPnP redirecting to an URL with &amp; on it.
* Show page title because that's where page help icon is displayed.k-paulius2016-02-141-0/+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.
* Remove redundant gettext callk-paulius2016-02-101-2/+2
|
* Convert section titles to title casek-paulius2016-02-101-2/+2
|
* Internationalization of pkg*.phpPhil Davis2016-01-251-2/+3
| | | | | | | | Various sentences were being built up from gettext() of individual words or phrases concatenated together. That will not work for translation to languages with different word order, so I have restructured that. Note: TODO: The countdown timer text with seconds countdown is all in JS so I will think about how that can be translated nicely.
* 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().
* Replaced jQuery to $ in same filesFrancisco Cavalcante2016-01-221-9/+9
|
* Do not call gettext() for empty stringRenato Botelho2016-01-211-1/+1
|
* Test for an array here to avoid an error if the var isn't an arrayjim-p2016-01-171-0/+3
|
* Merge branch 'print_info_box' of https://github.com/phil-davis/pfsenseStephen Beaver2016-01-111-1/+1
|\ | | | | | | | | * 'print_info_box' of https://github.com/phil-davis/pfsense: Redmine #5759 print_info_box style
| * Redmine #5759 print_info_box stylePhil Davis2016-01-111-1/+1
| | | | | | | | Define the 'success' 'info' etc style of calls to print_info_box()
* | Added support for <collapse> tags in listtopic fields. e.g.:Stephen Beaver2016-01-111-1/+16
|/ | | | | <collapse>closed</collapse> // Creates a panel that is collapsible and iniatially closed <collapse>open</collapse> // Creates a panel that is collapsible and iniatially open
* Update pkg_edit.phpBBcan1772015-12-241-2/+2
| | | * Incorrect variable name in pkg_edit
* Added support for <width> on inouts and aliases.Stephen Beaver2015-12-231-30/+26
|
* Fixed #5668Stephen Beaver2015-12-231-1/+0
|
* Add trash can icon to rowhelper delete buttonsStephen Beaver2015-12-221-1/+3
|
* Remove name collision in $width attributeStephen Beaver2015-12-221-3/+3
|
OpenPOWER on IntegriCloud